
/* 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_8dc99942a115.woff")format("woff");}.ff1{font-family:ff1;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_06917beb58c5.woff")format("woff");}.ff2{font-family:ff2;line-height:0.962000;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_08e027f4d153.woff")format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_bceea5ddc74f.woff")format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_59ba2ee83684.woff")format("woff");}.ff5{font-family:ff5;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_030476cda4fb.woff")format("woff");}.ff6{font-family:ff6;line-height:0.653000;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_ab941db8d347.woff")format("woff");}.ff7{font-family:ff7;line-height:0.703235;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_960f00100732.woff")format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_c54cfdb511b8.woff")format("woff");}.ff9{font-family:ff9;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_72831cdb324a.woff")format("woff");}.ffa{font-family:ffa;line-height:0.431000;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_71a880811019.woff")format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_f675250e155a.woff")format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_b23728e06af5.woff")format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_e0515f4d735f.woff")format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_6a3e2a2255c9.woff")format("woff");}.fff{font-family:fff;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_66ef89b86350.woff")format("woff");}.ff10{font-family:ff10;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_55fb78ecd26c.woff")format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_ad05d744b455.woff")format("woff");}.ff12{font-family:ff12;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_cd3fa219c93f.woff")format("woff");}.ff13{font-family:ff13;line-height:0.716000;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_07395d4f4949.woff")format("woff");}.ff14{font-family:ff14;line-height:1.400000;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_cca1c4859166.woff")format("woff");}.ff15{font-family:ff15;line-height:0.710000;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_bf2614718720.woff")format("woff");}.ff16{font-family:ff16;line-height:0.710000;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_1cdcbd756c4a.woff")format("woff");}.ff17{font-family:ff17;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_2842e1e6a7be.woff")format("woff");}.ff18{font-family:ff18;line-height:0.704200;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_efc1b1e34256.woff")format("woff");}.ff19{font-family:ff19;line-height:0.686000;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_c2c19c0b939d.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url("fonts/font_0026_7d7849ce0d5a.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.220000;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_eedc3e6f0f34.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.m2{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.689940px;}
.v3{vertical-align:-16.877940px;}
.v4{vertical-align:-8.964000px;}
.va{vertical-align:-6.342000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:3.462000px;}
.v9{vertical-align:8.964000px;}
.v8{vertical-align:10.542000px;}
.vd{vertical-align:15.108000px;}
.v7{vertical-align:19.506000px;}
.v1{vertical-align:21.689940px;}
.v5{vertical-align:33.882000px;}
.vc{vertical-align:35.868000px;}
.v6{vertical-align:40.440000px;}
.ls0{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.000990px;}
.ls2a{letter-spacing:0.001140px;}
.ls1b{letter-spacing:0.001866px;}
.ls3c{letter-spacing:0.002023px;}
.ls1a{letter-spacing:0.002245px;}
.ls18{letter-spacing:0.003269px;}
.ls3d{letter-spacing:0.003413px;}
.lsf{letter-spacing:0.004188px;}
.lse{letter-spacing:0.004200px;}
.ls33{letter-spacing:0.005781px;}
.ls21{letter-spacing:1.659333px;}
.ls29{letter-spacing:1.908068px;}
.ls20{letter-spacing:2.138023px;}
.ls2e{letter-spacing:2.144023px;}
.ls26{letter-spacing:2.983140px;}
.ls5{letter-spacing:2.983870px;}
.ls1{letter-spacing:2.984465px;}
.ls10{letter-spacing:2.984525px;}
.ls4{letter-spacing:2.985253px;}
.ls8{letter-spacing:2.987468px;}
.ls43{letter-spacing:2.988532px;}
.ls24{letter-spacing:2.989140px;}
.ls7{letter-spacing:2.989870px;}
.ls2{letter-spacing:2.990525px;}
.ls3{letter-spacing:2.991133px;}
.ls6{letter-spacing:2.992827px;}
.ls2f{letter-spacing:4.281333px;}
.ls2c{letter-spacing:4.473432px;}
.ls25{letter-spacing:4.479432px;}
.ls17{letter-spacing:6.433866px;}
.ls13{letter-spacing:7.472450px;}
.ls14{letter-spacing:7.478450px;}
.ls2b{letter-spacing:9.957507px;}
.ls11{letter-spacing:9.962338px;}
.ls12{letter-spacing:9.982525px;}
.ls22{letter-spacing:12.975269px;}
.ls30{letter-spacing:12.976769px;}
.ls34{letter-spacing:15.941607px;}
.ls16{letter-spacing:16.604338px;}
.ls42{letter-spacing:16.976245px;}
.ls28{letter-spacing:18.510068px;}
.ls9{letter-spacing:18.548245px;}
.ls40{letter-spacing:19.825140px;}
.ls35{letter-spacing:19.922338px;}
.lsa{letter-spacing:20.690023px;}
.ls38{letter-spacing:22.459140px;}
.lsb{letter-spacing:22.850245px;}
.ls15{letter-spacing:23.035866px;}
.ls32{letter-spacing:23.256538px;}
.ls3f{letter-spacing:23.286990px;}
.ls19{letter-spacing:23.726023px;}
.ls1f{letter-spacing:24.134023px;}
.ls36{letter-spacing:24.452245px;}
.ls31{letter-spacing:24.917781px;}
.lsc{letter-spacing:24.986023px;}
.ls3e{letter-spacing:25.315932px;}
.ls37{letter-spacing:25.633140px;}
.ls1d{letter-spacing:26.108338px;}
.ls3a{letter-spacing:26.660890px;}
.ls1e{letter-spacing:27.291333px;}
.ls41{letter-spacing:28.678065px;}
.ls3b{letter-spacing:29.809140px;}
.lsd{letter-spacing:29.969781px;}
.ls1c{letter-spacing:30.387333px;}
.ls23{letter-spacing:36.102538px;}
.ls2d{letter-spacing:333.824338px;}
.ls27{letter-spacing:597.044338px;}
.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;}
}
.wsbf{word-spacing:-59.775600px;}
.wsbe{word-spacing:-48.920351px;}
.wsb{word-spacing:-47.654765px;}
.wsbb{word-spacing:-44.532822px;}
.wsc1{word-spacing:-43.171200px;}
.wsc0{word-spacing:-43.157983px;}
.wsb8{word-spacing:-41.245164px;}
.wsc2{word-spacing:-38.937826px;}
.wsc5{word-spacing:-33.653663px;}
.wsca{word-spacing:-31.633157px;}
.wsd5{word-spacing:-29.015076px;}
.wsbd{word-spacing:-28.955301px;}
.wsc8{word-spacing:-24.885386px;}
.wscc{word-spacing:-19.092327px;}
.wsc{word-spacing:-16.605662px;}
.ws3{word-spacing:-15.786786px;}
.wsb2{word-spacing:-15.278643px;}
.ws118{word-spacing:-14.111859px;}
.ws11a{word-spacing:-3.335478px;}
.ws138{word-spacing:-3.275703px;}
.ws185{word-spacing:-3.215927px;}
.wsd8{word-spacing:-3.156152px;}
.ws198{word-spacing:-3.036600px;}
.ws16e{word-spacing:-2.917049px;}
.ws157{word-spacing:-2.857274px;}
.ws167{word-spacing:-2.797498px;}
.ws132{word-spacing:-2.737722px;}
.wsa4{word-spacing:-2.677947px;}
.ws93{word-spacing:-2.618171px;}
.ws97{word-spacing:-2.558396px;}
.ws16b{word-spacing:-2.498620px;}
.wsc9{word-spacing:-2.438844px;}
.ws152{word-spacing:-2.379069px;}
.ws173{word-spacing:-2.319293px;}
.wse2{word-spacing:-2.259518px;}
.wse0{word-spacing:-2.139966px;}
.ws16c{word-spacing:-2.080191px;}
.ws180{word-spacing:-2.020415px;}
.ws4a{word-spacing:-1.960640px;}
.ws119{word-spacing:-1.900864px;}
.ws139{word-spacing:-1.841088px;}
.wsfb{word-spacing:-1.781313px;}
.ws133{word-spacing:-1.721537px;}
.ws16a{word-spacing:-1.601986px;}
.ws168{word-spacing:-1.542210px;}
.ws155{word-spacing:-1.482435px;}
.ws13f{word-spacing:-1.422659px;}
.ws13b{word-spacing:-1.362884px;}
.ws5d{word-spacing:-1.303108px;}
.ws15b{word-spacing:-1.243332px;}
.ws4f{word-spacing:-1.183557px;}
.ws79{word-spacing:-1.123781px;}
.ws7a{word-spacing:-1.064006px;}
.ws69{word-spacing:-1.004230px;}
.ws8a{word-spacing:-0.944454px;}
.ws3e{word-spacing:-0.884679px;}
.ws10f{word-spacing:-0.824903px;}
.wsfd{word-spacing:-0.765128px;}
.wsb7{word-spacing:-0.705352px;}
.ws12f{word-spacing:-0.645576px;}
.ws12d{word-spacing:-0.585801px;}
.ws20{word-spacing:-0.526025px;}
.ws30{word-spacing:-0.466250px;}
.ws96{word-spacing:-0.406474px;}
.ws6c{word-spacing:-0.346698px;}
.wsef{word-spacing:-0.286923px;}
.ws66{word-spacing:-0.227147px;}
.ws4{word-spacing:-0.170361px;}
.ws55{word-spacing:-0.167372px;}
.ws10a{word-spacing:-0.107596px;}
.wsd4{word-spacing:-0.059776px;}
.ws134{word-spacing:-0.047820px;}
.wsa{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.wscb{word-spacing:0.002877px;}
.ws2f{word-spacing:0.011955px;}
.wsce{word-spacing:0.071731px;}
.ws95{word-spacing:0.131506px;}
.ws6{word-spacing:0.170361px;}
.ws3d{word-spacing:0.191282px;}
.ws5{word-spacing:0.227148px;}
.ws112{word-spacing:0.234321px;}
.ws31{word-spacing:0.251058px;}
.ws5b{word-spacing:0.310833px;}
.ws60{word-spacing:0.370609px;}
.ws84{word-spacing:0.430384px;}
.wsb5{word-spacing:0.490160px;}
.ws13a{word-spacing:0.549936px;}
.wsf9{word-spacing:0.609711px;}
.ws49{word-spacing:0.669487px;}
.ws100{word-spacing:0.729262px;}
.ws120{word-spacing:0.789038px;}
.ws6b{word-spacing:0.848814px;}
.ws3f{word-spacing:0.908589px;}
.wsa1{word-spacing:0.968365px;}
.ws9b{word-spacing:1.028140px;}
.ws18{word-spacing:1.087916px;}
.ws15a{word-spacing:1.099871px;}
.ws104{word-spacing:1.142912px;}
.ws7e{word-spacing:1.147692px;}
.ws8b{word-spacing:1.207467px;}
.wsab{word-spacing:1.267243px;}
.ws92{word-spacing:1.327018px;}
.ws129{word-spacing:1.338973px;}
.ws73{word-spacing:1.386794px;}
.ws81{word-spacing:1.446570px;}
.ws39{word-spacing:1.506345px;}
.ws50{word-spacing:1.566121px;}
.ws75{word-spacing:1.625896px;}
.wsdc{word-spacing:1.685672px;}
.ws5a{word-spacing:1.745448px;}
.ws142{word-spacing:1.805223px;}
.ws36{word-spacing:1.864999px;}
.wsfe{word-spacing:1.924774px;}
.ws54{word-spacing:1.984550px;}
.ws9e{word-spacing:2.044326px;}
.ws11e{word-spacing:2.104101px;}
.ws44{word-spacing:2.163877px;}
.ws1b{word-spacing:2.223652px;}
.ws5e{word-spacing:2.283428px;}
.ws2b{word-spacing:2.343204px;}
.ws94{word-spacing:2.402979px;}
.ws12{word-spacing:2.462755px;}
.wsa2{word-spacing:2.522530px;}
.ws76{word-spacing:2.582306px;}
.ws8d{word-spacing:2.642082px;}
.ws15{word-spacing:2.701857px;}
.ws40{word-spacing:2.761633px;}
.ws24{word-spacing:2.816633px;}
.ws87{word-spacing:2.821408px;}
.wsdd{word-spacing:2.881184px;}
.ws2a{word-spacing:2.940960px;}
.ws33{word-spacing:3.000735px;}
.ws53{word-spacing:3.060511px;}
.wsa0{word-spacing:3.120286px;}
.wsd3{word-spacing:3.132241px;}
.ws89{word-spacing:3.180062px;}
.ws5c{word-spacing:3.239838px;}
.ws9{word-spacing:3.299613px;}
.wseb{word-spacing:3.309892px;}
.ws159{word-spacing:3.310029px;}
.ws10d{word-spacing:3.323165px;}
.ws17b{word-spacing:3.326069px;}
.wse9{word-spacing:3.328683px;}
.ws110{word-spacing:3.342660px;}
.wsd{word-spacing:3.359389px;}
.ws3a{word-spacing:3.419164px;}
.ws47{word-spacing:3.478940px;}
.ws143{word-spacing:3.538716px;}
.wse5{word-spacing:3.598491px;}
.ws4e{word-spacing:3.658267px;}
.ws4b{word-spacing:3.718042px;}
.ws21{word-spacing:3.777818px;}
.wsb0{word-spacing:3.801728px;}
.ws61{word-spacing:3.837594px;}
.ws10b{word-spacing:3.861504px;}
.ws52{word-spacing:3.897369px;}
.wscf{word-spacing:3.957145px;}
.ws8f{word-spacing:4.016920px;}
.wsf4{word-spacing:4.028875px;}
.ws99{word-spacing:4.076696px;}
.wsee{word-spacing:4.136472px;}
.ws101{word-spacing:4.196247px;}
.ws105{word-spacing:4.203431px;}
.ws34{word-spacing:4.256023px;}
.ws4c{word-spacing:4.315798px;}
.ws46{word-spacing:4.375574px;}
.ws64{word-spacing:4.435350px;}
.wsb9{word-spacing:4.468376px;}
.ws6f{word-spacing:4.495125px;}
.ws117{word-spacing:4.538175px;}
.wsed{word-spacing:4.554901px;}
.ws12a{word-spacing:4.566856px;}
.ws14{word-spacing:4.614676px;}
.wsa3{word-spacing:4.674452px;}
.wsd1{word-spacing:4.705012px;}
.ws8c{word-spacing:4.734228px;}
.ws88{word-spacing:4.794003px;}
.wsb1{word-spacing:4.805958px;}
.wse1{word-spacing:4.853779px;}
.ws83{word-spacing:4.913554px;}
.ws78{word-spacing:4.973330px;}
.wsc3{word-spacing:4.989432px;}
.ws3c{word-spacing:5.033106px;}
.ws71{word-spacing:5.092881px;}
.ws124{word-spacing:5.112022px;}
.ws85{word-spacing:5.152657px;}
.wsf6{word-spacing:5.212432px;}
.wse{word-spacing:5.245920px;}
.wsaf{word-spacing:5.272208px;}
.ws82{word-spacing:5.331984px;}
.wsc7{word-spacing:5.391759px;}
.ws131{word-spacing:5.451535px;}
.ws72{word-spacing:5.511310px;}
.ws115{word-spacing:5.542408px;}
.ws109{word-spacing:5.571086px;}
.ws1e{word-spacing:5.630862px;}
.ws174{word-spacing:5.690637px;}
.ws32{word-spacing:5.750413px;}
.wsb4{word-spacing:5.810188px;}
.ws80{word-spacing:5.869964px;}
.ws56{word-spacing:5.929740px;}
.ws7f{word-spacing:5.989515px;}
.wsff{word-spacing:6.031098px;}
.ws3b{word-spacing:6.049291px;}
.ws102{word-spacing:6.061246px;}
.wsd0{word-spacing:6.109066px;}
.ws5f{word-spacing:6.121021px;}
.ws106{word-spacing:6.133652px;}
.ws128{word-spacing:6.168842px;}
.wsba{word-spacing:6.228618px;}
.ws65{word-spacing:6.288393px;}
.ws2c{word-spacing:6.348169px;}
.ws57{word-spacing:6.407944px;}
.ws58{word-spacing:6.467720px;}
.ws91{word-spacing:6.527496px;}
.ws7d{word-spacing:6.587271px;}
.ws8e{word-spacing:6.647047px;}
.ws27{word-spacing:6.706822px;}
.ws9d{word-spacing:6.766598px;}
.ws63{word-spacing:6.826374px;}
.ws11c{word-spacing:6.886149px;}
.wsbc{word-spacing:6.941805px;}
.ws74{word-spacing:6.945925px;}
.ws135{word-spacing:7.005700px;}
.ws68{word-spacing:7.065476px;}
.ws9c{word-spacing:7.125252px;}
.ws37{word-spacing:7.185027px;}
.wsa5{word-spacing:7.244803px;}
.wsd9{word-spacing:7.304578px;}
.ws1f{word-spacing:7.364354px;}
.ws113{word-spacing:7.424130px;}
.ws1d{word-spacing:7.483905px;}
.wse8{word-spacing:7.543681px;}
.ws62{word-spacing:7.603456px;}
.ws16{word-spacing:7.663232px;}
.ws59{word-spacing:7.723008px;}
.ws130{word-spacing:7.782783px;}
.wsf3{word-spacing:7.842559px;}
.ws51{word-spacing:7.902334px;}
.ws11f{word-spacing:7.962110px;}
.ws10{word-spacing:8.021886px;}
.ws7c{word-spacing:8.081661px;}
.ws10e{word-spacing:8.141437px;}
.ws114{word-spacing:8.201212px;}
.wsf{word-spacing:8.260988px;}
.ws42{word-spacing:8.320764px;}
.ws7b{word-spacing:8.380539px;}
.ws9a{word-spacing:8.440315px;}
.wse4{word-spacing:8.500090px;}
.ws35{word-spacing:8.559866px;}
.ws156{word-spacing:8.619642px;}
.wsac{word-spacing:8.679417px;}
.ws153{word-spacing:8.739193px;}
.ws19{word-spacing:8.798968px;}
.ws158{word-spacing:8.810923px;}
.ws141{word-spacing:8.858744px;}
.ws29{word-spacing:8.918520px;}
.ws9f{word-spacing:8.978295px;}
.wsc6{word-spacing:9.019012px;}
.ws111{word-spacing:9.033311px;}
.wsc4{word-spacing:9.038071px;}
.wsa9{word-spacing:9.097846px;}
.ws154{word-spacing:9.109801px;}
.ws13{word-spacing:9.157622px;}
.ws22{word-spacing:9.217398px;}
.ws6e{word-spacing:9.277173px;}
.ws28{word-spacing:9.336949px;}
.ws116{word-spacing:9.368056px;}
.ws17{word-spacing:9.396724px;}
.ws2d{word-spacing:9.456500px;}
.wsdb{word-spacing:9.516276px;}
.wsfc{word-spacing:9.576051px;}
.ws6a{word-spacing:9.635827px;}
.ws108{word-spacing:9.695602px;}
.ws2e{word-spacing:9.755378px;}
.wsa8{word-spacing:9.815154px;}
.ws86{word-spacing:9.874929px;}
.ws43{word-spacing:9.934705px;}
.wscd{word-spacing:9.962877px;}
.ws177{word-spacing:9.994480px;}
.wsa7{word-spacing:10.054256px;}
.wsf8{word-spacing:10.114032px;}
.ws13c{word-spacing:10.173807px;}
.ws103{word-spacing:10.211427px;}
.wsaa{word-spacing:10.233583px;}
.ws67{word-spacing:10.293358px;}
.ws23{word-spacing:10.353134px;}
.ws77{word-spacing:10.412910px;}
.ws127{word-spacing:10.424865px;}
.wsae{word-spacing:10.472685px;}
.ws70{word-spacing:10.532461px;}
.ws140{word-spacing:10.592236px;}
.ws122{word-spacing:10.652012px;}
.wsa6{word-spacing:10.711788px;}
.wsf2{word-spacing:10.771563px;}
.ws13e{word-spacing:10.831339px;}
.wsf1{word-spacing:10.843294px;}
.ws176{word-spacing:10.891114px;}
.ws137{word-spacing:10.950890px;}
.wsfa{word-spacing:11.010666px;}
.wsdf{word-spacing:11.070441px;}
.wsb6{word-spacing:11.130217px;}
.ws11{word-spacing:11.189992px;}
.ws98{word-spacing:11.249768px;}
.ws38{word-spacing:11.309544px;}
.ws15c{word-spacing:11.369319px;}
.wsf0{word-spacing:11.429095px;}
.wsad{word-spacing:11.488870px;}
.ws13d{word-spacing:11.548646px;}
.ws1a{word-spacing:11.608422px;}
.ws182{word-spacing:11.668197px;}
.ws160{word-spacing:11.727973px;}
.ws11b{word-spacing:11.787748px;}
.ws144{word-spacing:11.847524px;}
.wse3{word-spacing:11.907300px;}
.ws107{word-spacing:11.967075px;}
.ws136{word-spacing:12.026851px;}
.wsec{word-spacing:12.086626px;}
.ws1c{word-spacing:12.146402px;}
.ws12b{word-spacing:12.161046px;}
.ws12c{word-spacing:12.166164px;}
.wsde{word-spacing:12.206178px;}
.ws6d{word-spacing:12.265953px;}
.ws164{word-spacing:12.325729px;}
.wsf7{word-spacing:12.337684px;}
.ws15d{word-spacing:12.385504px;}
.ws90{word-spacing:12.445280px;}
.wsd2{word-spacing:12.477830px;}
.wsf5{word-spacing:12.505056px;}
.ws121{word-spacing:12.564831px;}
.ws45{word-spacing:12.624607px;}
.ws48{word-spacing:12.684382px;}
.wsd7{word-spacing:12.744158px;}
.ws165{word-spacing:12.803934px;}
.wsb3{word-spacing:12.923485px;}
.ws17c{word-spacing:12.983260px;}
.ws170{word-spacing:13.043036px;}
.ws16f{word-spacing:13.102812px;}
.ws125{word-spacing:13.162587px;}
.ws4d{word-spacing:13.222363px;}
.ws126{word-spacing:13.375182px;}
.ws172{word-spacing:13.401690px;}
.ws197{word-spacing:13.640792px;}
.ws17a{word-spacing:13.760343px;}
.ws190{word-spacing:13.939670px;}
.ws41{word-spacing:14.178772px;}
.ws193{word-spacing:14.358099px;}
.ws12e{word-spacing:14.417875px;}
.ws161{word-spacing:14.537426px;}
.ws10c{word-spacing:14.896080px;}
.ws175{word-spacing:15.015631px;}
.ws11d{word-spacing:15.115971px;}
.ws194{word-spacing:15.254733px;}
.ws26{word-spacing:15.278643px;}
.ws18c{word-spacing:15.673162px;}
.ws2{word-spacing:15.729999px;}
.ws169{word-spacing:15.732938px;}
.ws166{word-spacing:15.852489px;}
.ws123{word-spacing:16.067635px;}
.ws187{word-spacing:16.211143px;}
.ws186{word-spacing:16.270918px;}
.ws18b{word-spacing:16.390470px;}
.ws16d{word-spacing:16.569796px;}
.ws17d{word-spacing:16.629572px;}
.ws17f{word-spacing:16.808899px;}
.ws17e{word-spacing:16.868674px;}
.ws18e{word-spacing:17.107777px;}
.ws162{word-spacing:17.825084px;}
.ws184{word-spacing:18.542391px;}
.wsda{word-spacing:18.890662px;}
.ws192{word-spacing:18.960820px;}
.ws18f{word-spacing:19.259698px;}
.ws181{word-spacing:19.857454px;}
.ws171{word-spacing:20.634537px;}
.ws188{word-spacing:20.754088px;}
.ws15e{word-spacing:20.813864px;}
.ws18d{word-spacing:21.590947px;}
.ws189{word-spacing:22.248478px;}
.wse7{word-spacing:22.718896px;}
.wse6{word-spacing:22.727814px;}
.wsea{word-spacing:22.889814px;}
.ws178{word-spacing:23.443990px;}
.ws179{word-spacing:23.683093px;}
.ws15f{word-spacing:24.938380px;}
.ws163{word-spacing:25.536136px;}
.ws191{word-spacing:26.970751px;}
.ws7{word-spacing:27.974700px;}
.ws8{word-spacing:28.060776px;}
.ws195{word-spacing:28.943346px;}
.ws1{word-spacing:31.459998px;}
.ws25{word-spacing:36.146329px;}
.ws183{word-spacing:38.268339px;}
.ws196{word-spacing:43.110163px;}
.ws148{word-spacing:55.130069px;}
.ws147{word-spacing:72.972684px;}
.ws149{word-spacing:77.362240px;}
.ws14a{word-spacing:85.014838px;}
.ws146{word-spacing:88.154831px;}
.ws151{word-spacing:99.616240px;}
.ws150{word-spacing:114.906838px;}
.ws145{word-spacing:404.971783px;}
.ws14d{word-spacing:447.977241px;}
.ws18a{word-spacing:571.202069px;}
.wsd6{word-spacing:635.127705px;}
.ws14b{word-spacing:706.691770px;}
.ws14c{word-spacing:778.722505px;}
.ws14f{word-spacing:784.064644px;}
.ws14e{word-spacing:1111.650967px;}
._56{margin-left:-2186.299333px;}
._55{margin-left:-2184.811542px;}
._73{margin-left:-2175.668747px;}
._2b{margin-left:-2169.986984px;}
._29{margin-left:-2168.683866px;}
._1e{margin-left:-2154.140877px;}
._20{margin-left:-2153.052964px;}
._45{margin-left:-2140.529582px;}
._1c{margin-left:-2137.831629px;}
._6b{margin-left:-2122.898875px;}
._68{margin-left:-2094.104942px;}
._86{margin-left:-2074.326037px;}
._62{margin-left:-2062.483645px;}
._38{margin-left:-2039.783764px;}
._8b{margin-left:-2035.100433px;}
._26{margin-left:-1948.488863px;}
._43{margin-left:-1893.902020px;}
._63{margin-left:-1889.176274px;}
._6a{margin-left:-1772.966517px;}
._2c{margin-left:-1733.445768px;}
._5d{margin-left:-1697.954103px;}
._82{margin-left:-1638.689663px;}
._8e{margin-left:-1602.086000px;}
._3e{margin-left:-1576.899454px;}
._72{margin-left:-1562.980807px;}
._3b{margin-left:-1542.512326px;}
._71{margin-left:-1520.623812px;}
._8d{margin-left:-1480.556228px;}
._3f{margin-left:-1463.541014px;}
._74{margin-left:-1459.832027px;}
._66{margin-left:-1445.103325px;}
._8c{margin-left:-1437.087411px;}
._7b{margin-left:-1425.975127px;}
._3a{margin-left:-1405.624454px;}
._75{margin-left:-1389.464191px;}
._77{margin-left:-1360.227945px;}
._70{margin-left:-1305.144747px;}
._64{margin-left:-1269.661943px;}
._5e{margin-left:-1254.359379px;}
._6e{margin-left:-1196.807455px;}
._88{margin-left:-1149.483076px;}
._2d{margin-left:-1148.236671px;}
._7c{margin-left:-1103.694980px;}
._7a{margin-left:-1082.946869px;}
._36{margin-left:-1071.829182px;}
._6f{margin-left:-1034.175980px;}
._83{margin-left:-1004.927756px;}
._39{margin-left:-952.124860px;}
._37{margin-left:-944.557300px;}
._7e{margin-left:-935.073990px;}
._28{margin-left:-930.246996px;}
._76{margin-left:-922.353729px;}
._80{margin-left:-863.785609px;}
._44{margin-left:-857.846766px;}
._6c{margin-left:-820.645581px;}
._89{margin-left:-760.863981px;}
._57{margin-left:-750.441622px;}
._81{margin-left:-747.593798px;}
._5b{margin-left:-687.818198px;}
._40{margin-left:-673.445044px;}
._84{margin-left:-651.648829px;}
._2e{margin-left:-635.439740px;}
._65{margin-left:-628.048598px;}
._31{margin-left:-597.063809px;}
._6d{margin-left:-578.255523px;}
._67{margin-left:-501.874262px;}
._85{margin-left:-471.980462px;}
._59{margin-left:-446.046352px;}
._79{margin-left:-442.092662px;}
._30{margin-left:-415.979575px;}
._60{margin-left:-412.204862px;}
._7f{margin-left:-382.317062px;}
._46{margin-left:-257.012372px;}
._33{margin-left:-33.091315px;}
._5a{margin-left:-32.060940px;}
._58{margin-left:-30.632894px;}
._3d{margin-left:-29.433518px;}
._3c{margin-left:-28.351562px;}
._10{margin-left:-25.536196px;}
._5c{margin-left:-23.431012px;}
._0{margin-left:-10.903104px;}
._c{margin-left:-6.814440px;}
._f{margin-left:-5.618060px;}
._3{margin-left:-4.542960px;}
._2{margin-left:-2.725776px;}
._6{margin-left:-1.476462px;}
._1{width:1.362888px;}
._b{width:2.952924px;}
._4{width:4.542960px;}
._34{width:6.410479px;}
._61{width:8.287912px;}
._9{width:9.483429px;}
._87{width:13.491365px;}
._35{width:14.824349px;}
._1b{width:16.689365px;}
._a{width:18.682923px;}
._d{width:20.500107px;}
._25{width:21.543139px;}
._1a{width:22.643053px;}
._11{width:23.719019px;}
._14{width:25.404630px;}
._32{width:26.462663px;}
._15{width:27.475712px;}
._e{width:29.108016px;}
._18{width:30.963761px;}
._22{width:32.326645px;}
._19{width:34.347068px;}
._1d{width:36.176189px;}
._8{width:37.252272px;}
._5{width:39.069456px;}
._13{width:40.163248px;}
._5f{width:41.502212px;}
._21{width:42.572178px;}
._27{width:44.030716px;}
._7{width:45.145665px;}
._1f{width:46.227603px;}
._2f{width:47.653122px;}
._2a{width:49.111642px;}
._12{width:50.271280px;}
._16{width:51.634164px;}
._17{width:53.995313px;}
._23{width:55.160078px;}
._24{width:57.223195px;}
._69{width:60.983063px;}
._78{width:63.902832px;}
._7d{width:65.217881px;}
._8a{width:69.871699px;}
._53{width:94.624587px;}
._4d{width:101.620500px;}
._51{width:128.333129px;}
._54{width:139.806300px;}
._4c{width:158.722039px;}
._42{width:168.210668px;}
._4e{width:319.308300px;}
._50{width:360.967637px;}
._52{width:379.305940px;}
._49{width:410.318368px;}
._4f{width:440.069834px;}
._4a{width:498.138300px;}
._4b{width:505.776300px;}
._41{width:509.010052px;}
._48{width:620.840584px;}
._47{width:744.603264px;}
.fc2{color:transparent;}
.fc1{color:rgb(91,75,75);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs2{font-size:56.787000px;}
.fs4{font-size:59.775600px;}
.fs3{font-size:86.076000px;}
.fs0{font-size:90.859200px;}
.fs1{font-size:113.574000px;}
.y0{bottom:0.000000px;}
.y17{bottom:111.475500px;}
.y16{bottom:129.409500px;}
.y3f{bottom:132.195000px;}
.y3e{bottom:134.047500px;}
.y15{bottom:147.342000px;}
.y14{bottom:165.274500px;}
.yf1{bottom:178.878000px;}
.y93{bottom:178.879500px;}
.yaf{bottom:182.409000px;}
.y236{bottom:183.645000px;}
.y266{bottom:184.299000px;}
.y2bf{bottom:184.857000px;}
.y1f6{bottom:185.847000px;}
.ycc{bottom:186.351000px;}
.y24c{bottom:186.915000px;}
.y24e{bottom:187.321500px;}
.y22b{bottom:187.846500px;}
.y20c{bottom:187.908000px;}
.y68{bottom:189.073500px;}
.y132{bottom:189.339000px;}
.y180{bottom:189.378000px;}
.y224{bottom:189.550500px;}
.y162{bottom:189.703500px;}
.y3d{bottom:189.831000px;}
.y2d2{bottom:190.834500px;}
.y1dd{bottom:192.328500px;}
.y92{bottom:196.812000px;}
.yae{bottom:200.343000px;}
.y115{bottom:201.295500px;}
.y24d{bottom:201.577500px;}
.y265{bottom:202.231500px;}
.y226{bottom:202.749000px;}
.y2be{bottom:202.789500px;}
.y16b{bottom:202.899000px;}
.y1f5{bottom:203.779500px;}
.ycb{bottom:204.283500px;}
.y24b{bottom:204.847500px;}
.y20b{bottom:205.840500px;}
.y67{bottom:207.007500px;}
.y131{bottom:207.273000px;}
.y17f{bottom:207.310500px;}
.y223{bottom:207.483000px;}
.y161{bottom:207.637500px;}
.y2e3{bottom:208.767000px;}
.y1dc{bottom:210.261000px;}
.y91{bottom:214.744500px;}
.yad{bottom:218.275500px;}
.y114{bottom:219.228000px;}
.y264{bottom:220.164000px;}
.y2d1{bottom:220.722000px;}
.y16a{bottom:220.831500px;}
.y1f4{bottom:221.712000px;}
.yca{bottom:222.216000px;}
.y24a{bottom:222.780000px;}
.y20a{bottom:223.773000px;}
.y66{bottom:224.940000px;}
.y17e{bottom:225.243000px;}
.y222{bottom:225.417000px;}
.y160{bottom:225.570000px;}
.y14d{bottom:226.566000px;}
.y130{bottom:226.699500px;}
.y1db{bottom:228.193500px;}
.y90{bottom:232.677000px;}
.y3c{bottom:234.321000px;}
.y1b2{bottom:234.903000px;}
.yac{bottom:236.208000px;}
.y13{bottom:237.006000px;}
.y113{bottom:237.160500px;}
.y263{bottom:238.096500px;}
.y2d0{bottom:238.654500px;}
.y169{bottom:238.764000px;}
.y1f3{bottom:239.644500px;}
.yc9{bottom:240.148500px;}
.y249{bottom:240.712500px;}
.y209{bottom:241.705500px;}
.y65{bottom:242.872500px;}
.y306{bottom:243.138000px;}
.y17d{bottom:243.175500px;}
.y221{bottom:243.349500px;}
.y34a{bottom:243.436500px;}
.y15f{bottom:243.502500px;}
.y324{bottom:243.712500px;}
.y14c{bottom:244.498500px;}
.y2f3{bottom:244.632000px;}
.y1da{bottom:246.126000px;}
.y12f{bottom:249.115500px;}
.y8f{bottom:250.609500px;}
.yef{bottom:250.611000px;}
.y3b{bottom:252.253500px;}
.y1b1{bottom:252.835500px;}
.yab{bottom:254.140500px;}
.y12{bottom:254.938500px;}
.y112{bottom:255.093000px;}
.y262{bottom:256.030500px;}
.y2cf{bottom:256.587000px;}
.y1f2{bottom:257.577000px;}
.yc8{bottom:258.082500px;}
.y248{bottom:258.645000px;}
.y208{bottom:259.638000px;}
.y2a4{bottom:260.391000px;}
.y64{bottom:260.805000px;}
.y305{bottom:261.070500px;}
.y17c{bottom:261.109500px;}
.y220{bottom:261.282000px;}
.y340{bottom:261.369000px;}
.y15e{bottom:261.435000px;}
.y323{bottom:261.645000px;}
.y283{bottom:262.335000px;}
.y2f1{bottom:262.564500px;}
.y14b{bottom:263.926500px;}
.y1d9{bottom:264.060000px;}
.yb1{bottom:268.542000px;}
.y2ec{bottom:268.543500px;}
.y1a0{bottom:270.037500px;}
.y3a{bottom:270.186000px;}
.y1b0{bottom:270.768000px;}
.y8e{bottom:270.784500px;}
.yaa{bottom:272.073000px;}
.y11{bottom:272.871000px;}
.y111{bottom:273.025500px;}
.y261{bottom:273.963000px;}
.y2ce{bottom:274.521000px;}
.y1f1{bottom:275.509500px;}
.y168{bottom:275.983500px;}
.yc7{bottom:276.015000px;}
.y247{bottom:276.577500px;}
.y19e{bottom:277.047000px;}
.yed{bottom:277.146000px;}
.y207{bottom:277.570500px;}
.y2a3{bottom:278.323500px;}
.y63{bottom:278.737500px;}
.y304{bottom:279.003000px;}
.y17b{bottom:279.042000px;}
.y21f{bottom:279.214500px;}
.y33f{bottom:279.303000px;}
.y15d{bottom:279.367500px;}
.y322{bottom:279.579000px;}
.y282{bottom:280.267500px;}
.y2bd{bottom:280.498500px;}
.y1d8{bottom:281.992500px;}
.yea{bottom:284.526000px;}
.y12e{bottom:284.980500px;}
.yb0{bottom:286.476000px;}
.y22c{bottom:287.889000px;}
.y39{bottom:288.120000px;}
.y1af{bottom:288.700500px;}
.yee{bottom:289.900500px;}
.ya9{bottom:290.005500px;}
.y167{bottom:290.179500px;}
.y10{bottom:290.803500px;}
.y110{bottom:290.958000px;}
.y260{bottom:291.895500px;}
.y2e2{bottom:292.453500px;}
.y1f0{bottom:293.443500px;}
.yc6{bottom:293.947500px;}
.y246{bottom:294.511500px;}
.ye9{bottom:294.777000px;}
.y19d{bottom:294.979500px;}
.y206{bottom:295.504500px;}
.y2a2{bottom:296.257500px;}
.y62{bottom:296.670000px;}
.y21e{bottom:297.147000px;}
.y33e{bottom:297.235500px;}
.y15c{bottom:297.300000px;}
.y14a{bottom:297.918000px;}
.y2bc{bottom:298.431000px;}
.y1d7{bottom:299.925000px;}
.y12d{bottom:302.913000px;}
.y166{bottom:304.377000px;}
.y8d{bottom:304.408500px;}
.y38{bottom:306.052500px;}
.y1ae{bottom:306.633000px;}
.y303{bottom:307.396500px;}
.ya8{bottom:307.939500px;}
.y321{bottom:308.547000px;}
.yf{bottom:308.736000px;}
.y10f{bottom:308.892000px;}
.y17a{bottom:308.929500px;}
.yec{bottom:308.974500px;}
.y25f{bottom:309.828000px;}
.y281{bottom:309.925500px;}
.y2e1{bottom:310.386000px;}
.y1ef{bottom:311.376000px;}
.yc5{bottom:311.880000px;}
.y245{bottom:312.444000px;}
.y19c{bottom:312.912000px;}
.y205{bottom:313.437000px;}
.yeb{bottom:313.458000px;}
.y2a1{bottom:314.190000px;}
.y61{bottom:314.604000px;}
.y21d{bottom:315.079500px;}
.y149{bottom:315.850500px;}
.y2bb{bottom:316.363500px;}
.y1d6{bottom:317.857500px;}
.y165{bottom:318.573000px;}
.y12c{bottom:320.847000px;}
.y8c{bottom:322.341000px;}
.y37{bottom:323.985000px;}
.y1ad{bottom:324.565500px;}
.y302{bottom:325.329000px;}
.ya7{bottom:325.872000px;}
.y33d{bottom:325.927500px;}
.y320{bottom:326.479500px;}
.y10e{bottom:326.824500px;}
.y179{bottom:326.862000px;}
.y25e{bottom:327.760500px;}
.y280{bottom:327.859500px;}
.y2f0{bottom:328.318500px;}
.y1ee{bottom:329.308500px;}
.yc4{bottom:329.812500px;}
.y15b{bottom:330.177000px;}
.y244{bottom:330.376500px;}
.y19b{bottom:330.844500px;}
.y204{bottom:331.369500px;}
.y60{bottom:332.536500px;}
.y164{bottom:332.770500px;}
.y21c{bottom:333.013500px;}
.y148{bottom:333.783000px;}
.y2ba{bottom:334.296000px;}
.y1d5{bottom:335.790000px;}
.y12b{bottom:338.779500px;}
.ye8{bottom:339.669000px;}
.y8b{bottom:340.273500px;}
.y2a0{bottom:341.904000px;}
.y36{bottom:341.917500px;}
.y1ac{bottom:342.499500px;}
.ya6{bottom:343.804500px;}
.y33c{bottom:343.860000px;}
.y31f{bottom:344.412000px;}
.y10d{bottom:344.757000px;}
.y178{bottom:344.794500px;}
.y25d{bottom:345.693000px;}
.y27f{bottom:345.792000px;}
.y2ef{bottom:346.251000px;}
.y1ed{bottom:347.241000px;}
.yc3{bottom:347.745000px;}
.y15a{bottom:348.109500px;}
.y243{bottom:348.309000px;}
.y19a{bottom:348.777000px;}
.y203{bottom:349.302000px;}
.y5f{bottom:350.469000px;}
.y21b{bottom:350.946000px;}
.y147{bottom:351.715500px;}
.y2eb{bottom:352.228500px;}
.y1d4{bottom:353.722500px;}
.y301{bottom:353.724000px;}
.y12a{bottom:356.712000px;}
.ye7{bottom:357.601500px;}
.y8a{bottom:358.206000px;}
.y29f{bottom:359.836500px;}
.y35{bottom:359.850000px;}
.y1ab{bottom:360.432000px;}
.ya5{bottom:361.737000px;}
.y33b{bottom:361.792500px;}
.ye{bottom:362.535000px;}
.y10c{bottom:362.689500px;}
.y177{bottom:362.728500px;}
.y25c{bottom:363.627000px;}
.y27e{bottom:363.724500px;}
.y2b9{bottom:364.183500px;}
.y1ec{bottom:365.173500px;}
.yc2{bottom:365.679000px;}
.y159{bottom:366.043500px;}
.y242{bottom:366.241500px;}
.y199{bottom:366.711000px;}
.y202{bottom:367.234500px;}
.y5e{bottom:368.401500px;}
.y21a{bottom:368.878500px;}
.y146{bottom:369.649500px;}
.y2cd{bottom:370.161000px;}
.y1d3{bottom:371.656500px;}
.y31e{bottom:373.380000px;}
.y129{bottom:374.644500px;}
.ye6{bottom:375.534000px;}
.y89{bottom:376.138500px;}
.y2ee{bottom:376.140000px;}
.y34{bottom:377.782500px;}
.y1aa{bottom:378.364500px;}
.y349{bottom:379.726500px;}
.yd{bottom:380.467500px;}
.y10b{bottom:380.622000px;}
.y176{bottom:380.661000px;}
.y25b{bottom:381.559500px;}
.y2b8{bottom:382.117500px;}
.y1eb{bottom:383.106000px;}
.yc1{bottom:383.611500px;}
.y158{bottom:383.976000px;}
.ya4{bottom:384.153000px;}
.y241{bottom:384.175500px;}
.y198{bottom:384.643500px;}
.y201{bottom:385.167000px;}
.y5d{bottom:386.334000px;}
.y219{bottom:386.811000px;}
.y29e{bottom:387.550500px;}
.y145{bottom:387.582000px;}
.y2cc{bottom:388.095000px;}
.y1d2{bottom:389.589000px;}
.y33a{bottom:390.486000px;}
.y31d{bottom:391.312500px;}
.y128{bottom:392.577000px;}
.y27d{bottom:393.382500px;}
.ye5{bottom:393.466500px;}
.y88{bottom:394.072500px;}
.y33{bottom:395.716500px;}
.y1a9{bottom:396.297000px;}
.y348{bottom:397.659000px;}
.y10a{bottom:398.554500px;}
.y175{bottom:398.593500px;}
.y25a{bottom:399.492000px;}
.y2b7{bottom:400.050000px;}
.y1ea{bottom:401.040000px;}
.yc0{bottom:401.544000px;}
.y157{bottom:401.908500px;}
.y240{bottom:402.108000px;}
.y197{bottom:402.576000px;}
.y200{bottom:403.101000px;}
.y5c{bottom:404.266500px;}
.y218{bottom:404.743500px;}
.y29d{bottom:405.483000px;}
.y144{bottom:405.514500px;}
.y2e0{bottom:406.027500px;}
.y1d1{bottom:407.521500px;}
.y339{bottom:408.418500px;}
.y127{bottom:410.511000px;}
.y27c{bottom:411.315000px;}
.ye4{bottom:411.400500px;}
.y87{bottom:412.005000px;}
.y32{bottom:413.649000px;}
.y1a8{bottom:414.229500px;}
.yc{bottom:416.332500px;}
.y109{bottom:416.488500px;}
.y174{bottom:416.526000px;}
.y259{bottom:417.424500px;}
.y2b6{bottom:417.982500px;}
.y1e9{bottom:418.972500px;}
.ybf{bottom:419.476500px;}
.y156{bottom:419.841000px;}
.ya3{bottom:420.018000px;}
.y23f{bottom:420.040500px;}
.y31c{bottom:420.282000px;}
.y196{bottom:420.508500px;}
.y1ff{bottom:421.033500px;}
.y5b{bottom:422.200500px;}
.y217{bottom:422.676000px;}
.y29c{bottom:423.417000px;}
.y143{bottom:423.447000px;}
.y2df{bottom:423.960000px;}
.y1d0{bottom:425.454000px;}
.y338{bottom:426.351000px;}
.y126{bottom:428.443500px;}
.ye3{bottom:429.333000px;}
.y86{bottom:429.937500px;}
.y31{bottom:431.581500px;}
.y1a7{bottom:432.162000px;}
.y2a6{bottom:433.198500px;}
.yb{bottom:434.265000px;}
.y108{bottom:434.421000px;}
.y173{bottom:434.458500px;}
.y258{bottom:435.357000px;}
.y234{bottom:435.691500px;}
.y2b5{bottom:435.915000px;}
.ybe{bottom:437.409000px;}
.ya2{bottom:437.952000px;}
.y23e{bottom:437.973000px;}
.y31b{bottom:438.214500px;}
.y195{bottom:438.441000px;}
.y1fe{bottom:438.966000px;}
.y5a{bottom:440.133000px;}
.y216{bottom:440.610000px;}
.y27b{bottom:440.973000px;}
.y142{bottom:441.379500px;}
.y1e8{bottom:441.388500px;}
.y2de{bottom:441.892500px;}
.y1cf{bottom:443.386500px;}
.y337{bottom:444.283500px;}
.y125{bottom:446.376000px;}
.ye2{bottom:447.265500px;}
.y85{bottom:447.870000px;}
.y30{bottom:449.514000px;}
.y155{bottom:449.728500px;}
.y1a6{bottom:450.096000px;}
.y29b{bottom:451.131000px;}
.ya{bottom:452.199000px;}
.y172{bottom:452.391000px;}
.y257{bottom:453.289500px;}
.y2f2{bottom:453.847500px;}
.ybd{bottom:455.341500px;}
.ya1{bottom:455.884500px;}
.y23d{bottom:455.905500px;}
.y194{bottom:456.373500px;}
.y1fd{bottom:456.898500px;}
.y59{bottom:458.065500px;}
.y215{bottom:458.542500px;}
.y27a{bottom:458.905500px;}
.y141{bottom:459.312000px;}
.y351{bottom:459.825000px;}
.y1ce{bottom:461.320500px;}
.y347{bottom:462.216000px;}
.y124{bottom:464.308500px;}
.ye1{bottom:465.198000px;}
.y84{bottom:465.802500px;}
.y31a{bottom:467.182500px;}
.y107{bottom:467.298000px;}
.y2f{bottom:467.446500px;}
.y154{bottom:467.662500px;}
.y1a5{bottom:468.028500px;}
.y29a{bottom:469.063500px;}
.y9{bottom:470.131500px;}
.y171{bottom:470.325000px;}
.y256{bottom:471.223500px;}
.y2dd{bottom:471.780000px;}
.y336{bottom:472.975500px;}
.ybc{bottom:473.275500px;}
.ya0{bottom:473.817000px;}
.y23c{bottom:473.838000px;}
.y193{bottom:474.307500px;}
.y1fc{bottom:474.831000px;}
.y58{bottom:475.998000px;}
.y214{bottom:476.475000px;}
.y279{bottom:476.838000px;}
.y140{bottom:477.246000px;}
.y1e7{bottom:477.253500px;}
.y34f{bottom:477.759000px;}
.y1cd{bottom:479.253000px;}
.y346{bottom:480.150000px;}
.y22d{bottom:481.744500px;}
.y123{bottom:482.241000px;}
.ye0{bottom:483.130500px;}
.y83{bottom:483.735000px;}
.y19f{bottom:483.736500px;}
.y319{bottom:485.115000px;}
.y106{bottom:485.230500px;}
.y2e{bottom:485.380500px;}
.y153{bottom:485.595000px;}
.y299{bottom:486.996000px;}
.y255{bottom:489.156000px;}
.y2dc{bottom:489.714000px;}
.y335{bottom:490.909500px;}
.ybb{bottom:491.208000px;}
.y9f{bottom:491.749500px;}
.y23b{bottom:491.772000px;}
.y192{bottom:492.240000px;}
.y1fb{bottom:492.763500px;}
.y57{bottom:493.930500px;}
.y213{bottom:494.407500px;}
.y278{bottom:494.772000px;}
.y13f{bottom:495.178500px;}
.y1e6{bottom:495.186000px;}
.y2ea{bottom:495.691500px;}
.y1cc{bottom:497.185500px;}
.y122{bottom:500.173500px;}
.y170{bottom:500.212500px;}
.y82{bottom:501.669000px;}
.y105{bottom:503.163000px;}
.y2d{bottom:503.313000px;}
.y1a4{bottom:504.417000px;}
.y254{bottom:507.088500px;}
.y2ed{bottom:507.646500px;}
.y334{bottom:508.842000px;}
.yba{bottom:509.140500px;}
.y9e{bottom:509.682000px;}
.y191{bottom:510.172500px;}
.ydf{bottom:510.496500px;}
.y1fa{bottom:510.697500px;}
.y56{bottom:511.863000px;}
.y212{bottom:512.340000px;}
.y13e{bottom:513.111000px;}
.y1e5{bottom:513.118500px;}
.y2cb{bottom:513.624000px;}
.y318{bottom:514.083000px;}
.y23a{bottom:514.188000px;}
.y298{bottom:514.710000px;}
.y8{bottom:514.963500px;}
.y1cb{bottom:515.118000px;}
.yda{bottom:515.467500px;}
.y152{bottom:515.482500px;}
.ydc{bottom:517.878000px;}
.y121{bottom:518.107500px;}
.y1a3{bottom:518.613000px;}
.y81{bottom:519.601500px;}
.y104{bottom:521.095500px;}
.y2c{bottom:521.245500px;}
.y277{bottom:524.430000px;}
.y253{bottom:525.021000px;}
.y350{bottom:525.579000px;}
.y333{bottom:526.774500px;}
.yb9{bottom:527.073000px;}
.y9d{bottom:527.614500px;}
.y190{bottom:528.105000px;}
.yd9{bottom:528.127500px;}
.y300{bottom:528.567000px;}
.y1f9{bottom:528.630000px;}
.y55{bottom:529.797000px;}
.y211{bottom:530.272500px;}
.y13d{bottom:531.043500px;}
.y1e4{bottom:531.052500px;}
.y2b4{bottom:531.556500px;}
.y317{bottom:532.017000px;}
.yd8{bottom:532.071000px;}
.y239{bottom:532.120500px;}
.y297{bottom:532.644000px;}
.y1ca{bottom:533.050500px;}
.y151{bottom:533.415000px;}
.y120{bottom:536.040000px;}
.y16f{bottom:537.430500px;}
.y80{bottom:537.534000px;}
.ydb{bottom:538.237500px;}
.y230{bottom:538.257000px;}
.y103{bottom:539.028000px;}
.y2b{bottom:539.178000px;}
.yde{bottom:542.325000px;}
.y276{bottom:542.362500px;}
.y252{bottom:542.953500px;}
.y2e9{bottom:543.511500px;}
.y345{bottom:544.707000px;}
.yb8{bottom:545.005500px;}
.y9c{bottom:545.548500px;}
.y2ff{bottom:546.501000px;}
.y1f8{bottom:546.562500px;}
.ydd{bottom:546.808500px;}
.y18f{bottom:547.533000px;}
.y54{bottom:547.729500px;}
.y210{bottom:548.206500px;}
.y13c{bottom:548.976000px;}
.y1e3{bottom:548.985000px;}
.y2b3{bottom:549.489000px;}
.y296{bottom:550.576500px;}
.y1c9{bottom:550.983000px;}
.y16e{bottom:551.628000px;}
.y1a2{bottom:552.276000px;}
.y11f{bottom:553.972500px;}
.y7f{bottom:555.466500px;}
.y102{bottom:556.960500px;}
.y2a{bottom:557.110500px;}
.y275{bottom:560.295000px;}
.y251{bottom:560.887500px;}
.y316{bottom:560.985000px;}
.y2e8{bottom:561.444000px;}
.y344{bottom:562.639500px;}
.yb7{bottom:562.939500px;}
.y9b{bottom:563.481000px;}
.y2fe{bottom:564.433500px;}
.y53{bottom:565.662000px;}
.y16d{bottom:565.824000px;}
.y20f{bottom:566.139000px;}
.y13b{bottom:566.908500px;}
.y1e2{bottom:566.917500px;}
.y235{bottom:567.421500px;}
.y1c8{bottom:568.917000px;}
.y11e{bottom:571.905000px;}
.yd7{bottom:573.019500px;}
.y7e{bottom:573.399000px;}
.y101{bottom:574.894500px;}
.y29{bottom:575.043000px;}
.y274{bottom:578.227500px;}
.y295{bottom:578.290500px;}
.y315{bottom:578.917500px;}
.y2ca{bottom:579.376500px;}
.y16c{bottom:580.021500px;}
.y343{bottom:580.572000px;}
.y9a{bottom:581.413500px;}
.yb6{bottom:582.366000px;}
.y150{bottom:582.507000px;}
.y18e{bottom:583.089000px;}
.y52{bottom:583.594500px;}
.y20e{bottom:584.071500px;}
.y13a{bottom:584.842500px;}
.y1e1{bottom:584.850000px;}
.y2b2{bottom:585.354000px;}
.y2db{bottom:585.355500px;}
.y1c7{bottom:586.849500px;}
.y238{bottom:587.271000px;}
.y11d{bottom:589.837500px;}
.yf0{bottom:591.331500px;}
.y7d{bottom:591.333000px;}
.y250{bottom:592.269000px;}
.y100{bottom:592.827000px;}
.y28{bottom:592.977000px;}
.y1f7{bottom:595.653000px;}
.y294{bottom:596.223000px;}
.y14f{bottom:596.703000px;}
.y2c9{bottom:597.310500px;}
.y99{bottom:599.346000px;}
.yd6{bottom:599.554500px;}
.yb5{bottom:600.298500px;}
.y18d{bottom:601.021500px;}
.y237{bottom:601.468500px;}
.y51{bottom:601.527000px;}
.y139{bottom:602.775000px;}
.y1e0{bottom:602.782500px;}
.y2da{bottom:603.288000px;}
.y1c6{bottom:604.782000px;}
.yd3{bottom:606.936000px;}
.y11c{bottom:607.770000px;}
.y273{bottom:607.885500px;}
.y7c{bottom:609.265500px;}
.yff{bottom:610.759500px;}
.y14e{bottom:610.900500px;}
.y293{bottom:614.155500px;}
.y2b1{bottom:615.243000px;}
.yd2{bottom:617.187000px;}
.y98{bottom:617.278500px;}
.y18c{bottom:618.954000px;}
.y50{bottom:619.461000px;}
.y27{bottom:619.875000px;}
.y138{bottom:620.707500px;}
.y1df{bottom:620.716500px;}
.y2d9{bottom:621.220500px;}
.yb4{bottom:622.714500px;}
.y11b{bottom:625.704000px;}
.y272{bottom:625.818000px;}
.y7b{bottom:627.198000px;}
.yfe{bottom:628.692000px;}
.yd5{bottom:631.383000px;}
.y292{bottom:632.088000px;}
.y20d{bottom:633.162000px;}
.y2b0{bottom:633.175500px;}
.y97{bottom:635.211000px;}
.yd4{bottom:635.866500px;}
.y18b{bottom:636.886500px;}
.y4f{bottom:637.393500px;}
.y332{bottom:637.957500px;}
.y137{bottom:638.640000px;}
.y2e7{bottom:639.153000px;}
.y1c5{bottom:640.647000px;}
.y11a{bottom:643.636500px;}
.y314{bottom:643.750500px;}
.y271{bottom:643.752000px;}
.y7a{bottom:645.130500px;}
.yfd{bottom:646.624500px;}
.y2d8{bottom:651.108000px;}
.y96{bottom:653.145000px;}
.yb3{bottom:654.097500px;}
.y18a{bottom:654.819000px;}
.y4e{bottom:655.326000px;}
.y24f{bottom:655.557000px;}
.y331{bottom:655.890000px;}
.y136{bottom:656.572500px;}
.y2e6{bottom:657.085500px;}
.y1de{bottom:657.934500px;}
.y1c4{bottom:658.579500px;}
.y291{bottom:659.803500px;}
.y119{bottom:661.569000px;}
.y270{bottom:661.684500px;}
.yd1{bottom:662.079000px;}
.y79{bottom:663.063000px;}
.yfc{bottom:664.558500px;}
.y2d7{bottom:669.040500px;}
.y95{bottom:671.077500px;}
.y313{bottom:672.720000px;}
.y189{bottom:672.751500px;}
.y4d{bottom:673.258500px;}
.y330{bottom:673.822500px;}
.y135{bottom:674.506500px;}
.y2e5{bottom:675.018000px;}
.y1c3{bottom:676.513500px;}
.y290{bottom:677.736000px;}
.y118{bottom:679.501500px;}
.yd0{bottom:680.011500px;}
.y78{bottom:680.995500px;}
.yfb{bottom:682.491000px;}
.y2d6{bottom:686.973000px;}
.y2f4{bottom:686.974500px;}
.y312{bottom:690.652500px;}
.y188{bottom:690.685500px;}
.y4c{bottom:691.191000px;}
.y26f{bottom:691.342500px;}
.y32f{bottom:691.756500px;}
.y134{bottom:692.439000px;}
.y2c8{bottom:692.952000px;}
.y1c2{bottom:694.446000px;}
.y28f{bottom:695.668500px;}
.y117{bottom:697.434000px;}
.ycf{bottom:697.944000px;}
.y77{bottom:698.929500px;}
.yfa{bottom:700.423500px;}
.y342{bottom:702.516000px;}
.y2d5{bottom:704.907000px;}
.y26{bottom:704.907075px;}
.y311{bottom:708.585000px;}
.y187{bottom:708.618000px;}
.y4b{bottom:709.123500px;}
.y26e{bottom:709.275000px;}
.y2c7{bottom:710.884500px;}
.y1c1{bottom:712.378500px;}
.y28e{bottom:713.601000px;}
.y116{bottom:715.366500px;}
.y163{bottom:715.368000px;}
.yce{bottom:715.876500px;}
.y76{bottom:716.862000px;}
.y94{bottom:720.168000px;}
.y32e{bottom:720.448500px;}
.y2d4{bottom:722.839500px;}
.y25{bottom:723.322545px;}
.y2a5{bottom:723.382500px;}
.y4a{bottom:727.057500px;}
.y26d{bottom:727.207500px;}
.y2af{bottom:728.817000px;}
.y1c0{bottom:730.311000px;}
.yf9{bottom:733.300500px;}
.y75{bottom:734.794500px;}
.y24{bottom:737.520045px;}
.y310{bottom:737.553000px;}
.y7{bottom:738.300000px;}
.y32d{bottom:738.381000px;}
.y1a1{bottom:738.636000px;}
.y133{bottom:739.032000px;}
.y2c6{bottom:740.772000px;}
.y186{bottom:740.979000px;}
.y22e{bottom:741.189000px;}
.y28d{bottom:741.315000px;}
.y49{bottom:744.990000px;}
.y2ae{bottom:746.749500px;}
.y23{bottom:747.496545px;}
.y1bf{bottom:748.243500px;}
.yf8{bottom:751.233000px;}
.y74{bottom:752.727000px;}
.y30f{bottom:755.485500px;}
.y32c{bottom:756.313500px;}
.y2fd{bottom:757.210500px;}
.y26c{bottom:758.245500px;}
.y2c5{bottom:758.704500px;}
.y185{bottom:758.911500px;}
.y28c{bottom:759.247500px;}
.y48{bottom:762.922500px;}
.ycd{bottom:763.548000px;}
.y2ad{bottom:764.682000px;}
.y22{bottom:765.913530px;}
.y1be{bottom:766.176000px;}
.y341{bottom:767.073000px;}
.yf7{bottom:769.165500px;}
.y73{bottom:770.659500px;}
.y30e{bottom:773.419500px;}
.y6{bottom:774.165000px;}
.y2fc{bottom:775.143000px;}
.y21{bottom:775.890030px;}
.y34e{bottom:776.637000px;}
.y184{bottom:776.844000px;}
.y28b{bottom:777.181500px;}
.y47{bottom:780.855000px;}
.y2ac{bottom:782.614500px;}
.y1bd{bottom:784.110000px;}
.y32b{bottom:785.005500px;}
.yf6{bottom:787.098000px;}
.y72{bottom:788.592000px;}
.y20{bottom:790.087575px;}
.y2fb{bottom:793.075500px;}
.y34d{bottom:794.571000px;}
.y183{bottom:794.776500px;}
.y46{bottom:798.787500px;}
.y2ab{bottom:800.548500px;}
.y1bc{bottom:802.042500px;}
.y30d{bottom:802.387500px;}
.y26b{bottom:802.732500px;}
.y32a{bottom:802.939500px;}
.y28a{bottom:804.895500px;}
.yf5{bottom:805.030500px;}
.y71{bottom:806.526000px;}
.y1f{bottom:808.503045px;}
.y5{bottom:810.031500px;}
.y34c{bottom:812.503500px;}
.y182{bottom:812.709000px;}
.y45{bottom:816.720000px;}
.y2e4{bottom:818.481000px;}
.y227{bottom:819.313500px;}
.y1bb{bottom:819.975000px;}
.y30c{bottom:820.320000px;}
.y26a{bottom:820.665000px;}
.y329{bottom:820.872000px;}
.y2fa{bottom:821.469000px;}
.y289{bottom:822.828000px;}
.yf4{bottom:822.964500px;}
.y70{bottom:824.458500px;}
.y2aa{bottom:830.436000px;}
.y181{bottom:830.641500px;}
.y1e{bottom:833.424000px;}
.y44{bottom:834.654000px;}
.y2c4{bottom:836.413500px;}
.y1ba{bottom:837.907500px;}
.y30b{bottom:838.252500px;}
.y269{bottom:838.597500px;}
.y2f9{bottom:839.401500px;}
.y288{bottom:840.760500px;}
.yf3{bottom:840.897000px;}
.y6f{bottom:842.391000px;}
.y2a9{bottom:848.368500px;}
.y328{bottom:849.564000px;}
.y1d{bottom:851.358000px;}
.y43{bottom:852.586500px;}
.y2c3{bottom:854.346000px;}
.y1b9{bottom:855.840000px;}
.y268{bottom:856.530000px;}
.y2f8{bottom:857.335500px;}
.yf2{bottom:858.829500px;}
.y6e{bottom:860.323500px;}
.y2a8{bottom:866.301000px;}
.y30a{bottom:867.220500px;}
.y327{bottom:867.496500px;}
.y287{bottom:868.474500px;}
.y1c{bottom:869.290500px;}
.y2d3{bottom:872.278500px;}
.y4{bottom:872.796000px;}
.y1b8{bottom:873.774000px;}
.y6d{bottom:878.256000px;}
.y42{bottom:883.968000px;}
.y2a7{bottom:884.233500px;}
.y309{bottom:885.153000px;}
.y326{bottom:885.429000px;}
.y2f7{bottom:885.729000px;}
.y286{bottom:886.407000px;}
.y1b{bottom:887.223000px;}
.y267{bottom:887.568000px;}
.y34b{bottom:890.211000px;}
.y1b7{bottom:891.706500px;}
.y6c{bottom:896.188500px;}
.y2c2{bottom:902.167500px;}
.y3{bottom:902.683500px;}
.y308{bottom:903.087000px;}
.y325{bottom:903.363000px;}
.y2f6{bottom:903.661500px;}
.y285{bottom:904.341000px;}
.y225{bottom:907.396500px;}
.y1b6{bottom:909.639000px;}
.y6b{bottom:914.122500px;}
.y2c1{bottom:920.100000px;}
.y307{bottom:921.019500px;}
.y2f5{bottom:921.594000px;}
.y284{bottom:922.273500px;}
.y1b5{bottom:927.571500px;}
.y1a{bottom:932.055000px;}
.y2{bottom:932.571000px;}
.y2c0{bottom:938.032500px;}
.y41{bottom:939.693000px;}
.y1b4{bottom:945.504000px;}
.y6a{bottom:949.987500px;}
.yb2{bottom:952.228500px;}
.y22a{bottom:954.805500px;}
.y40{bottom:957.625500px;}
.y19{bottom:958.954500px;}
.y22f{bottom:960.201000px;}
.y1{bottom:962.460000px;}
.y228{bottom:963.066000px;}
.y1b3{bottom:963.436500px;}
.y69{bottom:967.920000px;}
.y18{bottom:985.852500px;}
.y231{bottom:1004.908500px;}
.y233{bottom:1044.220500px;}
.y232{bottom:1052.730000px;}
.y229{bottom:1092.663000px;}
.h14{height:0.000000px;}
.he{height:18.993450px;}
.h20{height:20.234041px;}
.h21{height:23.850624px;}
.ha{height:24.863300px;}
.h16{height:29.373646px;}
.h13{height:29.457331px;}
.h15{height:31.382100px;}
.h19{height:34.844100px;}
.hb{height:35.865450px;}
.h25{height:41.484266px;}
.hc{height:41.842920px;}
.h5{height:42.079167px;}
.h12{height:42.141798px;}
.h4{height:42.192741px;}
.hd{height:44.831700px;}
.h26{height:44.837700px;}
.hf{height:49.875391px;}
.h8{height:53.072040px;}
.h1f{height:53.072100px;}
.h22{height:53.078100px;}
.h9{height:53.078280px;}
.h10{height:54.952899px;}
.h17{height:54.958899px;}
.h23{height:59.939700px;}
.h24{height:59.945700px;}
.h7{height:61.458264px;}
.h18{height:64.337700px;}
.h2{height:67.326667px;}
.h1e{height:80.093700px;}
.h1c{height:80.099700px;}
.h1b{height:80.693700px;}
.h1a{height:80.699700px;}
.h3{height:84.385482px;}
.h11{height:85.271700px;}
.h1d{height:116.567700px;}
.h6{height:1188.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:100.713000px;}
.x1{left:102.046500px;}
.x65{left:173.800500px;}
.x3{left:200.892000px;}
.xf{left:207.976515px;}
.x9{left:211.574985px;}
.x36{left:213.802500px;}
.x33{left:215.083500px;}
.xc{left:217.078485px;}
.x13{left:223.068000px;}
.x6{left:224.956500px;}
.x7{left:230.883000px;}
.xe{left:233.208000px;}
.x34{left:235.899000px;}
.x31{left:238.012500px;}
.x4d{left:240.702000px;}
.x16{left:244.953000px;}
.x4{left:249.582000px;}
.x15{left:259.525500px;}
.x3a{left:268.198500px;}
.x5c{left:276.567000px;}
.x32{left:284.242500px;}
.x39{left:286.131000px;}
.x30{left:291.262500px;}
.x4e{left:294.499500px;}
.x1f{left:303.205500px;}
.x1e{left:305.337000px;}
.x4f{left:312.433500px;}
.xb{left:318.767985px;}
.x3b{left:321.997500px;}
.xd{left:325.894500px;}
.x8{left:330.757485px;}
.x35{left:332.082000px;}
.x37{left:340.080000px;}
.x5{left:346.237500px;}
.x50{left:348.298500px;}
.x20{left:351.381000px;}
.x38{left:358.012500px;}
.xa{left:366.032985px;}
.x17{left:369.010500px;}
.x3d{left:375.795000px;}
.x21{left:380.197500px;}
.x29{left:382.687500px;}
.x3c{left:384.762000px;}
.x10{left:385.951515px;}
.x3e{left:393.727500px;}
.x2a{left:397.146000px;}
.x18{left:402.522000px;}
.x64{left:406.057500px;}
.x3f{left:411.661500px;}
.x2b{left:414.714000px;}
.x19{left:420.090000px;}
.x40{left:429.594000px;}
.x2c{left:432.634500px;}
.x2d{left:433.747500px;}
.x1b{left:438.009000px;}
.x1c{left:439.123500px;}
.x1a{left:443.509500px;}
.x41{left:447.526500px;}
.x22{left:450.303000px;}
.x14{left:454.699500px;}
.x2e{left:456.711000px;}
.x1d{left:462.085500px;}
.x42{left:465.459000px;}
.x52{left:473.827500px;}
.x66{left:477.514500px;}
.x24{left:480.913500px;}
.x51{left:482.794500px;}
.x23{left:483.996000px;}
.x5a{left:491.760000px;}
.x2f{left:495.009000px;}
.x26{left:498.834000px;}
.x27{left:499.947000px;}
.x43{left:501.324000px;}
.x25{left:504.333000px;}
.x53{left:509.692500px;}
.x44{left:519.258000px;}
.x28{left:522.910500px;}
.x54{left:527.626500px;}
.x45{left:537.190500px;}
.x63{left:545.559000px;}
.x46{left:555.123000px;}
.x56{left:564.088500px;}
.x49{left:573.055500px;}
.x47{left:582.022500px;}
.x4a{left:590.988000px;}
.x48{left:599.955000px;}
.x4b{left:608.920500px;}
.x5d{left:617.289000px;}
.x11{left:618.328500px;}
.x4c{left:626.854500px;}
.x67{left:629.149500px;}
.x55{left:635.970000px;}
.x58{left:644.787000px;}
.x57{left:653.752500px;}
.x59{left:662.719500px;}
.x60{left:671.685000px;}
.x5b{left:680.802000px;}
.x61{left:689.619000px;}
.x12{left:692.343000px;}
.x62{left:698.584500px;}
.x5e{left:743.566500px;}
.x5f{left:761.499000px;}
@media print{
.v2{vertical-align:-19.279947pt;}
.v3{vertical-align:-15.002613pt;}
.v4{vertical-align:-7.968000pt;}
.va{vertical-align:-5.637333pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:3.077333pt;}
.v9{vertical-align:7.968000pt;}
.v8{vertical-align:9.370667pt;}
.vd{vertical-align:13.429333pt;}
.v7{vertical-align:17.338667pt;}
.v1{vertical-align:19.279947pt;}
.v5{vertical-align:30.117333pt;}
.vc{vertical-align:31.882667pt;}
.v6{vertical-align:35.946667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.000880pt;}
.ls2a{letter-spacing:0.001014pt;}
.ls1b{letter-spacing:0.001659pt;}
.ls3c{letter-spacing:0.001799pt;}
.ls1a{letter-spacing:0.001995pt;}
.ls18{letter-spacing:0.002906pt;}
.ls3d{letter-spacing:0.003033pt;}
.lsf{letter-spacing:0.003723pt;}
.lse{letter-spacing:0.003733pt;}
.ls33{letter-spacing:0.005138pt;}
.ls21{letter-spacing:1.474963pt;}
.ls29{letter-spacing:1.696060pt;}
.ls20{letter-spacing:1.900465pt;}
.ls2e{letter-spacing:1.905799pt;}
.ls26{letter-spacing:2.651680pt;}
.ls5{letter-spacing:2.652329pt;}
.ls1{letter-spacing:2.652858pt;}
.ls10{letter-spacing:2.652911pt;}
.ls4{letter-spacing:2.653558pt;}
.ls8{letter-spacing:2.655527pt;}
.ls43{letter-spacing:2.656473pt;}
.ls24{letter-spacing:2.657014pt;}
.ls7{letter-spacing:2.657662pt;}
.ls2{letter-spacing:2.658245pt;}
.ls3{letter-spacing:2.658785pt;}
.ls6{letter-spacing:2.660291pt;}
.ls2f{letter-spacing:3.805629pt;}
.ls2c{letter-spacing:3.976384pt;}
.ls25{letter-spacing:3.981717pt;}
.ls17{letter-spacing:5.718992pt;}
.ls13{letter-spacing:6.642178pt;}
.ls14{letter-spacing:6.647511pt;}
.ls2b{letter-spacing:8.851118pt;}
.ls11{letter-spacing:8.855412pt;}
.ls12{letter-spacing:8.873356pt;}
.ls22{letter-spacing:11.533573pt;}
.ls30{letter-spacing:11.534905pt;}
.ls34{letter-spacing:14.170318pt;}
.ls16{letter-spacing:14.759412pt;}
.ls42{letter-spacing:15.089995pt;}
.ls28{letter-spacing:16.453394pt;}
.ls9{letter-spacing:16.487329pt;}
.ls40{letter-spacing:17.622347pt;}
.ls35{letter-spacing:17.708745pt;}
.lsa{letter-spacing:18.391132pt;}
.ls38{letter-spacing:19.963680pt;}
.lsb{letter-spacing:20.311329pt;}
.ls15{letter-spacing:20.476326pt;}
.ls32{letter-spacing:20.672479pt;}
.ls3f{letter-spacing:20.699547pt;}
.ls19{letter-spacing:21.089799pt;}
.ls1f{letter-spacing:21.452465pt;}
.ls36{letter-spacing:21.735329pt;}
.ls31{letter-spacing:22.149138pt;}
.lsc{letter-spacing:22.209799pt;}
.ls3e{letter-spacing:22.503051pt;}
.ls37{letter-spacing:22.785014pt;}
.ls1d{letter-spacing:23.207412pt;}
.ls3a{letter-spacing:23.698569pt;}
.ls1e{letter-spacing:24.258963pt;}
.ls41{letter-spacing:25.491613pt;}
.ls3b{letter-spacing:26.497014pt;}
.lsd{letter-spacing:26.639805pt;}
.ls1c{letter-spacing:27.010962pt;}
.ls23{letter-spacing:32.091145pt;}
.ls2d{letter-spacing:296.732745pt;}
.ls27{letter-spacing:530.706079pt;}
.wsbf{word-spacing:-53.133867pt;}
.wsbe{word-spacing:-43.484756pt;}
.wsb{word-spacing:-42.359791pt;}
.wsbb{word-spacing:-39.584731pt;}
.wsc1{word-spacing:-38.374400pt;}
.wsc0{word-spacing:-38.362652pt;}
.wsb8{word-spacing:-36.662368pt;}
.wsc2{word-spacing:-34.611401pt;}
.wsc5{word-spacing:-29.914367pt;}
.wsca{word-spacing:-28.118362pt;}
.wsd5{word-spacing:-25.791179pt;}
.wsbd{word-spacing:-25.738045pt;}
.wsc8{word-spacing:-22.120343pt;}
.wscc{word-spacing:-16.970957pt;}
.wsc{word-spacing:-14.760588pt;}
.ws3{word-spacing:-14.032699pt;}
.wsb2{word-spacing:-13.581016pt;}
.ws118{word-spacing:-12.543875pt;}
.ws11a{word-spacing:-2.964870pt;}
.ws138{word-spacing:-2.911736pt;}
.ws185{word-spacing:-2.858602pt;}
.wsd8{word-spacing:-2.805468pt;}
.ws198{word-spacing:-2.699200pt;}
.ws16e{word-spacing:-2.592933pt;}
.ws157{word-spacing:-2.539799pt;}
.ws167{word-spacing:-2.486665pt;}
.ws132{word-spacing:-2.433531pt;}
.wsa4{word-spacing:-2.380397pt;}
.ws93{word-spacing:-2.327263pt;}
.ws97{word-spacing:-2.274129pt;}
.ws16b{word-spacing:-2.220996pt;}
.wsc9{word-spacing:-2.167862pt;}
.ws152{word-spacing:-2.114728pt;}
.ws173{word-spacing:-2.061594pt;}
.wse2{word-spacing:-2.008460pt;}
.wse0{word-spacing:-1.902192pt;}
.ws16c{word-spacing:-1.849059pt;}
.ws180{word-spacing:-1.795925pt;}
.ws4a{word-spacing:-1.742791pt;}
.ws119{word-spacing:-1.689657pt;}
.ws139{word-spacing:-1.636523pt;}
.wsfb{word-spacing:-1.583389pt;}
.ws133{word-spacing:-1.530255pt;}
.ws16a{word-spacing:-1.423988pt;}
.ws168{word-spacing:-1.370854pt;}
.ws155{word-spacing:-1.317720pt;}
.ws13f{word-spacing:-1.264586pt;}
.ws13b{word-spacing:-1.211452pt;}
.ws5d{word-spacing:-1.158318pt;}
.ws15b{word-spacing:-1.105184pt;}
.ws4f{word-spacing:-1.052051pt;}
.ws79{word-spacing:-0.998917pt;}
.ws7a{word-spacing:-0.945783pt;}
.ws69{word-spacing:-0.892649pt;}
.ws8a{word-spacing:-0.839515pt;}
.ws3e{word-spacing:-0.786381pt;}
.ws10f{word-spacing:-0.733247pt;}
.wsfd{word-spacing:-0.680113pt;}
.wsb7{word-spacing:-0.626980pt;}
.ws12f{word-spacing:-0.573846pt;}
.ws12d{word-spacing:-0.520712pt;}
.ws20{word-spacing:-0.467578pt;}
.ws30{word-spacing:-0.414444pt;}
.ws96{word-spacing:-0.361310pt;}
.ws6c{word-spacing:-0.308176pt;}
.wsef{word-spacing:-0.255043pt;}
.ws66{word-spacing:-0.201909pt;}
.ws4{word-spacing:-0.151432pt;}
.ws55{word-spacing:-0.148775pt;}
.ws10a{word-spacing:-0.095641pt;}
.wsd4{word-spacing:-0.053134pt;}
.ws134{word-spacing:-0.042507pt;}
.wsa{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.wscb{word-spacing:0.002557pt;}
.ws2f{word-spacing:0.010627pt;}
.wsce{word-spacing:0.063761pt;}
.ws95{word-spacing:0.116895pt;}
.ws6{word-spacing:0.151432pt;}
.ws3d{word-spacing:0.170028pt;}
.ws5{word-spacing:0.201909pt;}
.ws112{word-spacing:0.208285pt;}
.ws31{word-spacing:0.223162pt;}
.ws5b{word-spacing:0.276296pt;}
.ws60{word-spacing:0.329430pt;}
.ws84{word-spacing:0.382564pt;}
.wsb5{word-spacing:0.435698pt;}
.ws13a{word-spacing:0.488832pt;}
.wsf9{word-spacing:0.541965pt;}
.ws49{word-spacing:0.595099pt;}
.ws100{word-spacing:0.648233pt;}
.ws120{word-spacing:0.701367pt;}
.ws6b{word-spacing:0.754501pt;}
.ws3f{word-spacing:0.807635pt;}
.wsa1{word-spacing:0.860769pt;}
.ws9b{word-spacing:0.913903pt;}
.ws18{word-spacing:0.967036pt;}
.ws15a{word-spacing:0.977663pt;}
.ws104{word-spacing:1.015922pt;}
.ws7e{word-spacing:1.020170pt;}
.ws8b{word-spacing:1.073304pt;}
.wsab{word-spacing:1.126438pt;}
.ws92{word-spacing:1.179572pt;}
.ws129{word-spacing:1.190199pt;}
.ws73{word-spacing:1.232706pt;}
.ws81{word-spacing:1.285840pt;}
.ws39{word-spacing:1.338973pt;}
.ws50{word-spacing:1.392107pt;}
.ws75{word-spacing:1.445241pt;}
.wsdc{word-spacing:1.498375pt;}
.ws5a{word-spacing:1.551509pt;}
.ws142{word-spacing:1.604643pt;}
.ws36{word-spacing:1.657777pt;}
.wsfe{word-spacing:1.710911pt;}
.ws54{word-spacing:1.764044pt;}
.ws9e{word-spacing:1.817178pt;}
.ws11e{word-spacing:1.870312pt;}
.ws44{word-spacing:1.923446pt;}
.ws1b{word-spacing:1.976580pt;}
.ws5e{word-spacing:2.029714pt;}
.ws2b{word-spacing:2.082848pt;}
.ws94{word-spacing:2.135981pt;}
.ws12{word-spacing:2.189115pt;}
.wsa2{word-spacing:2.242249pt;}
.ws76{word-spacing:2.295383pt;}
.ws8d{word-spacing:2.348517pt;}
.ws15{word-spacing:2.401651pt;}
.ws40{word-spacing:2.454785pt;}
.ws24{word-spacing:2.503674pt;}
.ws87{word-spacing:2.507919pt;}
.wsdd{word-spacing:2.561052pt;}
.ws2a{word-spacing:2.614186pt;}
.ws33{word-spacing:2.667320pt;}
.ws53{word-spacing:2.720454pt;}
.wsa0{word-spacing:2.773588pt;}
.wsd3{word-spacing:2.784215pt;}
.ws89{word-spacing:2.826722pt;}
.ws5c{word-spacing:2.879856pt;}
.ws9{word-spacing:2.932989pt;}
.wseb{word-spacing:2.942126pt;}
.ws159{word-spacing:2.942248pt;}
.ws10d{word-spacing:2.953924pt;}
.ws17b{word-spacing:2.956506pt;}
.wse9{word-spacing:2.958830pt;}
.ws110{word-spacing:2.971253pt;}
.wsd{word-spacing:2.986123pt;}
.ws3a{word-spacing:3.039257pt;}
.ws47{word-spacing:3.092391pt;}
.ws143{word-spacing:3.145525pt;}
.wse5{word-spacing:3.198659pt;}
.ws4e{word-spacing:3.251793pt;}
.ws4b{word-spacing:3.304927pt;}
.ws21{word-spacing:3.358060pt;}
.wsb0{word-spacing:3.379314pt;}
.ws61{word-spacing:3.411194pt;}
.ws10b{word-spacing:3.432448pt;}
.ws52{word-spacing:3.464328pt;}
.wscf{word-spacing:3.517462pt;}
.ws8f{word-spacing:3.570596pt;}
.wsf4{word-spacing:3.581223pt;}
.ws99{word-spacing:3.623730pt;}
.wsee{word-spacing:3.676864pt;}
.ws101{word-spacing:3.729997pt;}
.ws105{word-spacing:3.736383pt;}
.ws34{word-spacing:3.783131pt;}
.ws4c{word-spacing:3.836265pt;}
.ws46{word-spacing:3.889399pt;}
.ws64{word-spacing:3.942533pt;}
.wsb9{word-spacing:3.971890pt;}
.ws6f{word-spacing:3.995667pt;}
.ws117{word-spacing:4.033933pt;}
.wsed{word-spacing:4.048801pt;}
.ws12a{word-spacing:4.059427pt;}
.ws14{word-spacing:4.101935pt;}
.wsa3{word-spacing:4.155068pt;}
.wsd1{word-spacing:4.182233pt;}
.ws8c{word-spacing:4.208202pt;}
.ws88{word-spacing:4.261336pt;}
.wsb1{word-spacing:4.271963pt;}
.wse1{word-spacing:4.314470pt;}
.ws83{word-spacing:4.367604pt;}
.ws78{word-spacing:4.420738pt;}
.wsc3{word-spacing:4.435050pt;}
.ws3c{word-spacing:4.473872pt;}
.ws71{word-spacing:4.527005pt;}
.ws124{word-spacing:4.544020pt;}
.ws85{word-spacing:4.580139pt;}
.wsf6{word-spacing:4.633273pt;}
.wse{word-spacing:4.663040pt;}
.wsaf{word-spacing:4.686407pt;}
.ws82{word-spacing:4.739541pt;}
.wsc7{word-spacing:4.792675pt;}
.ws131{word-spacing:4.845809pt;}
.ws72{word-spacing:4.898943pt;}
.ws115{word-spacing:4.926584pt;}
.ws109{word-spacing:4.952076pt;}
.ws1e{word-spacing:5.005210pt;}
.ws174{word-spacing:5.058344pt;}
.ws32{word-spacing:5.111478pt;}
.wsb4{word-spacing:5.164612pt;}
.ws80{word-spacing:5.217746pt;}
.ws56{word-spacing:5.270880pt;}
.ws7f{word-spacing:5.324013pt;}
.wsff{word-spacing:5.360976pt;}
.ws3b{word-spacing:5.377147pt;}
.ws102{word-spacing:5.387774pt;}
.wsd0{word-spacing:5.430281pt;}
.ws5f{word-spacing:5.440908pt;}
.ws106{word-spacing:5.452135pt;}
.ws128{word-spacing:5.483415pt;}
.wsba{word-spacing:5.536549pt;}
.ws65{word-spacing:5.589683pt;}
.ws2c{word-spacing:5.642817pt;}
.ws57{word-spacing:5.695951pt;}
.ws58{word-spacing:5.749084pt;}
.ws91{word-spacing:5.802218pt;}
.ws7d{word-spacing:5.855352pt;}
.ws8e{word-spacing:5.908486pt;}
.ws27{word-spacing:5.961620pt;}
.ws9d{word-spacing:6.014754pt;}
.ws63{word-spacing:6.067888pt;}
.ws11c{word-spacing:6.121021pt;}
.wsbc{word-spacing:6.170493pt;}
.ws74{word-spacing:6.174155pt;}
.ws135{word-spacing:6.227289pt;}
.ws68{word-spacing:6.280423pt;}
.ws9c{word-spacing:6.333557pt;}
.ws37{word-spacing:6.386691pt;}
.wsa5{word-spacing:6.439825pt;}
.wsd9{word-spacing:6.492959pt;}
.ws1f{word-spacing:6.546092pt;}
.ws113{word-spacing:6.599226pt;}
.ws1d{word-spacing:6.652360pt;}
.wse8{word-spacing:6.705494pt;}
.ws62{word-spacing:6.758628pt;}
.ws16{word-spacing:6.811762pt;}
.ws59{word-spacing:6.864896pt;}
.ws130{word-spacing:6.918029pt;}
.wsf3{word-spacing:6.971163pt;}
.ws51{word-spacing:7.024297pt;}
.ws11f{word-spacing:7.077431pt;}
.ws10{word-spacing:7.130565pt;}
.ws7c{word-spacing:7.183699pt;}
.ws10e{word-spacing:7.236833pt;}
.ws114{word-spacing:7.289967pt;}
.wsf{word-spacing:7.343100pt;}
.ws42{word-spacing:7.396234pt;}
.ws7b{word-spacing:7.449368pt;}
.ws9a{word-spacing:7.502502pt;}
.wse4{word-spacing:7.555636pt;}
.ws35{word-spacing:7.608770pt;}
.ws156{word-spacing:7.661904pt;}
.wsac{word-spacing:7.715037pt;}
.ws153{word-spacing:7.768171pt;}
.ws19{word-spacing:7.821305pt;}
.ws158{word-spacing:7.831932pt;}
.ws141{word-spacing:7.874439pt;}
.ws29{word-spacing:7.927573pt;}
.ws9f{word-spacing:7.980707pt;}
.wsc6{word-spacing:8.016900pt;}
.ws111{word-spacing:8.029610pt;}
.wsc4{word-spacing:8.033841pt;}
.wsa9{word-spacing:8.086975pt;}
.ws154{word-spacing:8.097601pt;}
.ws13{word-spacing:8.140108pt;}
.ws22{word-spacing:8.193242pt;}
.ws6e{word-spacing:8.246376pt;}
.ws28{word-spacing:8.299510pt;}
.ws116{word-spacing:8.327160pt;}
.ws17{word-spacing:8.352644pt;}
.ws2d{word-spacing:8.405778pt;}
.wsdb{word-spacing:8.458912pt;}
.wsfc{word-spacing:8.512045pt;}
.ws6a{word-spacing:8.565179pt;}
.ws108{word-spacing:8.618313pt;}
.ws2e{word-spacing:8.671447pt;}
.wsa8{word-spacing:8.724581pt;}
.ws86{word-spacing:8.777715pt;}
.ws43{word-spacing:8.830849pt;}
.wscd{word-spacing:8.855890pt;}
.ws177{word-spacing:8.883983pt;}
.wsa7{word-spacing:8.937116pt;}
.wsf8{word-spacing:8.990250pt;}
.ws13c{word-spacing:9.043384pt;}
.ws103{word-spacing:9.076824pt;}
.wsaa{word-spacing:9.096518pt;}
.ws67{word-spacing:9.149652pt;}
.ws23{word-spacing:9.202786pt;}
.ws77{word-spacing:9.255920pt;}
.ws127{word-spacing:9.266546pt;}
.wsae{word-spacing:9.309053pt;}
.ws70{word-spacing:9.362187pt;}
.ws140{word-spacing:9.415321pt;}
.ws122{word-spacing:9.468455pt;}
.wsa6{word-spacing:9.521589pt;}
.wsf2{word-spacing:9.574723pt;}
.ws13e{word-spacing:9.627857pt;}
.wsf1{word-spacing:9.638483pt;}
.ws176{word-spacing:9.680991pt;}
.ws137{word-spacing:9.734124pt;}
.wsfa{word-spacing:9.787258pt;}
.wsdf{word-spacing:9.840392pt;}
.wsb6{word-spacing:9.893526pt;}
.ws11{word-spacing:9.946660pt;}
.ws98{word-spacing:9.999794pt;}
.ws38{word-spacing:10.052928pt;}
.ws15c{word-spacing:10.106061pt;}
.wsf0{word-spacing:10.159195pt;}
.wsad{word-spacing:10.212329pt;}
.ws13d{word-spacing:10.265463pt;}
.ws1a{word-spacing:10.318597pt;}
.ws182{word-spacing:10.371731pt;}
.ws160{word-spacing:10.424865pt;}
.ws11b{word-spacing:10.477999pt;}
.ws144{word-spacing:10.531132pt;}
.wse3{word-spacing:10.584266pt;}
.ws107{word-spacing:10.637400pt;}
.ws136{word-spacing:10.690534pt;}
.wsec{word-spacing:10.743668pt;}
.ws1c{word-spacing:10.796802pt;}
.ws12b{word-spacing:10.809818pt;}
.ws12c{word-spacing:10.814368pt;}
.wsde{word-spacing:10.849936pt;}
.ws6d{word-spacing:10.903069pt;}
.ws164{word-spacing:10.956203pt;}
.wsf7{word-spacing:10.966830pt;}
.ws15d{word-spacing:11.009337pt;}
.ws90{word-spacing:11.062471pt;}
.wsd2{word-spacing:11.091404pt;}
.wsf5{word-spacing:11.115605pt;}
.ws121{word-spacing:11.168739pt;}
.ws45{word-spacing:11.221873pt;}
.ws48{word-spacing:11.275007pt;}
.wsd7{word-spacing:11.328140pt;}
.ws165{word-spacing:11.381274pt;}
.wsb3{word-spacing:11.487542pt;}
.ws17c{word-spacing:11.540676pt;}
.ws170{word-spacing:11.593810pt;}
.ws16f{word-spacing:11.646944pt;}
.ws125{word-spacing:11.700077pt;}
.ws4d{word-spacing:11.753211pt;}
.ws126{word-spacing:11.889051pt;}
.ws172{word-spacing:11.912613pt;}
.ws197{word-spacing:12.125148pt;}
.ws17a{word-spacing:12.231416pt;}
.ws190{word-spacing:12.390818pt;}
.ws41{word-spacing:12.603353pt;}
.ws193{word-spacing:12.762755pt;}
.ws12e{word-spacing:12.815889pt;}
.ws161{word-spacing:12.922156pt;}
.ws10c{word-spacing:13.240960pt;}
.ws175{word-spacing:13.347227pt;}
.ws11d{word-spacing:13.436419pt;}
.ws194{word-spacing:13.559763pt;}
.ws26{word-spacing:13.581016pt;}
.ws18c{word-spacing:13.931700pt;}
.ws2{word-spacing:13.982221pt;}
.ws169{word-spacing:13.984834pt;}
.ws166{word-spacing:14.091101pt;}
.ws123{word-spacing:14.282342pt;}
.ws187{word-spacing:14.409905pt;}
.ws186{word-spacing:14.463039pt;}
.ws18b{word-spacing:14.569306pt;}
.ws16d{word-spacing:14.728708pt;}
.ws17d{word-spacing:14.781842pt;}
.ws17f{word-spacing:14.941243pt;}
.ws17e{word-spacing:14.994377pt;}
.ws18e{word-spacing:15.206913pt;}
.ws162{word-spacing:15.844519pt;}
.ws184{word-spacing:16.482125pt;}
.wsda{word-spacing:16.791700pt;}
.ws192{word-spacing:16.854063pt;}
.ws18f{word-spacing:17.119732pt;}
.ws181{word-spacing:17.651071pt;}
.ws171{word-spacing:18.341811pt;}
.ws188{word-spacing:18.448079pt;}
.ws15e{word-spacing:18.501212pt;}
.ws18d{word-spacing:19.191953pt;}
.ws189{word-spacing:19.776425pt;}
.wse7{word-spacing:20.194574pt;}
.wse6{word-spacing:20.202502pt;}
.wsea{word-spacing:20.346502pt;}
.ws178{word-spacing:20.839103pt;}
.ws179{word-spacing:21.051638pt;}
.ws15f{word-spacing:22.167449pt;}
.ws163{word-spacing:22.698788pt;}
.ws191{word-spacing:23.974001pt;}
.ws7{word-spacing:24.866400pt;}
.ws8{word-spacing:24.942912pt;}
.ws195{word-spacing:25.727418pt;}
.ws1{word-spacing:27.964443pt;}
.ws25{word-spacing:32.130070pt;}
.ws183{word-spacing:34.016301pt;}
.ws196{word-spacing:38.320145pt;}
.ws148{word-spacing:49.004506pt;}
.ws147{word-spacing:64.864608pt;}
.ws149{word-spacing:68.766435pt;}
.ws14a{word-spacing:75.568745pt;}
.ws146{word-spacing:78.359849pt;}
.ws151{word-spacing:88.547769pt;}
.ws150{word-spacing:102.139412pt;}
.ws145{word-spacing:359.974918pt;}
.ws14d{word-spacing:398.201992pt;}
.ws18a{word-spacing:507.735173pt;}
.wsd6{word-spacing:564.557960pt;}
.ws14b{word-spacing:628.170462pt;}
.ws14c{word-spacing:692.197782pt;}
.ws14f{word-spacing:696.946350pt;}
.ws14e{word-spacing:988.134193pt;}
._56{margin-left:-1943.377185pt;}
._55{margin-left:-1942.054704pt;}
._73{margin-left:-1933.927775pt;}
._2b{margin-left:-1928.877319pt;}
._29{margin-left:-1927.718992pt;}
._1e{margin-left:-1914.791890pt;}
._20{margin-left:-1913.824857pt;}
._45{margin-left:-1902.692961pt;}
._1c{margin-left:-1900.294781pt;}
._6b{margin-left:-1887.021222pt;}
._68{margin-left:-1861.426615pt;}
._86{margin-left:-1843.845366pt;}
._62{margin-left:-1833.318795pt;}
._38{margin-left:-1813.141123pt;}
._8b{margin-left:-1808.978163pt;}
._26{margin-left:-1731.990100pt;}
._43{margin-left:-1683.468462pt;}
._63{margin-left:-1679.267799pt;}
._6a{margin-left:-1575.970237pt;}
._2c{margin-left:-1540.840682pt;}
._5d{margin-left:-1509.292536pt;}
._82{margin-left:-1456.613034pt;}
._8e{margin-left:-1424.076445pt;}
._3e{margin-left:-1401.688403pt;}
._72{margin-left:-1389.316273pt;}
._3b{margin-left:-1371.122068pt;}
._71{margin-left:-1351.665611pt;}
._8d{margin-left:-1316.049980pt;}
._3f{margin-left:-1300.925346pt;}
._74{margin-left:-1297.628469pt;}
._66{margin-left:-1284.536289pt;}
._8c{margin-left:-1277.411032pt;}
._7b{margin-left:-1267.533447pt;}
._3a{margin-left:-1249.443959pt;}
._75{margin-left:-1235.079281pt;}
._77{margin-left:-1209.091507pt;}
._70{margin-left:-1160.128664pt;}
._64{margin-left:-1128.588393pt;}
._5e{margin-left:-1114.986115pt;}
._6e{margin-left:-1063.828849pt;}
._88{margin-left:-1021.762735pt;}
._2d{margin-left:-1020.654819pt;}
._7c{margin-left:-981.062204pt;}
._7a{margin-left:-962.619439pt;}
._36{margin-left:-952.737050pt;}
._6f{margin-left:-919.267537pt;}
._83{margin-left:-893.269117pt;}
._39{margin-left:-846.333209pt;}
._37{margin-left:-839.606489pt;}
._7e{margin-left:-831.176880pt;}
._28{margin-left:-826.886219pt;}
._76{margin-left:-819.869981pt;}
._80{margin-left:-767.809431pt;}
._44{margin-left:-762.530459pt;}
._6c{margin-left:-729.462739pt;}
._89{margin-left:-676.323539pt;}
._57{margin-left:-667.059220pt;}
._81{margin-left:-664.527821pt;}
._5b{margin-left:-611.393954pt;}
._40{margin-left:-598.617817pt;}
._84{margin-left:-579.243403pt;}
._2e{margin-left:-564.835324pt;}
._65{margin-left:-558.265421pt;}
._31{margin-left:-530.723386pt;}
._6d{margin-left:-514.004910pt;}
._67{margin-left:-446.110455pt;}
._85{margin-left:-419.538188pt;}
._59{margin-left:-396.485646pt;}
._79{margin-left:-392.971255pt;}
._30{margin-left:-369.759622pt;}
._60{margin-left:-366.404321pt;}
._7f{margin-left:-339.837388pt;}
._46{margin-left:-228.455441pt;}
._33{margin-left:-29.414502pt;}
._5a{margin-left:-28.498613pt;}
._58{margin-left:-27.229239pt;}
._3d{margin-left:-26.163127pt;}
._3c{margin-left:-25.201389pt;}
._10{margin-left:-22.698841pt;}
._5c{margin-left:-20.827566pt;}
._0{margin-left:-9.691648pt;}
._c{margin-left:-6.057280pt;}
._f{margin-left:-4.993831pt;}
._3{margin-left:-4.038187pt;}
._2{margin-left:-2.422912pt;}
._6{margin-left:-1.312411pt;}
._1{width:1.211456pt;}
._b{width:2.624821pt;}
._4{width:4.038187pt;}
._34{width:5.698204pt;}
._61{width:7.367033pt;}
._9{width:8.429715pt;}
._87{width:11.992324pt;}
._35{width:13.177199pt;}
._1b{width:14.834991pt;}
._a{width:16.607043pt;}
._d{width:18.222317pt;}
._25{width:19.149457pt;}
._1a{width:20.127158pt;}
._11{width:21.083573pt;}
._14{width:22.581893pt;}
._32{width:23.522367pt;}
._15{width:24.422855pt;}
._e{width:25.873792pt;}
._18{width:27.523343pt;}
._22{width:28.734796pt;}
._19{width:30.530727pt;}
._1d{width:32.156612pt;}
._8{width:33.113131pt;}
._5{width:34.728405pt;}
._13{width:35.700665pt;}
._5f{width:36.890855pt;}
._21{width:37.841936pt;}
._27{width:39.138414pt;}
._7{width:40.129480pt;}
._1f{width:41.091203pt;}
._2f{width:42.358331pt;}
._2a{width:43.654793pt;}
._12{width:44.685582pt;}
._16{width:45.897035pt;}
._17{width:47.995834pt;}
._23{width:49.031181pt;}
._24{width:50.865062pt;}
._69{width:54.207167pt;}
._78{width:56.802517pt;}
._7d{width:57.971450pt;}
._8a{width:62.108177pt;}
._53{width:84.110744pt;}
._4d{width:90.329333pt;}
._51{width:114.073892pt;}
._54{width:124.272267pt;}
._4c{width:141.086257pt;}
._42{width:149.520594pt;}
._4e{width:283.829600pt;}
._50{width:320.860122pt;}
._52{width:337.160836pt;}
._49{width:364.727438pt;}
._4f{width:391.173186pt;}
._4a{width:442.789600pt;}
._4b{width:449.578933pt;}
._41{width:452.453379pt;}
._48{width:551.858297pt;}
._47{width:661.869568pt;}
.fs8{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs2{font-size:50.477333pt;}
.fs4{font-size:53.133867pt;}
.fs3{font-size:76.512000pt;}
.fs0{font-size:80.763733pt;}
.fs1{font-size:100.954667pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:99.089333pt;}
.y16{bottom:115.030667pt;}
.y3f{bottom:117.506667pt;}
.y3e{bottom:119.153333pt;}
.y15{bottom:130.970667pt;}
.y14{bottom:146.910667pt;}
.yf1{bottom:159.002667pt;}
.y93{bottom:159.004000pt;}
.yaf{bottom:162.141333pt;}
.y236{bottom:163.240000pt;}
.y266{bottom:163.821333pt;}
.y2bf{bottom:164.317333pt;}
.y1f6{bottom:165.197333pt;}
.ycc{bottom:165.645333pt;}
.y24c{bottom:166.146667pt;}
.y24e{bottom:166.508000pt;}
.y22b{bottom:166.974667pt;}
.y20c{bottom:167.029333pt;}
.y68{bottom:168.065333pt;}
.y132{bottom:168.301333pt;}
.y180{bottom:168.336000pt;}
.y224{bottom:168.489333pt;}
.y162{bottom:168.625333pt;}
.y3d{bottom:168.738667pt;}
.y2d2{bottom:169.630667pt;}
.y1dd{bottom:170.958667pt;}
.y92{bottom:174.944000pt;}
.yae{bottom:178.082667pt;}
.y115{bottom:178.929333pt;}
.y24d{bottom:179.180000pt;}
.y265{bottom:179.761333pt;}
.y226{bottom:180.221333pt;}
.y2be{bottom:180.257333pt;}
.y16b{bottom:180.354667pt;}
.y1f5{bottom:181.137333pt;}
.ycb{bottom:181.585333pt;}
.y24b{bottom:182.086667pt;}
.y20b{bottom:182.969333pt;}
.y67{bottom:184.006667pt;}
.y131{bottom:184.242667pt;}
.y17f{bottom:184.276000pt;}
.y223{bottom:184.429333pt;}
.y161{bottom:184.566667pt;}
.y2e3{bottom:185.570667pt;}
.y1dc{bottom:186.898667pt;}
.y91{bottom:190.884000pt;}
.yad{bottom:194.022667pt;}
.y114{bottom:194.869333pt;}
.y264{bottom:195.701333pt;}
.y2d1{bottom:196.197333pt;}
.y16a{bottom:196.294667pt;}
.y1f4{bottom:197.077333pt;}
.yca{bottom:197.525333pt;}
.y24a{bottom:198.026667pt;}
.y20a{bottom:198.909333pt;}
.y66{bottom:199.946667pt;}
.y17e{bottom:200.216000pt;}
.y222{bottom:200.370667pt;}
.y160{bottom:200.506667pt;}
.y14d{bottom:201.392000pt;}
.y130{bottom:201.510667pt;}
.y1db{bottom:202.838667pt;}
.y90{bottom:206.824000pt;}
.y3c{bottom:208.285333pt;}
.y1b2{bottom:208.802667pt;}
.yac{bottom:209.962667pt;}
.y13{bottom:210.672000pt;}
.y113{bottom:210.809333pt;}
.y263{bottom:211.641333pt;}
.y2d0{bottom:212.137333pt;}
.y169{bottom:212.234667pt;}
.y1f3{bottom:213.017333pt;}
.yc9{bottom:213.465333pt;}
.y249{bottom:213.966667pt;}
.y209{bottom:214.849333pt;}
.y65{bottom:215.886667pt;}
.y306{bottom:216.122667pt;}
.y17d{bottom:216.156000pt;}
.y221{bottom:216.310667pt;}
.y34a{bottom:216.388000pt;}
.y15f{bottom:216.446667pt;}
.y324{bottom:216.633333pt;}
.y14c{bottom:217.332000pt;}
.y2f3{bottom:217.450667pt;}
.y1da{bottom:218.778667pt;}
.y12f{bottom:221.436000pt;}
.y8f{bottom:222.764000pt;}
.yef{bottom:222.765333pt;}
.y3b{bottom:224.225333pt;}
.y1b1{bottom:224.742667pt;}
.yab{bottom:225.902667pt;}
.y12{bottom:226.612000pt;}
.y112{bottom:226.749333pt;}
.y262{bottom:227.582667pt;}
.y2cf{bottom:228.077333pt;}
.y1f2{bottom:228.957333pt;}
.yc8{bottom:229.406667pt;}
.y248{bottom:229.906667pt;}
.y208{bottom:230.789333pt;}
.y2a4{bottom:231.458667pt;}
.y64{bottom:231.826667pt;}
.y305{bottom:232.062667pt;}
.y17c{bottom:232.097333pt;}
.y220{bottom:232.250667pt;}
.y340{bottom:232.328000pt;}
.y15e{bottom:232.386667pt;}
.y323{bottom:232.573333pt;}
.y283{bottom:233.186667pt;}
.y2f1{bottom:233.390667pt;}
.y14b{bottom:234.601333pt;}
.y1d9{bottom:234.720000pt;}
.yb1{bottom:238.704000pt;}
.y2ec{bottom:238.705333pt;}
.y1a0{bottom:240.033333pt;}
.y3a{bottom:240.165333pt;}
.y1b0{bottom:240.682667pt;}
.y8e{bottom:240.697333pt;}
.yaa{bottom:241.842667pt;}
.y11{bottom:242.552000pt;}
.y111{bottom:242.689333pt;}
.y261{bottom:243.522667pt;}
.y2ce{bottom:244.018667pt;}
.y1f1{bottom:244.897333pt;}
.y168{bottom:245.318667pt;}
.yc7{bottom:245.346667pt;}
.y247{bottom:245.846667pt;}
.y19e{bottom:246.264000pt;}
.yed{bottom:246.352000pt;}
.y207{bottom:246.729333pt;}
.y2a3{bottom:247.398667pt;}
.y63{bottom:247.766667pt;}
.y304{bottom:248.002667pt;}
.y17b{bottom:248.037333pt;}
.y21f{bottom:248.190667pt;}
.y33f{bottom:248.269333pt;}
.y15d{bottom:248.326667pt;}
.y322{bottom:248.514667pt;}
.y282{bottom:249.126667pt;}
.y2bd{bottom:249.332000pt;}
.y1d8{bottom:250.660000pt;}
.yea{bottom:252.912000pt;}
.y12e{bottom:253.316000pt;}
.yb0{bottom:254.645333pt;}
.y22c{bottom:255.901333pt;}
.y39{bottom:256.106667pt;}
.y1af{bottom:256.622667pt;}
.yee{bottom:257.689333pt;}
.ya9{bottom:257.782667pt;}
.y167{bottom:257.937333pt;}
.y10{bottom:258.492000pt;}
.y110{bottom:258.629333pt;}
.y260{bottom:259.462667pt;}
.y2e2{bottom:259.958667pt;}
.y1f0{bottom:260.838667pt;}
.yc6{bottom:261.286667pt;}
.y246{bottom:261.788000pt;}
.ye9{bottom:262.024000pt;}
.y19d{bottom:262.204000pt;}
.y206{bottom:262.670667pt;}
.y2a2{bottom:263.340000pt;}
.y62{bottom:263.706667pt;}
.y21e{bottom:264.130667pt;}
.y33e{bottom:264.209333pt;}
.y15c{bottom:264.266667pt;}
.y14a{bottom:264.816000pt;}
.y2bc{bottom:265.272000pt;}
.y1d7{bottom:266.600000pt;}
.y12d{bottom:269.256000pt;}
.y166{bottom:270.557333pt;}
.y8d{bottom:270.585333pt;}
.y38{bottom:272.046667pt;}
.y1ae{bottom:272.562667pt;}
.y303{bottom:273.241333pt;}
.ya8{bottom:273.724000pt;}
.y321{bottom:274.264000pt;}
.yf{bottom:274.432000pt;}
.y10f{bottom:274.570667pt;}
.y17a{bottom:274.604000pt;}
.yec{bottom:274.644000pt;}
.y25f{bottom:275.402667pt;}
.y281{bottom:275.489333pt;}
.y2e1{bottom:275.898667pt;}
.y1ef{bottom:276.778667pt;}
.yc5{bottom:277.226667pt;}
.y245{bottom:277.728000pt;}
.y19c{bottom:278.144000pt;}
.y205{bottom:278.610667pt;}
.yeb{bottom:278.629333pt;}
.y2a1{bottom:279.280000pt;}
.y61{bottom:279.648000pt;}
.y21d{bottom:280.070667pt;}
.y149{bottom:280.756000pt;}
.y2bb{bottom:281.212000pt;}
.y1d6{bottom:282.540000pt;}
.y165{bottom:283.176000pt;}
.y12c{bottom:285.197333pt;}
.y8c{bottom:286.525333pt;}
.y37{bottom:287.986667pt;}
.y1ad{bottom:288.502667pt;}
.y302{bottom:289.181333pt;}
.ya7{bottom:289.664000pt;}
.y33d{bottom:289.713333pt;}
.y320{bottom:290.204000pt;}
.y10e{bottom:290.510667pt;}
.y179{bottom:290.544000pt;}
.y25e{bottom:291.342667pt;}
.y280{bottom:291.430667pt;}
.y2f0{bottom:291.838667pt;}
.y1ee{bottom:292.718667pt;}
.yc4{bottom:293.166667pt;}
.y15b{bottom:293.490667pt;}
.y244{bottom:293.668000pt;}
.y19b{bottom:294.084000pt;}
.y204{bottom:294.550667pt;}
.y60{bottom:295.588000pt;}
.y164{bottom:295.796000pt;}
.y21c{bottom:296.012000pt;}
.y148{bottom:296.696000pt;}
.y2ba{bottom:297.152000pt;}
.y1d5{bottom:298.480000pt;}
.y12b{bottom:301.137333pt;}
.ye8{bottom:301.928000pt;}
.y8b{bottom:302.465333pt;}
.y2a0{bottom:303.914667pt;}
.y36{bottom:303.926667pt;}
.y1ac{bottom:304.444000pt;}
.ya6{bottom:305.604000pt;}
.y33c{bottom:305.653333pt;}
.y31f{bottom:306.144000pt;}
.y10d{bottom:306.450667pt;}
.y178{bottom:306.484000pt;}
.y25d{bottom:307.282667pt;}
.y27f{bottom:307.370667pt;}
.y2ef{bottom:307.778667pt;}
.y1ed{bottom:308.658667pt;}
.yc3{bottom:309.106667pt;}
.y15a{bottom:309.430667pt;}
.y243{bottom:309.608000pt;}
.y19a{bottom:310.024000pt;}
.y203{bottom:310.490667pt;}
.y5f{bottom:311.528000pt;}
.y21b{bottom:311.952000pt;}
.y147{bottom:312.636000pt;}
.y2eb{bottom:313.092000pt;}
.y1d4{bottom:314.420000pt;}
.y301{bottom:314.421333pt;}
.y12a{bottom:317.077333pt;}
.ye7{bottom:317.868000pt;}
.y8a{bottom:318.405333pt;}
.y29f{bottom:319.854667pt;}
.y35{bottom:319.866667pt;}
.y1ab{bottom:320.384000pt;}
.ya5{bottom:321.544000pt;}
.y33b{bottom:321.593333pt;}
.ye{bottom:322.253333pt;}
.y10c{bottom:322.390667pt;}
.y177{bottom:322.425333pt;}
.y25c{bottom:323.224000pt;}
.y27e{bottom:323.310667pt;}
.y2b9{bottom:323.718667pt;}
.y1ec{bottom:324.598667pt;}
.yc2{bottom:325.048000pt;}
.y159{bottom:325.372000pt;}
.y242{bottom:325.548000pt;}
.y199{bottom:325.965333pt;}
.y202{bottom:326.430667pt;}
.y5e{bottom:327.468000pt;}
.y21a{bottom:327.892000pt;}
.y146{bottom:328.577333pt;}
.y2cd{bottom:329.032000pt;}
.y1d3{bottom:330.361333pt;}
.y31e{bottom:331.893333pt;}
.y129{bottom:333.017333pt;}
.ye6{bottom:333.808000pt;}
.y89{bottom:334.345333pt;}
.y2ee{bottom:334.346667pt;}
.y34{bottom:335.806667pt;}
.y1aa{bottom:336.324000pt;}
.y349{bottom:337.534667pt;}
.yd{bottom:338.193333pt;}
.y10b{bottom:338.330667pt;}
.y176{bottom:338.365333pt;}
.y25b{bottom:339.164000pt;}
.y2b8{bottom:339.660000pt;}
.y1eb{bottom:340.538667pt;}
.yc1{bottom:340.988000pt;}
.y158{bottom:341.312000pt;}
.ya4{bottom:341.469333pt;}
.y241{bottom:341.489333pt;}
.y198{bottom:341.905333pt;}
.y201{bottom:342.370667pt;}
.y5d{bottom:343.408000pt;}
.y219{bottom:343.832000pt;}
.y29e{bottom:344.489333pt;}
.y145{bottom:344.517333pt;}
.y2cc{bottom:344.973333pt;}
.y1d2{bottom:346.301333pt;}
.y33a{bottom:347.098667pt;}
.y31d{bottom:347.833333pt;}
.y128{bottom:348.957333pt;}
.y27d{bottom:349.673333pt;}
.ye5{bottom:349.748000pt;}
.y88{bottom:350.286667pt;}
.y33{bottom:351.748000pt;}
.y1a9{bottom:352.264000pt;}
.y348{bottom:353.474667pt;}
.y10a{bottom:354.270667pt;}
.y175{bottom:354.305333pt;}
.y25a{bottom:355.104000pt;}
.y2b7{bottom:355.600000pt;}
.y1ea{bottom:356.480000pt;}
.yc0{bottom:356.928000pt;}
.y157{bottom:357.252000pt;}
.y240{bottom:357.429333pt;}
.y197{bottom:357.845333pt;}
.y200{bottom:358.312000pt;}
.y5c{bottom:359.348000pt;}
.y218{bottom:359.772000pt;}
.y29d{bottom:360.429333pt;}
.y144{bottom:360.457333pt;}
.y2e0{bottom:360.913333pt;}
.y1d1{bottom:362.241333pt;}
.y339{bottom:363.038667pt;}
.y127{bottom:364.898667pt;}
.y27c{bottom:365.613333pt;}
.ye4{bottom:365.689333pt;}
.y87{bottom:366.226667pt;}
.y32{bottom:367.688000pt;}
.y1a8{bottom:368.204000pt;}
.yc{bottom:370.073333pt;}
.y109{bottom:370.212000pt;}
.y174{bottom:370.245333pt;}
.y259{bottom:371.044000pt;}
.y2b6{bottom:371.540000pt;}
.y1e9{bottom:372.420000pt;}
.ybf{bottom:372.868000pt;}
.y156{bottom:373.192000pt;}
.ya3{bottom:373.349333pt;}
.y23f{bottom:373.369333pt;}
.y31c{bottom:373.584000pt;}
.y196{bottom:373.785333pt;}
.y1ff{bottom:374.252000pt;}
.y5b{bottom:375.289333pt;}
.y217{bottom:375.712000pt;}
.y29c{bottom:376.370667pt;}
.y143{bottom:376.397333pt;}
.y2df{bottom:376.853333pt;}
.y1d0{bottom:378.181333pt;}
.y338{bottom:378.978667pt;}
.y126{bottom:380.838667pt;}
.ye3{bottom:381.629333pt;}
.y86{bottom:382.166667pt;}
.y31{bottom:383.628000pt;}
.y1a7{bottom:384.144000pt;}
.y2a6{bottom:385.065333pt;}
.yb{bottom:386.013333pt;}
.y108{bottom:386.152000pt;}
.y173{bottom:386.185333pt;}
.y258{bottom:386.984000pt;}
.y234{bottom:387.281333pt;}
.y2b5{bottom:387.480000pt;}
.ybe{bottom:388.808000pt;}
.ya2{bottom:389.290667pt;}
.y23e{bottom:389.309333pt;}
.y31b{bottom:389.524000pt;}
.y195{bottom:389.725333pt;}
.y1fe{bottom:390.192000pt;}
.y5a{bottom:391.229333pt;}
.y216{bottom:391.653333pt;}
.y27b{bottom:391.976000pt;}
.y142{bottom:392.337333pt;}
.y1e8{bottom:392.345333pt;}
.y2de{bottom:392.793333pt;}
.y1cf{bottom:394.121333pt;}
.y337{bottom:394.918667pt;}
.y125{bottom:396.778667pt;}
.ye2{bottom:397.569333pt;}
.y85{bottom:398.106667pt;}
.y30{bottom:399.568000pt;}
.y155{bottom:399.758667pt;}
.y1a6{bottom:400.085333pt;}
.y29b{bottom:401.005333pt;}
.ya{bottom:401.954667pt;}
.y172{bottom:402.125333pt;}
.y257{bottom:402.924000pt;}
.y2f2{bottom:403.420000pt;}
.ybd{bottom:404.748000pt;}
.ya1{bottom:405.230667pt;}
.y23d{bottom:405.249333pt;}
.y194{bottom:405.665333pt;}
.y1fd{bottom:406.132000pt;}
.y59{bottom:407.169333pt;}
.y215{bottom:407.593333pt;}
.y27a{bottom:407.916000pt;}
.y141{bottom:408.277333pt;}
.y351{bottom:408.733333pt;}
.y1ce{bottom:410.062667pt;}
.y347{bottom:410.858667pt;}
.y124{bottom:412.718667pt;}
.ye1{bottom:413.509333pt;}
.y84{bottom:414.046667pt;}
.y31a{bottom:415.273333pt;}
.y107{bottom:415.376000pt;}
.y2f{bottom:415.508000pt;}
.y154{bottom:415.700000pt;}
.y1a5{bottom:416.025333pt;}
.y29a{bottom:416.945333pt;}
.y9{bottom:417.894667pt;}
.y171{bottom:418.066667pt;}
.y256{bottom:418.865333pt;}
.y2dd{bottom:419.360000pt;}
.y336{bottom:420.422667pt;}
.ybc{bottom:420.689333pt;}
.ya0{bottom:421.170667pt;}
.y23c{bottom:421.189333pt;}
.y193{bottom:421.606667pt;}
.y1fc{bottom:422.072000pt;}
.y58{bottom:423.109333pt;}
.y214{bottom:423.533333pt;}
.y279{bottom:423.856000pt;}
.y140{bottom:424.218667pt;}
.y1e7{bottom:424.225333pt;}
.y34f{bottom:424.674667pt;}
.y1cd{bottom:426.002667pt;}
.y346{bottom:426.800000pt;}
.y22d{bottom:428.217333pt;}
.y123{bottom:428.658667pt;}
.ye0{bottom:429.449333pt;}
.y83{bottom:429.986667pt;}
.y19f{bottom:429.988000pt;}
.y319{bottom:431.213333pt;}
.y106{bottom:431.316000pt;}
.y2e{bottom:431.449333pt;}
.y153{bottom:431.640000pt;}
.y299{bottom:432.885333pt;}
.y255{bottom:434.805333pt;}
.y2dc{bottom:435.301333pt;}
.y335{bottom:436.364000pt;}
.ybb{bottom:436.629333pt;}
.y9f{bottom:437.110667pt;}
.y23b{bottom:437.130667pt;}
.y192{bottom:437.546667pt;}
.y1fb{bottom:438.012000pt;}
.y57{bottom:439.049333pt;}
.y213{bottom:439.473333pt;}
.y278{bottom:439.797333pt;}
.y13f{bottom:440.158667pt;}
.y1e6{bottom:440.165333pt;}
.y2ea{bottom:440.614667pt;}
.y1cc{bottom:441.942667pt;}
.y122{bottom:444.598667pt;}
.y170{bottom:444.633333pt;}
.y82{bottom:445.928000pt;}
.y105{bottom:447.256000pt;}
.y2d{bottom:447.389333pt;}
.y1a4{bottom:448.370667pt;}
.y254{bottom:450.745333pt;}
.y2ed{bottom:451.241333pt;}
.y334{bottom:452.304000pt;}
.yba{bottom:452.569333pt;}
.y9e{bottom:453.050667pt;}
.y191{bottom:453.486667pt;}
.ydf{bottom:453.774667pt;}
.y1fa{bottom:453.953333pt;}
.y56{bottom:454.989333pt;}
.y212{bottom:455.413333pt;}
.y13e{bottom:456.098667pt;}
.y1e5{bottom:456.105333pt;}
.y2cb{bottom:456.554667pt;}
.y318{bottom:456.962667pt;}
.y23a{bottom:457.056000pt;}
.y298{bottom:457.520000pt;}
.y8{bottom:457.745333pt;}
.y1cb{bottom:457.882667pt;}
.yda{bottom:458.193333pt;}
.y152{bottom:458.206667pt;}
.ydc{bottom:460.336000pt;}
.y121{bottom:460.540000pt;}
.y1a3{bottom:460.989333pt;}
.y81{bottom:461.868000pt;}
.y104{bottom:463.196000pt;}
.y2c{bottom:463.329333pt;}
.y277{bottom:466.160000pt;}
.y253{bottom:466.685333pt;}
.y350{bottom:467.181333pt;}
.y333{bottom:468.244000pt;}
.yb9{bottom:468.509333pt;}
.y9d{bottom:468.990667pt;}
.y190{bottom:469.426667pt;}
.yd9{bottom:469.446667pt;}
.y300{bottom:469.837333pt;}
.y1f9{bottom:469.893333pt;}
.y55{bottom:470.930667pt;}
.y211{bottom:471.353333pt;}
.y13d{bottom:472.038667pt;}
.y1e4{bottom:472.046667pt;}
.y2b4{bottom:472.494667pt;}
.y317{bottom:472.904000pt;}
.yd8{bottom:472.952000pt;}
.y239{bottom:472.996000pt;}
.y297{bottom:473.461333pt;}
.y1ca{bottom:473.822667pt;}
.y151{bottom:474.146667pt;}
.y120{bottom:476.480000pt;}
.y16f{bottom:477.716000pt;}
.y80{bottom:477.808000pt;}
.ydb{bottom:478.433333pt;}
.y230{bottom:478.450667pt;}
.y103{bottom:479.136000pt;}
.y2b{bottom:479.269333pt;}
.yde{bottom:482.066667pt;}
.y276{bottom:482.100000pt;}
.y252{bottom:482.625333pt;}
.y2e9{bottom:483.121333pt;}
.y345{bottom:484.184000pt;}
.yb8{bottom:484.449333pt;}
.y9c{bottom:484.932000pt;}
.y2ff{bottom:485.778667pt;}
.y1f8{bottom:485.833333pt;}
.ydd{bottom:486.052000pt;}
.y18f{bottom:486.696000pt;}
.y54{bottom:486.870667pt;}
.y210{bottom:487.294667pt;}
.y13c{bottom:487.978667pt;}
.y1e3{bottom:487.986667pt;}
.y2b3{bottom:488.434667pt;}
.y296{bottom:489.401333pt;}
.y1c9{bottom:489.762667pt;}
.y16e{bottom:490.336000pt;}
.y1a2{bottom:490.912000pt;}
.y11f{bottom:492.420000pt;}
.y7f{bottom:493.748000pt;}
.y102{bottom:495.076000pt;}
.y2a{bottom:495.209333pt;}
.y275{bottom:498.040000pt;}
.y251{bottom:498.566667pt;}
.y316{bottom:498.653333pt;}
.y2e8{bottom:499.061333pt;}
.y344{bottom:500.124000pt;}
.yb7{bottom:500.390667pt;}
.y9b{bottom:500.872000pt;}
.y2fe{bottom:501.718667pt;}
.y53{bottom:502.810667pt;}
.y16d{bottom:502.954667pt;}
.y20f{bottom:503.234667pt;}
.y13b{bottom:503.918667pt;}
.y1e2{bottom:503.926667pt;}
.y235{bottom:504.374667pt;}
.y1c8{bottom:505.704000pt;}
.y11e{bottom:508.360000pt;}
.yd7{bottom:509.350667pt;}
.y7e{bottom:509.688000pt;}
.y101{bottom:511.017333pt;}
.y29{bottom:511.149333pt;}
.y274{bottom:513.980000pt;}
.y295{bottom:514.036000pt;}
.y315{bottom:514.593333pt;}
.y2ca{bottom:515.001333pt;}
.y16c{bottom:515.574667pt;}
.y343{bottom:516.064000pt;}
.y9a{bottom:516.812000pt;}
.yb6{bottom:517.658667pt;}
.y150{bottom:517.784000pt;}
.y18e{bottom:518.301333pt;}
.y52{bottom:518.750667pt;}
.y20e{bottom:519.174667pt;}
.y13a{bottom:519.860000pt;}
.y1e1{bottom:519.866667pt;}
.y2b2{bottom:520.314667pt;}
.y2db{bottom:520.316000pt;}
.y1c7{bottom:521.644000pt;}
.y238{bottom:522.018667pt;}
.y11d{bottom:524.300000pt;}
.yf0{bottom:525.628000pt;}
.y7d{bottom:525.629333pt;}
.y250{bottom:526.461333pt;}
.y100{bottom:526.957333pt;}
.y28{bottom:527.090667pt;}
.y1f7{bottom:529.469333pt;}
.y294{bottom:529.976000pt;}
.y14f{bottom:530.402667pt;}
.y2c9{bottom:530.942667pt;}
.y99{bottom:532.752000pt;}
.yd6{bottom:532.937333pt;}
.yb5{bottom:533.598667pt;}
.y18d{bottom:534.241333pt;}
.y237{bottom:534.638667pt;}
.y51{bottom:534.690667pt;}
.y139{bottom:535.800000pt;}
.y1e0{bottom:535.806667pt;}
.y2da{bottom:536.256000pt;}
.y1c6{bottom:537.584000pt;}
.yd3{bottom:539.498667pt;}
.y11c{bottom:540.240000pt;}
.y273{bottom:540.342667pt;}
.y7c{bottom:541.569333pt;}
.yff{bottom:542.897333pt;}
.y14e{bottom:543.022667pt;}
.y293{bottom:545.916000pt;}
.y2b1{bottom:546.882667pt;}
.yd2{bottom:548.610667pt;}
.y98{bottom:548.692000pt;}
.y18c{bottom:550.181333pt;}
.y50{bottom:550.632000pt;}
.y27{bottom:551.000000pt;}
.y138{bottom:551.740000pt;}
.y1df{bottom:551.748000pt;}
.y2d9{bottom:552.196000pt;}
.yb4{bottom:553.524000pt;}
.y11b{bottom:556.181333pt;}
.y272{bottom:556.282667pt;}
.y7b{bottom:557.509333pt;}
.yfe{bottom:558.837333pt;}
.yd5{bottom:561.229333pt;}
.y292{bottom:561.856000pt;}
.y20d{bottom:562.810667pt;}
.y2b0{bottom:562.822667pt;}
.y97{bottom:564.632000pt;}
.yd4{bottom:565.214667pt;}
.y18b{bottom:566.121333pt;}
.y4f{bottom:566.572000pt;}
.y332{bottom:567.073333pt;}
.y137{bottom:567.680000pt;}
.y2e7{bottom:568.136000pt;}
.y1c5{bottom:569.464000pt;}
.y11a{bottom:572.121333pt;}
.y314{bottom:572.222667pt;}
.y271{bottom:572.224000pt;}
.y7a{bottom:573.449333pt;}
.yfd{bottom:574.777333pt;}
.y2d8{bottom:578.762667pt;}
.y96{bottom:580.573333pt;}
.yb3{bottom:581.420000pt;}
.y18a{bottom:582.061333pt;}
.y4e{bottom:582.512000pt;}
.y24f{bottom:582.717333pt;}
.y331{bottom:583.013333pt;}
.y136{bottom:583.620000pt;}
.y2e6{bottom:584.076000pt;}
.y1de{bottom:584.830667pt;}
.y1c4{bottom:585.404000pt;}
.y291{bottom:586.492000pt;}
.y119{bottom:588.061333pt;}
.y270{bottom:588.164000pt;}
.yd1{bottom:588.514667pt;}
.y79{bottom:589.389333pt;}
.yfc{bottom:590.718667pt;}
.y2d7{bottom:594.702667pt;}
.y95{bottom:596.513333pt;}
.y313{bottom:597.973333pt;}
.y189{bottom:598.001333pt;}
.y4d{bottom:598.452000pt;}
.y330{bottom:598.953333pt;}
.y135{bottom:599.561333pt;}
.y2e5{bottom:600.016000pt;}
.y1c3{bottom:601.345333pt;}
.y290{bottom:602.432000pt;}
.y118{bottom:604.001333pt;}
.yd0{bottom:604.454667pt;}
.y78{bottom:605.329333pt;}
.yfb{bottom:606.658667pt;}
.y2d6{bottom:610.642667pt;}
.y2f4{bottom:610.644000pt;}
.y312{bottom:613.913333pt;}
.y188{bottom:613.942667pt;}
.y4c{bottom:614.392000pt;}
.y26f{bottom:614.526667pt;}
.y32f{bottom:614.894667pt;}
.y134{bottom:615.501333pt;}
.y2c8{bottom:615.957333pt;}
.y1c2{bottom:617.285333pt;}
.y28f{bottom:618.372000pt;}
.y117{bottom:619.941333pt;}
.ycf{bottom:620.394667pt;}
.y77{bottom:621.270667pt;}
.yfa{bottom:622.598667pt;}
.y342{bottom:624.458667pt;}
.y2d5{bottom:626.584000pt;}
.y26{bottom:626.584067pt;}
.y311{bottom:629.853333pt;}
.y187{bottom:629.882667pt;}
.y4b{bottom:630.332000pt;}
.y26e{bottom:630.466667pt;}
.y2c7{bottom:631.897333pt;}
.y1c1{bottom:633.225333pt;}
.y28e{bottom:634.312000pt;}
.y116{bottom:635.881333pt;}
.y163{bottom:635.882667pt;}
.yce{bottom:636.334667pt;}
.y76{bottom:637.210667pt;}
.y94{bottom:640.149333pt;}
.y32e{bottom:640.398667pt;}
.y2d4{bottom:642.524000pt;}
.y25{bottom:642.953373pt;}
.y2a5{bottom:643.006667pt;}
.y4a{bottom:646.273333pt;}
.y26d{bottom:646.406667pt;}
.y2af{bottom:647.837333pt;}
.y1c0{bottom:649.165333pt;}
.yf9{bottom:651.822667pt;}
.y75{bottom:653.150667pt;}
.y24{bottom:655.573373pt;}
.y310{bottom:655.602667pt;}
.y7{bottom:656.266667pt;}
.y32d{bottom:656.338667pt;}
.y1a1{bottom:656.565333pt;}
.y133{bottom:656.917333pt;}
.y2c6{bottom:658.464000pt;}
.y186{bottom:658.648000pt;}
.y22e{bottom:658.834667pt;}
.y28d{bottom:658.946667pt;}
.y49{bottom:662.213333pt;}
.y2ae{bottom:663.777333pt;}
.y23{bottom:664.441373pt;}
.y1bf{bottom:665.105333pt;}
.yf8{bottom:667.762667pt;}
.y74{bottom:669.090667pt;}
.y30f{bottom:671.542667pt;}
.y32c{bottom:672.278667pt;}
.y2fd{bottom:673.076000pt;}
.y26c{bottom:673.996000pt;}
.y2c5{bottom:674.404000pt;}
.y185{bottom:674.588000pt;}
.y28c{bottom:674.886667pt;}
.y48{bottom:678.153333pt;}
.ycd{bottom:678.709333pt;}
.y2ad{bottom:679.717333pt;}
.y22{bottom:680.812027pt;}
.y1be{bottom:681.045333pt;}
.y341{bottom:681.842667pt;}
.yf7{bottom:683.702667pt;}
.y73{bottom:685.030667pt;}
.y30e{bottom:687.484000pt;}
.y6{bottom:688.146667pt;}
.y2fc{bottom:689.016000pt;}
.y21{bottom:689.680027pt;}
.y34e{bottom:690.344000pt;}
.y184{bottom:690.528000pt;}
.y28b{bottom:690.828000pt;}
.y47{bottom:694.093333pt;}
.y2ac{bottom:695.657333pt;}
.y1bd{bottom:696.986667pt;}
.y32b{bottom:697.782667pt;}
.yf6{bottom:699.642667pt;}
.y72{bottom:700.970667pt;}
.y20{bottom:702.300067pt;}
.y2fb{bottom:704.956000pt;}
.y34d{bottom:706.285333pt;}
.y183{bottom:706.468000pt;}
.y46{bottom:710.033333pt;}
.y2ab{bottom:711.598667pt;}
.y1bc{bottom:712.926667pt;}
.y30d{bottom:713.233333pt;}
.y26b{bottom:713.540000pt;}
.y32a{bottom:713.724000pt;}
.y28a{bottom:715.462667pt;}
.yf5{bottom:715.582667pt;}
.y71{bottom:716.912000pt;}
.y1f{bottom:718.669373pt;}
.y5{bottom:720.028000pt;}
.y34c{bottom:722.225333pt;}
.y182{bottom:722.408000pt;}
.y45{bottom:725.973333pt;}
.y2e4{bottom:727.538667pt;}
.y227{bottom:728.278667pt;}
.y1bb{bottom:728.866667pt;}
.y30c{bottom:729.173333pt;}
.y26a{bottom:729.480000pt;}
.y329{bottom:729.664000pt;}
.y2fa{bottom:730.194667pt;}
.y289{bottom:731.402667pt;}
.yf4{bottom:731.524000pt;}
.y70{bottom:732.852000pt;}
.y2aa{bottom:738.165333pt;}
.y181{bottom:738.348000pt;}
.y1e{bottom:740.821333pt;}
.y44{bottom:741.914667pt;}
.y2c4{bottom:743.478667pt;}
.y1ba{bottom:744.806667pt;}
.y30b{bottom:745.113333pt;}
.y269{bottom:745.420000pt;}
.y2f9{bottom:746.134667pt;}
.y288{bottom:747.342667pt;}
.yf3{bottom:747.464000pt;}
.y6f{bottom:748.792000pt;}
.y2a9{bottom:754.105333pt;}
.y328{bottom:755.168000pt;}
.y1d{bottom:756.762667pt;}
.y43{bottom:757.854667pt;}
.y2c3{bottom:759.418667pt;}
.y1b9{bottom:760.746667pt;}
.y268{bottom:761.360000pt;}
.y2f8{bottom:762.076000pt;}
.yf2{bottom:763.404000pt;}
.y6e{bottom:764.732000pt;}
.y2a8{bottom:770.045333pt;}
.y30a{bottom:770.862667pt;}
.y327{bottom:771.108000pt;}
.y287{bottom:771.977333pt;}
.y1c{bottom:772.702667pt;}
.y2d3{bottom:775.358667pt;}
.y4{bottom:775.818667pt;}
.y1b8{bottom:776.688000pt;}
.y6d{bottom:780.672000pt;}
.y42{bottom:785.749333pt;}
.y2a7{bottom:785.985333pt;}
.y309{bottom:786.802667pt;}
.y326{bottom:787.048000pt;}
.y2f7{bottom:787.314667pt;}
.y286{bottom:787.917333pt;}
.y1b{bottom:788.642667pt;}
.y267{bottom:788.949333pt;}
.y34b{bottom:791.298667pt;}
.y1b7{bottom:792.628000pt;}
.y6c{bottom:796.612000pt;}
.y2c2{bottom:801.926667pt;}
.y3{bottom:802.385333pt;}
.y308{bottom:802.744000pt;}
.y325{bottom:802.989333pt;}
.y2f6{bottom:803.254667pt;}
.y285{bottom:803.858667pt;}
.y225{bottom:806.574667pt;}
.y1b6{bottom:808.568000pt;}
.y6b{bottom:812.553333pt;}
.y2c1{bottom:817.866667pt;}
.y307{bottom:818.684000pt;}
.y2f5{bottom:819.194667pt;}
.y284{bottom:819.798667pt;}
.y1b5{bottom:824.508000pt;}
.y1a{bottom:828.493333pt;}
.y2{bottom:828.952000pt;}
.y2c0{bottom:833.806667pt;}
.y41{bottom:835.282667pt;}
.y1b4{bottom:840.448000pt;}
.y6a{bottom:844.433333pt;}
.yb2{bottom:846.425333pt;}
.y22a{bottom:848.716000pt;}
.y40{bottom:851.222667pt;}
.y19{bottom:852.404000pt;}
.y22f{bottom:853.512000pt;}
.y1{bottom:855.520000pt;}
.y228{bottom:856.058667pt;}
.y1b3{bottom:856.388000pt;}
.y69{bottom:860.373333pt;}
.y18{bottom:876.313333pt;}
.y231{bottom:893.252000pt;}
.y233{bottom:928.196000pt;}
.y232{bottom:935.760000pt;}
.y229{bottom:971.256000pt;}
.h14{height:0.000000pt;}
.he{height:16.883067pt;}
.h20{height:17.985814pt;}
.h21{height:21.200555pt;}
.ha{height:22.100711pt;}
.h16{height:26.109907pt;}
.h13{height:26.184294pt;}
.h15{height:27.895200pt;}
.h19{height:30.972533pt;}
.hb{height:31.880400pt;}
.h25{height:36.874903pt;}
.hc{height:37.193707pt;}
.h5{height:37.403704pt;}
.h12{height:37.459376pt;}
.h4{height:37.504659pt;}
.hd{height:39.850400pt;}
.h26{height:39.855733pt;}
.hf{height:44.333681pt;}
.h8{height:47.175147pt;}
.h1f{height:47.175200pt;}
.h22{height:47.180533pt;}
.h9{height:47.180693pt;}
.h10{height:48.847021pt;}
.h17{height:48.852355pt;}
.h23{height:53.279733pt;}
.h24{height:53.285067pt;}
.h7{height:54.629568pt;}
.h18{height:57.189067pt;}
.h2{height:59.845926pt;}
.h1e{height:71.194400pt;}
.h1c{height:71.199733pt;}
.h1b{height:71.727733pt;}
.h1a{height:71.733067pt;}
.h3{height:75.009317pt;}
.h11{height:75.797067pt;}
.h1d{height:103.615733pt;}
.h6{height:1056.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:89.522667pt;}
.x1{left:90.708000pt;}
.x65{left:154.489333pt;}
.x3{left:178.570667pt;}
.xf{left:184.868013pt;}
.x9{left:188.066653pt;}
.x36{left:190.046667pt;}
.x33{left:191.185333pt;}
.xc{left:192.958653pt;}
.x13{left:198.282667pt;}
.x6{left:199.961333pt;}
.x7{left:205.229333pt;}
.xe{left:207.296000pt;}
.x34{left:209.688000pt;}
.x31{left:211.566667pt;}
.x4d{left:213.957333pt;}
.x16{left:217.736000pt;}
.x4{left:221.850667pt;}
.x15{left:230.689333pt;}
.x3a{left:238.398667pt;}
.x5c{left:245.837333pt;}
.x32{left:252.660000pt;}
.x39{left:254.338667pt;}
.x30{left:258.900000pt;}
.x4e{left:261.777333pt;}
.x1f{left:269.516000pt;}
.x1e{left:271.410667pt;}
.x4f{left:277.718667pt;}
.xb{left:283.349320pt;}
.x3b{left:286.220000pt;}
.xd{left:289.684000pt;}
.x8{left:294.006653pt;}
.x35{left:295.184000pt;}
.x37{left:302.293333pt;}
.x5{left:307.766667pt;}
.x50{left:309.598667pt;}
.x20{left:312.338667pt;}
.x38{left:318.233333pt;}
.xa{left:325.362653pt;}
.x17{left:328.009333pt;}
.x3d{left:334.040000pt;}
.x21{left:337.953333pt;}
.x29{left:340.166667pt;}
.x3c{left:342.010667pt;}
.x10{left:343.068013pt;}
.x3e{left:349.980000pt;}
.x2a{left:353.018667pt;}
.x18{left:357.797333pt;}
.x64{left:360.940000pt;}
.x3f{left:365.921333pt;}
.x2b{left:368.634667pt;}
.x19{left:373.413333pt;}
.x40{left:381.861333pt;}
.x2c{left:384.564000pt;}
.x2d{left:385.553333pt;}
.x1b{left:389.341333pt;}
.x1c{left:390.332000pt;}
.x1a{left:394.230667pt;}
.x41{left:397.801333pt;}
.x22{left:400.269333pt;}
.x14{left:404.177333pt;}
.x2e{left:405.965333pt;}
.x1d{left:410.742667pt;}
.x42{left:413.741333pt;}
.x52{left:421.180000pt;}
.x66{left:424.457333pt;}
.x24{left:427.478667pt;}
.x51{left:429.150667pt;}
.x23{left:430.218667pt;}
.x5a{left:437.120000pt;}
.x2f{left:440.008000pt;}
.x26{left:443.408000pt;}
.x27{left:444.397333pt;}
.x43{left:445.621333pt;}
.x25{left:448.296000pt;}
.x53{left:453.060000pt;}
.x44{left:461.562667pt;}
.x28{left:464.809333pt;}
.x54{left:469.001333pt;}
.x45{left:477.502667pt;}
.x63{left:484.941333pt;}
.x46{left:493.442667pt;}
.x56{left:501.412000pt;}
.x49{left:509.382667pt;}
.x47{left:517.353333pt;}
.x4a{left:525.322667pt;}
.x48{left:533.293333pt;}
.x4b{left:541.262667pt;}
.x5d{left:548.701333pt;}
.x11{left:549.625333pt;}
.x4c{left:557.204000pt;}
.x67{left:559.244000pt;}
.x55{left:565.306667pt;}
.x58{left:573.144000pt;}
.x57{left:581.113333pt;}
.x59{left:589.084000pt;}
.x60{left:597.053333pt;}
.x5b{left:605.157333pt;}
.x61{left:612.994667pt;}
.x12{left:615.416000pt;}
.x62{left:620.964000pt;}
.x5e{left:660.948000pt;}
.x5f{left:676.888000pt;}
}


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