
/* 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_02cf4314fa36.woff")format("woff");}.ff1{font-family:ff1;line-height:1.020000;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_7e4de856418f.woff")format("woff");}.ff2{font-family:ff2;line-height:1.051000;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_9b02fbfe8ec0.woff")format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_23b646eac73b.woff")format("woff");}.ff4{font-family:ff4;line-height:1.010000;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_7f6f98d0b609.woff")format("woff");}.ff5{font-family:ff5;line-height:0.948000;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_e0e548a181eb.woff")format("woff");}.ff6{font-family:ff6;line-height:0.688000;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_7f6f98d0b609.woff")format("woff");}.ff7{font-family:ff7;line-height:0.948000;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_f277e2f21573.woff")format("woff");}.ff8{font-family:ff8;line-height:0.892000;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_7f6f98d0b609.woff")format("woff");}.ff9{font-family:ff9;line-height:0.948000;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_d19eb0f403c0.woff")format("woff");}.ffa{font-family:ffa;line-height:0.741000;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_7f6f98d0b609.woff")format("woff");}.ffb{font-family:ffb;line-height:0.948000;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_7f6f98d0b609.woff")format("woff");}.ffc{font-family:ffc;line-height:0.948000;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_d19eb0f403c0.woff")format("woff");}.ffd{font-family:ffd;line-height:0.741000;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_d19eb0f403c0.woff")format("woff");}.ffe{font-family:ffe;line-height:0.741000;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_d19eb0f403c0.woff")format("woff");}.fff{font-family:fff;line-height:0.741000;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_7f6f98d0b609.woff")format("woff");}.ff10{font-family:ff10;line-height:0.948000;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_d19eb0f403c0.woff")format("woff");}.ff11{font-family:ff11;line-height:0.741000;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_d19eb0f403c0.woff")format("woff");}.ff12{font-family:ff12;line-height:0.741000;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_7f6f98d0b609.woff")format("woff");}.ff13{font-family:ff13;line-height:0.948000;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_d19eb0f403c0.woff")format("woff");}.ff14{font-family:ff14;line-height:0.741000;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_7f6f98d0b609.woff")format("woff");}.ff15{font-family:ff15;line-height:0.948000;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_7f6f98d0b609.woff")format("woff");}.ff16{font-family:ff16;line-height:0.948000;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_2408b515ad86.woff")format("woff");}.ff17{font-family:ff17;line-height:0.910156;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_2408b515ad86.woff")format("woff");}.ff18{font-family:ff18;line-height:0.910156;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_09aadae1bb29.woff")format("woff");}.ff19{font-family:ff19;line-height:0.910156;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_c26c490cae10.woff")format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url("fonts/font_0026_7f6f98d0b609.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.948000;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_d19eb0f403c0.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.741000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_d19eb0f403c0.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.741000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url("fonts/font_0029_447e7fc94dc4.woff")format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url("fonts/font_0030_09aadae1bb29.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_c26c490cae10.woff")format("woff");}.ff20{font-family:ff20;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:ff21;src:url("fonts/font_0032_14923cf776e9.woff")format("woff");}.ff21{font-family:ff21;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url("fonts/font_0033_c26c490cae10.woff")format("woff");}.ff22{font-family:ff22;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:ff23;src:url("fonts/font_0034_14923cf776e9.woff")format("woff");}.ff23{font-family:ff23;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url("fonts/font_0035_14923cf776e9.woff")format("woff");}.ff24{font-family:ff24;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url("fonts/font_0036_087f6e42e8cb.woff")format("woff");}.ff25{font-family:ff25;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url("fonts/font_0037_c26c490cae10.woff")format("woff");}.ff26{font-family:ff26;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:ff27;src:url("fonts/font_0038_087f6e42e8cb.woff")format("woff");}.ff27{font-family:ff27;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url("fonts/font_0039_c26c490cae10.woff")format("woff");}.ff28{font-family:ff28;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:ff29;src:url("fonts/font_0040_087f6e42e8cb.woff")format("woff");}.ff29{font-family:ff29;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url("fonts/font_0041_c26c490cae10.woff")format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url("fonts/font_0042_14923cf776e9.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url("fonts/font_0043_c26c490cae10.woff")format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url("fonts/font_0044_14923cf776e9.woff")format("woff");}.ff2d{font-family:ff2d;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url("fonts/font_0045_85d6aed6033d.woff")format("woff");}.ff2e{font-family:ff2e;line-height:0.910156;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:ff2f;src:url("fonts/font_0046_2408b515ad86.woff")format("woff");}.ff2f{font-family:ff2f;line-height:0.910156;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:ff30;src:url("fonts/font_0047_2408b515ad86.woff")format("woff");}.ff30{font-family:ff30;line-height:0.910156;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:ff31;src:url("fonts/font_0048_2408b515ad86.woff")format("woff");}.ff31{font-family:ff31;line-height:0.910156;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:ff32;src:url("fonts/font_0049_14923cf776e9.woff")format("woff");}.ff32{font-family:ff32;line-height:0.910156;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:ff33;src:url("fonts/font_0050_14923cf776e9.woff")format("woff");}.ff33{font-family:ff33;line-height:0.910156;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:ff34;src:url("fonts/font_0051_85d6aed6033d.woff")format("woff");}.ff34{font-family:ff34;line-height:0.910156;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:ff35;src:url("fonts/font_0052_85d6aed6033d.woff")format("woff");}.ff35{font-family:ff35;line-height:0.910156;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:ff36;src:url("fonts/font_0053_85d6aed6033d.woff")format("woff");}.ff36{font-family:ff36;line-height:0.910156;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:ff37;src:url("fonts/font_0054_14923cf776e9.woff")format("woff");}.ff37{font-family:ff37;line-height:0.910156;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:ff38;src:url("fonts/font_0055_aa4ee768878c.woff")format("woff");}.ff38{font-family:ff38;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url("fonts/font_0056_c26c490cae10.woff")format("woff");}.ff39{font-family:ff39;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:ff3a;src:url("fonts/font_0057_ca0204243e9b.woff")format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url("fonts/font_0058_14923cf776e9.woff")format("woff");}.ff3b{font-family:ff3b;line-height:0.910156;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:ff3c;src:url("fonts/font_0059_c26c490cae10.woff")format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url("fonts/font_0060_aa4ee768878c.woff")format("woff");}.ff3d{font-family:ff3d;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url("fonts/font_0061_14923cf776e9.woff")format("woff");}.ff3e{font-family:ff3e;line-height:0.910156;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:ff3f;src:url("fonts/font_0062_14923cf776e9.woff")format("woff");}.ff3f{font-family:ff3f;line-height:0.910156;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:ff40;src:url("fonts/font_0063_85d6aed6033d.woff")format("woff");}.ff40{font-family:ff40;line-height:0.910156;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:ff41;src:url("fonts/font_0064_85d6aed6033d.woff")format("woff");}.ff41{font-family:ff41;line-height:0.910156;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:ff42;src:url("fonts/font_0065_85d6aed6033d.woff")format("woff");}.ff42{font-family:ff42;line-height:0.910156;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:ff43;src:url("fonts/font_0066_8267c2e4a4c7.woff")format("woff");}.ff43{font-family:ff43;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url("fonts/font_0067_14923cf776e9.woff")format("woff");}.ff44{font-family:ff44;line-height:0.910156;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:ff45;src:url("fonts/font_0068_2408b515ad86.woff")format("woff");}.ff45{font-family:ff45;line-height:0.910156;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:ff46;src:url("fonts/font_0069_14923cf776e9.woff")format("woff");}.ff46{font-family:ff46;line-height:0.910156;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:ff47;src:url("fonts/font_0070_85d6aed6033d.woff")format("woff");}.ff47{font-family:ff47;line-height:0.910156;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:ff48;src:url("fonts/font_0071_85d6aed6033d.woff")format("woff");}.ff48{font-family:ff48;line-height:0.910156;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:ff49;src:url("fonts/font_0072_2408b515ad86.woff")format("woff");}.ff49{font-family:ff49;line-height:0.910156;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:ff4a;src:url("fonts/font_0073_2408b515ad86.woff")format("woff");}.ff4a{font-family:ff4a;line-height:0.910156;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:ff4b;src:url("fonts/font_0074_2408b515ad86.woff")format("woff");}.ff4b{font-family:ff4b;line-height:0.910156;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:ff4c;src:url("fonts/font_0075_b223d842179c.woff")format("woff");}.ff4c{font-family:ff4c;line-height:0.910156;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:ff4d;src:url("fonts/font_0076_b223d842179c.woff")format("woff");}.ff4d{font-family:ff4d;line-height:0.910156;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:ff4e;src:url("fonts/font_0077_85d6aed6033d.woff")format("woff");}.ff4e{font-family:ff4e;line-height:0.910156;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:ff4f;src:url("fonts/font_0078_85d6aed6033d.woff")format("woff");}.ff4f{font-family:ff4f;line-height:0.910156;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:ff50;src:url("fonts/font_0079_85d6aed6033d.woff")format("woff");}.ff50{font-family:ff50;line-height:0.910156;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:ff51;src:url("fonts/font_0080_85d6aed6033d.woff")format("woff");}.ff51{font-family:ff51;line-height:0.910156;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:ff52;src:url("fonts/font_0081_85d6aed6033d.woff")format("woff");}.ff52{font-family:ff52;line-height:0.910156;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:ff53;src:url("fonts/font_0082_85d6aed6033d.woff")format("woff");}.ff53{font-family:ff53;line-height:0.910156;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:ff54;src:url("fonts/font_0083_85d6aed6033d.woff")format("woff");}.ff54{font-family:ff54;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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);}
.m3{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);}
.m4{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,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);}
.m1{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.600000px;}
.v4{vertical-align:-8.226000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.600000px;}
.v1{vertical-align:24.300000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.538980px;}
.ls15{letter-spacing:-0.537318px;}
.ls1a{letter-spacing:-0.431185px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000300px;}
.ls14{letter-spacing:0.537318px;}
.ls0{letter-spacing:1.368000px;}
.ls16{letter-spacing:1.998000px;}
.ls18{letter-spacing:13.636194px;}
.ls17{letter-spacing:16.912018px;}
.lsd{letter-spacing:18.752398px;}
.ls13{letter-spacing:19.450912px;}
.ls7{letter-spacing:26.515920px;}
.ls12{letter-spacing:38.931970px;}
.ls11{letter-spacing:38.977664px;}
.ls10{letter-spacing:51.680819px;}
.lse{letter-spacing:64.338271px;}
.lsf{letter-spacing:64.383973px;}
.ls9{letter-spacing:65.992980px;}
.lsc{letter-spacing:88.704129px;}
.lsb{letter-spacing:117.973859px;}
.ls6{letter-spacing:258.431280px;}
.ls5{letter-spacing:272.728110px;}
.ls8{letter-spacing:287.173350px;}
.ls4{letter-spacing:287.222820px;}
.lsa{letter-spacing:305.647580px;}
.ls3{letter-spacing:312.480201px;}
.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;}
}
.ws65{word-spacing:-312.480201px;}
.ws99{word-spacing:-305.647580px;}
.ws68{word-spacing:-300.975480px;}
.ws70{word-spacing:-300.926010px;}
.ws6c{word-spacing:-272.183940px;}
.ws72{word-spacing:-271.986090px;}
.ws6b{word-spacing:-271.986030px;}
.ws85{word-spacing:-132.608725px;}
.ws86{word-spacing:-103.338994px;}
.ws9b{word-spacing:-77.087128px;}
.ws82{word-spacing:-65.992980px;}
.ws9d{word-spacing:-64.383973px;}
.ws2{word-spacing:-54.000000px;}
.ws9e{word-spacing:-51.680819px;}
.ws9f{word-spacing:-51.635124px;}
.wsbe{word-spacing:-48.000000px;}
.ws6f{word-spacing:-40.268580px;}
.ws1{word-spacing:-18.288000px;}
.wsbf{word-spacing:-16.061604px;}
.wse1{word-spacing:-15.510000px;}
.ws6a{word-spacing:-13.752660px;}
.ws0{word-spacing:-12.690000px;}
.wsb5{word-spacing:-12.150000px;}
.ws66{word-spacing:-11.280000px;}
.ws83{word-spacing:-10.800000px;}
.wsad{word-spacing:-10.746360px;}
.wsd5{word-spacing:-10.560000px;}
.ws3{word-spacing:-9.870000px;}
.ws6{word-spacing:-9.450000px;}
.ws4{word-spacing:-8.248500px;}
.wsbd{word-spacing:-7.761323px;}
.ws5{word-spacing:-7.332000px;}
.wse6{word-spacing:-3.653996px;}
.wse7{word-spacing:-3.486000px;}
.ws30{word-spacing:-3.402000px;}
.ws95{word-spacing:-2.916000px;}
.wse{word-spacing:-2.856000px;}
.ws37{word-spacing:-2.604000px;}
.wsc1{word-spacing:-2.592000px;}
.ws41{word-spacing:-2.538000px;}
.ws3e{word-spacing:-2.484000px;}
.wsc6{word-spacing:-2.430000px;}
.wsce{word-spacing:-2.376000px;}
.ws2f{word-spacing:-2.321995px;}
.ws1f{word-spacing:-2.268000px;}
.wsaf{word-spacing:-2.214000px;}
.ws48{word-spacing:-2.160000px;}
.ws93{word-spacing:-2.106000px;}
.wsf6{word-spacing:-2.100000px;}
.ws32{word-spacing:-2.052000px;}
.ws8b{word-spacing:-1.998000px;}
.ws25{word-spacing:-1.944000px;}
.ws96{word-spacing:-1.890000px;}
.wse8{word-spacing:-1.848000px;}
.wscb{word-spacing:-1.782000px;}
.ws24{word-spacing:-1.728000px;}
.ws11e{word-spacing:-1.680000px;}
.ws2d{word-spacing:-1.674000px;}
.wsfe{word-spacing:-1.638000px;}
.wsc{word-spacing:-1.620000px;}
.wsc5{word-spacing:-1.566000px;}
.wsff{word-spacing:-1.554000px;}
.wsb2{word-spacing:-1.458000px;}
.ws80{word-spacing:-1.404000px;}
.ws120{word-spacing:-1.386000px;}
.ws42{word-spacing:-1.350000px;}
.ws7c{word-spacing:-1.296000px;}
.ws10{word-spacing:-1.242000px;}
.wsfa{word-spacing:-1.218000px;}
.ws90{word-spacing:-1.188000px;}
.wsfb{word-spacing:-1.176000px;}
.ws3c{word-spacing:-1.134000px;}
.wsd{word-spacing:-1.080000px;}
.wsa6{word-spacing:-1.026000px;}
.ws125{word-spacing:-1.008000px;}
.wsc2{word-spacing:-0.972000px;}
.ws126{word-spacing:-0.966000px;}
.wse0{word-spacing:-0.960000px;}
.ws103{word-spacing:-0.924000px;}
.ws1c{word-spacing:-0.918000px;}
.ws127{word-spacing:-0.882000px;}
.ws59{word-spacing:-0.864000px;}
.ws15{word-spacing:-0.810000px;}
.ws29{word-spacing:-0.756000px;}
.wseb{word-spacing:-0.714000px;}
.ws5c{word-spacing:-0.702000px;}
.ws124{word-spacing:-0.672000px;}
.ws33{word-spacing:-0.648000px;}
.ws113{word-spacing:-0.630000px;}
.ws7b{word-spacing:-0.594000px;}
.wsae{word-spacing:-0.591050px;}
.ws11f{word-spacing:-0.588000px;}
.ws129{word-spacing:-0.546000px;}
.ws3b{word-spacing:-0.540000px;}
.wsf5{word-spacing:-0.504000px;}
.ws64{word-spacing:-0.486000px;}
.wsf3{word-spacing:-0.462000px;}
.wsc0{word-spacing:-0.432000px;}
.wsea{word-spacing:-0.420000px;}
.ws61{word-spacing:-0.378000px;}
.ws31{word-spacing:-0.324000px;}
.wsca{word-spacing:-0.270000px;}
.ws10e{word-spacing:-0.252000px;}
.wsb3{word-spacing:-0.216000px;}
.ws12d{word-spacing:-0.210000px;}
.wsf{word-spacing:-0.162000px;}
.ws50{word-spacing:-0.108000px;}
.wse9{word-spacing:-0.084000px;}
.wsb7{word-spacing:-0.054000px;}
.ws9a{word-spacing:-0.053732px;}
.ws5d{word-spacing:-0.050457px;}
.ws76{word-spacing:-0.048000px;}
.ws10f{word-spacing:-0.042000px;}
.ws5e{word-spacing:-0.037843px;}
.ws8{word-spacing:0.000000px;}
.ws2a{word-spacing:0.054000px;}
.ws3f{word-spacing:0.108000px;}
.ws97{word-spacing:0.162000px;}
.ws112{word-spacing:0.168000px;}
.wsa{word-spacing:0.216000px;}
.wsfc{word-spacing:0.252000px;}
.ws5f{word-spacing:0.270000px;}
.ws1e{word-spacing:0.324000px;}
.ws5b{word-spacing:0.378000px;}
.ws10b{word-spacing:0.420000px;}
.ws54{word-spacing:0.432000px;}
.ws104{word-spacing:0.462000px;}
.wsbc{word-spacing:0.485082px;}
.ws7a{word-spacing:0.486000px;}
.ws13{word-spacing:0.540000px;}
.wsef{word-spacing:0.588000px;}
.ws75{word-spacing:0.594000px;}
.ws10d{word-spacing:0.630000px;}
.ws55{word-spacing:0.648000px;}
.ws10c{word-spacing:0.672000px;}
.ws26{word-spacing:0.702000px;}
.wsd0{word-spacing:0.756000px;}
.wsf7{word-spacing:0.798000px;}
.ws57{word-spacing:0.810000px;}
.ws22{word-spacing:0.864000px;}
.ws115{word-spacing:0.882000px;}
.wsb6{word-spacing:0.918000px;}
.ws114{word-spacing:0.924000px;}
.ws7f{word-spacing:0.972000px;}
.ws34{word-spacing:1.026000px;}
.ws105{word-spacing:1.050000px;}
.ws28{word-spacing:1.080000px;}
.ws3a{word-spacing:1.134000px;}
.ws19{word-spacing:1.188000px;}
.ws44{word-spacing:1.242000px;}
.ws53{word-spacing:1.296000px;}
.ws128{word-spacing:1.302000px;}
.wsfd{word-spacing:1.344000px;}
.ws1b{word-spacing:1.350000px;}
.ws43{word-spacing:1.404000px;}
.wsf4{word-spacing:1.428000px;}
.wsd4{word-spacing:1.458000px;}
.wsf2{word-spacing:1.470000px;}
.ws2e{word-spacing:1.512000px;}
.wsec{word-spacing:1.554000px;}
.ws51{word-spacing:1.566000px;}
.ws1a{word-spacing:1.620000px;}
.ws100{word-spacing:1.638000px;}
.ws20{word-spacing:1.674000px;}
.ws89{word-spacing:1.728000px;}
.ws11b{word-spacing:1.764000px;}
.ws3d{word-spacing:1.782000px;}
.ws106{word-spacing:1.805996px;}
.ws45{word-spacing:1.836000px;}
.ws110{word-spacing:1.848000px;}
.ws27{word-spacing:1.890000px;}
.ws5a{word-spacing:1.944000px;}
.ws81{word-spacing:1.998000px;}
.ws63{word-spacing:2.052000px;}
.ws108{word-spacing:2.100000px;}
.ws40{word-spacing:2.106000px;}
.ws4f{word-spacing:2.160000px;}
.ws107{word-spacing:2.184000px;}
.ws36{word-spacing:2.214000px;}
.ws17{word-spacing:2.268000px;}
.ws58{word-spacing:2.321995px;}
.ws39{word-spacing:2.376000px;}
.ws8c{word-spacing:2.430000px;}
.ws7e{word-spacing:2.484000px;}
.ws11c{word-spacing:2.520000px;}
.wsb4{word-spacing:2.538000px;}
.wsd2{word-spacing:2.592000px;}
.ws121{word-spacing:2.604000px;}
.wsb1{word-spacing:2.646000px;}
.ws111{word-spacing:2.688000px;}
.ws7d{word-spacing:2.700000px;}
.ws116{word-spacing:2.730000px;}
.ws11{word-spacing:2.753995px;}
.ws118{word-spacing:2.772000px;}
.wsb0{word-spacing:2.808000px;}
.wsb9{word-spacing:2.862000px;}
.wsed{word-spacing:2.898000px;}
.wsa0{word-spacing:2.970000px;}
.ws117{word-spacing:2.981996px;}
.wsb{word-spacing:3.024000px;}
.ws12c{word-spacing:3.066000px;}
.ws1d{word-spacing:3.078000px;}
.wsa2{word-spacing:3.132000px;}
.ws11a{word-spacing:3.150000px;}
.ws98{word-spacing:3.186000px;}
.ws18{word-spacing:3.240000px;}
.ws92{word-spacing:3.294000px;}
.ws4d{word-spacing:3.348000px;}
.ws12b{word-spacing:3.360000px;}
.ws4c{word-spacing:3.402000px;}
.ws56{word-spacing:3.456000px;}
.ws74{word-spacing:3.510000px;}
.ws12a{word-spacing:3.528000px;}
.ws62{word-spacing:3.564000px;}
.ws10a{word-spacing:3.611996px;}
.ws46{word-spacing:3.618000px;}
.ws12{word-spacing:3.672000px;}
.wsf1{word-spacing:3.696000px;}
.ws73{word-spacing:3.726000px;}
.wsc4{word-spacing:3.780000px;}
.wsf0{word-spacing:3.822000px;}
.ws14{word-spacing:3.888000px;}
.ws9{word-spacing:3.942000px;}
.ws119{word-spacing:3.990000px;}
.ws4a{word-spacing:3.996000px;}
.wsba{word-spacing:4.050000px;}
.wsa4{word-spacing:4.158000px;}
.wsc9{word-spacing:4.212000px;}
.ws2b{word-spacing:4.320000px;}
.ws4b{word-spacing:4.374000px;}
.ws11d{word-spacing:4.410000px;}
.ws47{word-spacing:4.428000px;}
.ws94{word-spacing:4.482000px;}
.ws60{word-spacing:4.536000px;}
.ws21{word-spacing:4.590000px;}
.wsbb{word-spacing:4.643995px;}
.wscd{word-spacing:4.697995px;}
.ws16{word-spacing:4.752000px;}
.ws8f{word-spacing:4.806000px;}
.wsc7{word-spacing:4.860000px;}
.wsb8{word-spacing:5.022000px;}
.wscf{word-spacing:5.076000px;}
.wsc8{word-spacing:5.184000px;}
.wscc{word-spacing:5.238000px;}
.wsa5{word-spacing:5.292000px;}
.wsc3{word-spacing:5.400000px;}
.ws49{word-spacing:5.562000px;}
.ws109{word-spacing:5.628000px;}
.ws88{word-spacing:5.778000px;}
.ws8e{word-spacing:5.832000px;}
.ws79{word-spacing:5.837460px;}
.ws78{word-spacing:5.886900px;}
.wsd1{word-spacing:5.940000px;}
.ws87{word-spacing:5.994000px;}
.ws35{word-spacing:6.264000px;}
.ws4e{word-spacing:6.372000px;}
.wsf9{word-spacing:6.384000px;}
.ws8a{word-spacing:6.426000px;}
.wsf8{word-spacing:6.678000px;}
.wsd3{word-spacing:7.020000px;}
.wsa1{word-spacing:7.128000px;}
.ws8d{word-spacing:7.182000px;}
.ws38{word-spacing:7.236000px;}
.wsa3{word-spacing:7.398000px;}
.ws91{word-spacing:7.452000px;}
.ws102{word-spacing:7.980000px;}
.ws101{word-spacing:8.316000px;}
.wsee{word-spacing:8.904000px;}
.ws52{word-spacing:9.288000px;}
.ws71{word-spacing:12.763260px;}
.ws6e{word-spacing:12.812760px;}
.ws2c{word-spacing:14.310000px;}
.ws23{word-spacing:14.580000px;}
.ws123{word-spacing:16.884000px;}
.ws7{word-spacing:17.490000px;}
.ws122{word-spacing:17.640000px;}
.ws77{word-spacing:23.349840px;}
.ws9c{word-spacing:26.274528px;}
.ws84{word-spacing:59.434418px;}
.wsac{word-spacing:60.125884px;}
.wsa8{word-spacing:60.663202px;}
.wsaa{word-spacing:61.737838px;}
.wsd8{word-spacing:97.392000px;}
.wsa7{word-spacing:98.436658px;}
.wsd9{word-spacing:99.024000px;}
.wsa9{word-spacing:100.048612px;}
.ws69{word-spacing:116.798700px;}
.wse4{word-spacing:119.472000px;}
.wsdd{word-spacing:120.864000px;}
.wsab{word-spacing:124.765240px;}
.wsdc{word-spacing:144.624000px;}
.wsdb{word-spacing:203.136000px;}
.wsde{word-spacing:204.624000px;}
.wse5{word-spacing:208.272000px;}
.wsdf{word-spacing:211.296000px;}
.wsd7{word-spacing:214.128000px;}
.wse3{word-spacing:241.392000px;}
.ws6d{word-spacing:244.728120px;}
.wsda{word-spacing:245.616000px;}
.ws67{word-spacing:258.975420px;}
.wsd6{word-spacing:339.603000px;}
.wse2{word-spacing:490.416000px;}
._d{margin-left:-287.222820px;}
._f{margin-left:-258.431280px;}
._1e{margin-left:-247.870080px;}
._1d{margin-left:-219.034650px;}
._1c{margin-left:-164.311844px;}
._1b{margin-left:-139.595216px;}
._1a{margin-left:-137.983262px;}
._14{margin-left:-117.973840px;}
._15{margin-left:-88.704119px;}
._18{margin-left:-51.726523px;}
._19{margin-left:-38.977646px;}
._11{margin-left:-26.515980px;}
._17{margin-left:-12.703128px;}
._a{margin-left:-9.870000px;}
._7{margin-left:-6.300000px;}
._34{margin-left:-5.091600px;}
._2{margin-left:-4.066200px;}
._6{margin-left:-2.700000px;}
._1{margin-left:-1.620000px;}
._5{width:1.047600px;}
._3{width:2.430000px;}
._4{width:3.823200px;}
._b{width:5.702400px;}
._16{width:7.057800px;}
._0{width:14.310000px;}
._c{width:17.490000px;}
._9{width:24.948000px;}
._12{width:33.590160px;}
._10{width:40.268580px;}
._8{width:51.018600px;}
._23{width:79.824000px;}
._13{width:110.603754px;}
._26{width:126.900000px;}
._e{width:145.095480px;}
._2c{width:168.948000px;}
._2a{width:173.122200px;}
._24{width:175.260000px;}
._21{width:196.020000px;}
._29{width:198.768000px;}
._27{width:203.460000px;}
._25{width:205.728000px;}
._22{width:214.884000px;}
._31{width:215.904000px;}
._2f{width:221.040000px;}
._32{width:224.064000px;}
._28{width:231.804000px;}
._2e{width:247.824000px;}
._36{width:253.440000px;}
._30{width:256.896000px;}
._1f{width:359.309400px;}
._20{width:373.878000px;}
._33{width:498.960000px;}
._35{width:502.416000px;}
._2d{width:522.720000px;}
._2b{width:725.106600px;}
.fc6{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(123,124,127);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(88,89,91);}
.fc0{color:rgb(0,65,116);}
.fs14{font-size:30.387000px;}
.fs6{font-size:31.200000px;}
.fsc{font-size:33.554400px;}
.fs15{font-size:34.271400px;}
.fs5{font-size:35.100000px;}
.fsb{font-size:37.843200px;}
.fs3{font-size:42.000000px;}
.fs12{font-size:45.694800px;}
.fs18{font-size:47.909400px;}
.fs7{font-size:48.000000px;}
.fsd{font-size:49.470000px;}
.fs16{font-size:50.127484px;}
.fsa{font-size:50.457000px;}
.fs17{font-size:50.634095px;}
.fsf{font-size:52.643400px;}
.fs11{font-size:53.731800px;}
.fs19{font-size:53.898000px;}
.fs1{font-size:54.000000px;}
.fs10{font-size:56.787632px;}
.fs9{font-size:60.000000px;}
.fs13{font-size:61.002600px;}
.fs0{font-size:66.000000px;}
.fse{font-size:66.042000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y24e{bottom:1.515150px;}
.y22e{bottom:1.515300px;}
.y1a4{bottom:2.570850px;}
.y11b{bottom:2.782950px;}
.yed{bottom:2.836125px;}
.y166{bottom:2.963100px;}
.y2fd{bottom:3.148650px;}
.y224{bottom:3.150150px;}
.y243{bottom:3.150300px;}
.y1ec{bottom:3.165150px;}
.y2d6{bottom:3.165300px;}
.y231{bottom:3.538800px;}
.y170{bottom:3.540000px;}
.y1cf{bottom:3.540150px;}
.y239{bottom:3.540300px;}
.y327{bottom:6.540150px;}
.yec{bottom:20.433000px;}
.y17e{bottom:33.511500px;}
.yc6{bottom:33.511650px;}
.y21e{bottom:33.513000px;}
.y26{bottom:33.513150px;}
.y1e9{bottom:33.514500px;}
.y23e{bottom:33.514800px;}
.y12b{bottom:33.525450px;}
.y284{bottom:33.532650px;}
.y83{bottom:33.537150px;}
.y101{bottom:33.567450px;}
.ydc{bottom:33.574650px;}
.yb0{bottom:33.597150px;}
.y2d2{bottom:33.696150px;}
.y155{bottom:33.714150px;}
.y162{bottom:75.218100px;}
.y17d{bottom:75.750000px;}
.y1e7{bottom:77.346000px;}
.ye4{bottom:78.750000px;}
.y17c{bottom:78.777000px;}
.y21d{bottom:78.967500px;}
.y154{bottom:79.168650px;}
.y100{bottom:80.088450px;}
.y1e8{bottom:80.346000px;}
.y1e6{bottom:80.355000px;}
.y283{bottom:80.485650px;}
.yaf{bottom:80.550150px;}
.yc5{bottom:80.644650px;}
.ydb{bottom:83.227650px;}
.y3b3{bottom:84.036000px;}
.ye3{bottom:93.750000px;}
.y21b{bottom:93.963000px;}
.y2f4{bottom:93.966000px;}
.y82{bottom:93.990150px;}
.y2c{bottom:94.998300px;}
.y6{bottom:95.029800px;}
.y12a{bottom:95.058450px;}
.y17b{bottom:96.772500px;}
.y21c{bottom:96.963000px;}
.y2f3{bottom:96.966000px;}
.y21a{bottom:96.999000px;}
.y153{bottom:97.164150px;}
.y3b2{bottom:97.539000px;}
.yea{bottom:97.558650px;}
.yff{bottom:98.083950px;}
.y1e5{bottom:98.350500px;}
.y282{bottom:98.481150px;}
.yae{bottom:98.545650px;}
.yc4{bottom:98.640150px;}
.y34f{bottom:99.210450px;}
.yda{bottom:101.223150px;}
.y1b8{bottom:108.491850px;}
.y2b{bottom:108.501300px;}
.ye2{bottom:108.750000px;}
.y3b1{bottom:111.042000px;}
.y2f2{bottom:111.966000px;}
.y81{bottom:111.985650px;}
.y34e{bottom:112.713450px;}
.y5{bottom:113.025300px;}
.y129{bottom:113.053950px;}
.y1e3{bottom:113.346000px;}
.y17a{bottom:114.768000px;}
.y219{bottom:114.994500px;}
.y152{bottom:115.159650px;}
.yfe{bottom:116.079450px;}
.y1a6{bottom:116.111850px;}
.y1e4{bottom:116.346000px;}
.y1e2{bottom:116.350500px;}
.y281{bottom:116.476650px;}
.yad{bottom:116.541150px;}
.yc3{bottom:116.635650px;}
.y2d1{bottom:116.640150px;}
.yd9{bottom:119.218650px;}
.y2a{bottom:122.004300px;}
.ye1{bottom:123.750000px;}
.y3b0{bottom:124.545000px;}
.y34d{bottom:126.216450px;}
.y2f1{bottom:126.966000px;}
.y80{bottom:129.981150px;}
.y4{bottom:131.020800px;}
.y128{bottom:131.049450px;}
.y1e0{bottom:131.346000px;}
.y179{bottom:132.763500px;}
.y218{bottom:132.990000px;}
.y151{bottom:133.155150px;}
.yfd{bottom:134.074950px;}
.y1e1{bottom:134.346000px;}
.y1df{bottom:134.364000px;}
.y280{bottom:134.472150px;}
.yc2{bottom:134.631150px;}
.y2d0{bottom:134.635650px;}
.y29{bottom:135.507300px;}
.yd8{bottom:137.214150px;}
.y3af{bottom:138.048000px;}
.ye0{bottom:138.750000px;}
.y34c{bottom:139.719450px;}
.yac{bottom:145.039650px;}
.y7f{bottom:147.976650px;}
.y28{bottom:149.010300px;}
.y3{bottom:149.016300px;}
.y127{bottom:149.044950px;}
.y178{bottom:150.759000px;}
.y217{bottom:150.985500px;}
.y150{bottom:151.150650px;}
.y3ae{bottom:151.551000px;}
.yfc{bottom:152.070450px;}
.y1de{bottom:152.359500px;}
.y27f{bottom:152.467650px;}
.yc1{bottom:152.626650px;}
.y2cf{bottom:152.631150px;}
.y34b{bottom:153.222450px;}
.yd7{bottom:155.209650px;}
.y2ec{bottom:156.159150px;}
.y323{bottom:158.944800px;}
.y27{bottom:162.513300px;}
.yab{bottom:163.035150px;}
.y3ad{bottom:165.054000px;}
.y7e{bottom:165.972150px;}
.y34a{bottom:166.725450px;}
.y126{bottom:167.073450px;}
.ye9{bottom:167.394000px;}
.y2eb{bottom:168.159000px;}
.y177{bottom:168.754500px;}
.y216{bottom:168.981000px;}
.y14f{bottom:169.146150px;}
.y1dd{bottom:170.355000px;}
.y27e{bottom:170.463150px;}
.y2fc{bottom:170.620500px;}
.yc0{bottom:170.622150px;}
.y2ce{bottom:170.626650px;}
.y2ea{bottom:171.159150px;}
.yd6{bottom:173.205150px;}
.y2fb{bottom:173.619150px;}
.y116{bottom:174.477300px;}
.y11d{bottom:174.478800px;}
.y2{bottom:176.016300px;}
.y3ac{bottom:178.557000px;}
.y2f8{bottom:179.019150px;}
.yfb{bottom:179.070450px;}
.y322{bottom:180.088800px;}
.y349{bottom:180.228450px;}
.yaa{bottom:181.030650px;}
.y175{bottom:183.750000px;}
.y7d{bottom:183.967650px;}
.y125{bottom:185.068950px;}
.y160{bottom:185.674800px;}
.y164{bottom:185.676300px;}
.y2e9{bottom:186.159150px;}
.y176{bottom:186.750000px;}
.y174{bottom:186.763500px;}
.y215{bottom:186.976500px;}
.y14e{bottom:187.141650px;}
.yeb{bottom:187.827000px;}
.y1dc{bottom:188.350500px;}
.ybf{bottom:188.617650px;}
.y2fa{bottom:188.619150px;}
.y2f7{bottom:191.019000px;}
.yd5{bottom:191.200650px;}
.y3ab{bottom:192.060000px;}
.y2e0{bottom:192.273000px;}
.y348{bottom:193.731450px;}
.y2f6{bottom:194.019150px;}
.y2e8{bottom:195.246000px;}
.y2df{bottom:195.273150px;}
.y27d{bottom:197.463150px;}
.ya9{bottom:199.026150px;}
.y2cd{bottom:199.125150px;}
.y321{bottom:201.232800px;}
.y1{bottom:201.516300px;}
.y7c{bottom:202.090650px;}
.ye5{bottom:202.772850px;}
.y124{bottom:203.064450px;}
.y1da{bottom:203.346000px;}
.y2f9{bottom:203.619150px;}
.y173{bottom:204.759000px;}
.y14d{bottom:205.137150px;}
.y3aa{bottom:205.563000px;}
.y1db{bottom:206.346000px;}
.y1d9{bottom:206.355000px;}
.ybe{bottom:206.613150px;}
.y347{bottom:207.234450px;}
.y2e7{bottom:207.246000px;}
.y2f5{bottom:209.019150px;}
.yd4{bottom:209.196150px;}
.y2e6{bottom:210.246000px;}
.y2de{bottom:210.273150px;}
.y214{bottom:213.976500px;}
.ya8{bottom:217.021650px;}
.y2cc{bottom:217.120650px;}
.y3a9{bottom:219.066000px;}
.y7b{bottom:220.086150px;}
.y346{bottom:220.737450px;}
.y123{bottom:221.059950px;}
.y320{bottom:222.376800px;}
.yfa{bottom:222.567450px;}
.y172{bottom:222.754500px;}
.y14c{bottom:223.132650px;}
.y1d8{bottom:224.350500px;}
.ybd{bottom:224.608650px;}
.y2e5{bottom:225.246000px;}
.y2dd{bottom:225.273150px;}
.yd3{bottom:227.191650px;}
.y213{bottom:231.972000px;}
.y3a8{bottom:232.569000px;}
.y345{bottom:234.240450px;}
.ya7{bottom:235.017150px;}
.y2cb{bottom:235.116150px;}
.y16f{bottom:237.750000px;}
.y7a{bottom:238.081650px;}
.y122{bottom:239.055450px;}
.y1d6{bottom:239.346000px;}
.yf9{bottom:240.562950px;}
.y171{bottom:240.750000px;}
.y14b{bottom:241.128150px;}
.y1d7{bottom:242.346000px;}
.y1d5{bottom:242.355000px;}
.ybc{bottom:242.604150px;}
.y31f{bottom:243.520800px;}
.yd2{bottom:245.187150px;}
.ye6{bottom:245.345940px;}
.y3a7{bottom:246.072000px;}
.y344{bottom:247.743450px;}
.y25{bottom:249.388800px;}
.y212{bottom:249.967500px;}
.ya6{bottom:253.012650px;}
.y2a5{bottom:253.029150px;}
.y27c{bottom:253.065150px;}
.y2ca{bottom:253.111650px;}
.y79{bottom:256.077150px;}
.y121{bottom:257.050950px;}
.yf8{bottom:258.558450px;}
.y16e{bottom:258.775500px;}
.y3a6{bottom:259.575000px;}
.y1d4{bottom:260.350500px;}
.ybb{bottom:260.599650px;}
.y343{bottom:261.246450px;}
.yd1{bottom:263.182650px;}
.y31e{bottom:264.664800px;}
.y210{bottom:264.963000px;}
.y24{bottom:267.384300px;}
.y211{bottom:267.963000px;}
.y14a{bottom:268.128150px;}
.ya5{bottom:271.008150px;}
.y2a4{bottom:271.024650px;}
.y27b{bottom:271.060650px;}
.y2c9{bottom:271.107150px;}
.y3a5{bottom:273.078000px;}
.y78{bottom:274.072650px;}
.y342{bottom:274.749450px;}
.y120{bottom:275.046450px;}
.y1d2{bottom:275.346000px;}
.yf7{bottom:276.553950px;}
.y16d{bottom:276.771000px;}
.y1d3{bottom:278.346000px;}
.y1d1{bottom:278.350650px;}
.yba{bottom:278.595150px;}
.yd0{bottom:281.178150px;}
.y23{bottom:285.379800px;}
.y31d{bottom:285.808800px;}
.y20f{bottom:285.999150px;}
.y149{bottom:286.123650px;}
.y3a4{bottom:286.581000px;}
.ye7{bottom:287.919045px;}
.yf3{bottom:288.106635px;}
.y341{bottom:288.252450px;}
.ya4{bottom:289.003650px;}
.y2a3{bottom:289.020150px;}
.y77{bottom:292.068150px;}
.y1ce{bottom:293.346000px;}
.yf6{bottom:294.549450px;}
.y16c{bottom:294.766500px;}
.y1d0{bottom:296.346150px;}
.y1cd{bottom:296.412150px;}
.yb9{bottom:296.590650px;}
.yf2{bottom:297.317310px;}
.ycf{bottom:299.173650px;}
.y27a{bottom:299.559150px;}
.y2c8{bottom:299.605650px;}
.y3a3{bottom:300.084000px;}
.y340{bottom:301.755450px;}
.y22{bottom:303.375300px;}
.y11f{bottom:303.544950px;}
.y20e{bottom:303.994650px;}
.y148{bottom:304.119150px;}
.yf1{bottom:306.586710px;}
.y31c{bottom:306.952800px;}
.ya3{bottom:306.999150px;}
.y2a2{bottom:307.015650px;}
.y76{bottom:310.063650px;}
.yf5{bottom:312.544950px;}
.y16b{bottom:312.762000px;}
.y3a2{bottom:313.587000px;}
.y1cc{bottom:314.407650px;}
.yb8{bottom:314.586150px;}
.y33f{bottom:315.258450px;}
.yf0{bottom:315.856110px;}
.yce{bottom:317.169150px;}
.y279{bottom:317.554650px;}
.y2c7{bottom:317.601150px;}
.y21{bottom:321.370800px;}
.y11e{bottom:321.540450px;}
.y20d{bottom:321.990150px;}
.y147{bottom:322.114650px;}
.ya2{bottom:324.994650px;}
.y2a1{bottom:325.011150px;}
.yef{bottom:325.066800px;}
.y2f0{bottom:325.959000px;}
.y3a1{bottom:327.090000px;}
.y75{bottom:328.059150px;}
.y31b{bottom:328.096800px;}
.y33e{bottom:328.761450px;}
.y2ef{bottom:328.959150px;}
.ye8{bottom:330.492135px;}
.yf4{bottom:330.540450px;}
.y1cb{bottom:332.403150px;}
.yb7{bottom:332.581650px;}
.yee{bottom:334.653450px;}
.ycd{bottom:335.164650px;}
.y278{bottom:335.550150px;}
.y2c6{bottom:335.596650px;}
.y20{bottom:339.366300px;}
.y16a{bottom:339.762000px;}
.y146{bottom:340.110150px;}
.y3a0{bottom:340.593000px;}
.y33d{bottom:342.264450px;}
.ya1{bottom:342.990150px;}
.y2ee{bottom:343.959150px;}
.y20c{bottom:348.990150px;}
.y31a{bottom:349.240800px;}
.y2a0{bottom:353.509650px;}
.y277{bottom:353.545650px;}
.y2c5{bottom:353.592150px;}
.y39f{bottom:354.096000px;}
.y74{bottom:355.059150px;}
.y33c{bottom:355.767450px;}
.y1f{bottom:357.361800px;}
.y145{bottom:358.105650px;}
.y2ed{bottom:358.959150px;}
.y1ca{bottom:359.403150px;}
.yb6{bottom:359.581650px;}
.ya0{bottom:360.985650px;}
.ycc{bottom:362.164650px;}
.y20b{bottom:366.985650px;}
.y39e{bottom:367.599000px;}
.y105{bottom:367.827450px;}
.y23c{bottom:368.718000px;}
.y33b{bottom:369.270450px;}
.y319{bottom:370.384800px;}
.y29f{bottom:371.505150px;}
.y276{bottom:371.541150px;}
.y2c4{bottom:371.587650px;}
.y23d{bottom:371.716800px;}
.y23b{bottom:371.725800px;}
.y1af{bottom:375.145350px;}
.y1e{bottom:375.357300px;}
.y144{bottom:376.101150px;}
.y1c9{bottom:377.398650px;}
.yb5{bottom:377.577150px;}
.y9f{bottom:378.981150px;}
.y39d{bottom:381.102000px;}
.y33a{bottom:382.773450px;}
.y104{bottom:382.827450px;}
.y169{bottom:383.259000px;}
.y20a{bottom:384.981150px;}
.y196{bottom:385.940850px;}
.y29e{bottom:389.500650px;}
.y2c3{bottom:389.583150px;}
.y23a{bottom:389.721300px;}
.y318{bottom:391.528800px;}
.y1d{bottom:393.352800px;}
.y143{bottom:394.096650px;}
.y39c{bottom:394.605000px;}
.y1c8{bottom:395.394150px;}
.yb4{bottom:395.572650px;}
.y339{bottom:396.276450px;}
.y9e{bottom:396.976650px;}
.y103{bottom:397.827450px;}
.y275{bottom:400.039650px;}
.y168{bottom:401.254500px;}
.y209{bottom:402.976650px;}
.y238{bottom:404.716500px;}
.y236{bottom:406.216500px;}
.ycb{bottom:407.169150px;}
.y29d{bottom:407.496150px;}
.y237{bottom:407.716800px;}
.y235{bottom:407.734800px;}
.y39b{bottom:408.108000px;}
.y73{bottom:409.059150px;}
.y338{bottom:409.779450px;}
.y1c{bottom:411.348300px;}
.y142{bottom:412.092150px;}
.y317{bottom:412.672800px;}
.y102{bottom:412.827450px;}
.y1c7{bottom:413.389650px;}
.yb3{bottom:413.568150px;}
.y9d{bottom:414.972150px;}
.y274{bottom:418.035150px;}
.y2c2{bottom:418.081650px;}
.y36b{bottom:418.863150px;}
.y167{bottom:419.250000px;}
.y208{bottom:420.972150px;}
.y39a{bottom:421.611000px;}
.y337{bottom:423.282450px;}
.yca{bottom:425.164650px;}
.y29c{bottom:425.491650px;}
.y234{bottom:425.730300px;}
.y72{bottom:427.054650px;}
.y1b{bottom:429.343800px;}
.y141{bottom:430.087650px;}
.y1c6{bottom:431.385150px;}
.yb2{bottom:431.563650px;}
.y36a{bottom:432.366150px;}
.y9c{bottom:432.967650px;}
.y316{bottom:433.816800px;}
.y399{bottom:435.114000px;}
.y273{bottom:436.030650px;}
.y2c1{bottom:436.077150px;}
.y336{bottom:436.785450px;}
.y207{bottom:438.967650px;}
.y109{bottom:441.471000px;}
.y233{bottom:443.725800px;}
.y71{bottom:445.050150px;}
.y369{bottom:445.869150px;}
.y1a{bottom:447.339300px;}
.y140{bottom:448.083150px;}
.y398{bottom:448.617000px;}
.yb1{bottom:449.559150px;}
.y335{bottom:450.288450px;}
.y9b{bottom:450.963150px;}
.y205{bottom:453.963000px;}
.y29b{bottom:453.990150px;}
.y272{bottom:454.026150px;}
.y2c0{bottom:454.072650px;}
.y315{bottom:454.960800px;}
.y206{bottom:456.963150px;}
.y204{bottom:456.981150px;}
.y1c5{bottom:458.385150px;}
.y368{bottom:459.372150px;}
.y232{bottom:461.721300px;}
.y11a{bottom:461.817300px;}
.y397{bottom:462.120000px;}
.y70{bottom:463.045650px;}
.y334{bottom:463.791450px;}
.y181{bottom:464.516850px;}
.y13f{bottom:466.078650px;}
.ydf{bottom:466.866000px;}
.y29a{bottom:471.985650px;}
.y271{bottom:472.021650px;}
.y2bf{bottom:472.068150px;}
.y367{bottom:472.875150px;}
.y203{bottom:474.976650px;}
.y396{bottom:475.623000px;}
.y314{bottom:476.104800px;}
.y230{bottom:476.718000px;}
.y333{bottom:477.294450px;}
.y9a{bottom:477.963150px;}
.y22d{bottom:478.216500px;}
.y180{bottom:479.516850px;}
.y22f{bottom:479.716800px;}
.y19{bottom:480.120300px;}
.y6f{bottom:481.041150px;}
.yde{bottom:481.866000px;}
.y13e{bottom:484.074150px;}
.y10a{bottom:484.159800px;}
.y111{bottom:484.160400px;}
.y366{bottom:486.378150px;}
.yc9{bottom:486.846150px;}
.y395{bottom:489.126000px;}
.y299{bottom:489.981150px;}
.y270{bottom:490.017150px;}
.y2be{bottom:490.063650px;}
.y332{bottom:490.797450px;}
.y17f{bottom:494.516850px;}
.y118{bottom:494.902800px;}
.ydd{bottom:496.866000px;}
.y313{bottom:497.248800px;}
.y22c{bottom:497.739300px;}
.y18{bottom:498.115800px;}
.y6e{bottom:499.036650px;}
.y365{bottom:499.881150px;}
.yc8{bottom:501.846150px;}
.y1c4{bottom:501.882150px;}
.y202{bottom:501.976650px;}
.y394{bottom:502.629000px;}
.y331{bottom:504.300450px;}
.y298{bottom:507.976650px;}
.y26f{bottom:508.012650px;}
.y2bd{bottom:508.059150px;}
.y13d{bottom:511.074150px;}
.y117{bottom:512.152800px;}
.y364{bottom:513.384150px;}
.y17{bottom:516.111300px;}
.y393{bottom:516.132000px;}
.yc7{bottom:516.846150px;}
.y6d{bottom:517.032150px;}
.y1ae{bottom:517.775850px;}
.y330{bottom:517.803450px;}
.y312{bottom:518.392800px;}
.y1c3{bottom:519.877650px;}
.y201{bottom:519.972150px;}
.y4f{bottom:521.356800px;}
.y195{bottom:523.161000px;}
.y22b{bottom:524.739300px;}
.y297{bottom:525.972150px;}
.y26e{bottom:526.008150px;}
.y2bc{bottom:526.054650px;}
.y363{bottom:526.887150px;}
.y13c{bottom:529.069650px;}
.y392{bottom:529.635000px;}
.y32f{bottom:531.306450px;}
.y99{bottom:533.578650px;}
.y16{bottom:534.106800px;}
.y4e{bottom:534.859800px;}
.y6c{bottom:535.027650px;}
.y1c2{bottom:537.873150px;}
.y200{bottom:537.967650px;}
.y311{bottom:539.536800px;}
.y362{bottom:540.390150px;}
.y1a3{bottom:541.664850px;}
.y22a{bottom:542.734800px;}
.y391{bottom:543.138000px;}
.y296{bottom:543.967650px;}
.y26d{bottom:544.003650px;}
.y2bb{bottom:544.050150px;}
.y32e{bottom:544.809450px;}
.y113{bottom:546.964800px;}
.y13b{bottom:547.065150px;}
.y98{bottom:551.574150px;}
.y15{bottom:552.102300px;}
.y1fe{bottom:552.963000px;}
.y6b{bottom:553.023150px;}
.y361{bottom:553.893150px;}
.y1c1{bottom:555.868650px;}
.y1ff{bottom:555.963150px;}
.y1fd{bottom:555.990150px;}
.y390{bottom:556.641000px;}
.y32d{bottom:558.312450px;}
.y294{bottom:558.963000px;}
.y310{bottom:560.680800px;}
.y229{bottom:560.730300px;}
.y295{bottom:561.963150px;}
.y26c{bottom:561.999150px;}
.y2ba{bottom:562.045650px;}
.y293{bottom:562.077150px;}
.y13a{bottom:565.060650px;}
.y4d{bottom:565.614300px;}
.y1ba{bottom:566.735850px;}
.y360{bottom:567.396150px;}
.y198{bottom:568.336350px;}
.y97{bottom:569.569650px;}
.y14{bottom:570.097800px;}
.y38f{bottom:570.144000px;}
.y6a{bottom:571.018650px;}
.y1b1{bottom:571.820850px;}
.y1c0{bottom:573.864150px;}
.y228{bottom:578.725800px;}
.y4c{bottom:579.117300px;}
.y26b{bottom:579.994650px;}
.y2b9{bottom:580.041150px;}
.y292{bottom:580.072650px;}
.y32c{bottom:580.812450px;}
.y35f{bottom:580.899150px;}
.y1fc{bottom:582.990150px;}
.y139{bottom:583.056150px;}
.y38e{bottom:583.647000px;}
.y30f{bottom:584.824800px;}
.y30c{bottom:584.824950px;}
.y96{bottom:587.565150px;}
.y13{bottom:588.093300px;}
.y69{bottom:589.014150px;}
.y199{bottom:589.584435px;}
.y1bf{bottom:591.859650px;}
.y4b{bottom:592.620300px;}
.y227{bottom:596.721300px;}
.y38d{bottom:597.150000px;}
.y26a{bottom:597.990150px;}
.y2b8{bottom:598.036650px;}
.y291{bottom:598.068150px;}
.y1fb{bottom:600.985650px;}
.y138{bottom:601.051650px;}
.y1b2{bottom:605.006700px;}
.y95{bottom:605.560650px;}
.y12{bottom:606.088800px;}
.y4a{bottom:606.123300px;}
.y30e{bottom:608.968800px;}
.y1be{bottom:609.855150px;}
.y38c{bottom:610.653000px;}
.y19a{bottom:610.775400px;}
.y226{bottom:614.716800px;}
.y269{bottom:615.985650px;}
.y2b7{bottom:616.032150px;}
.y290{bottom:616.063650px;}
.y68{bottom:617.512650px;}
.y1fa{bottom:618.981150px;}
.y137{bottom:619.047150px;}
.y49{bottom:619.626300px;}
.y2dc{bottom:620.313150px;}
.y11{bottom:624.084300px;}
.y38b{bottom:624.156000px;}
.y1bd{bottom:627.850650px;}
.y15b{bottom:628.286250px;}
.y1b9{bottom:628.475850px;}
.y114{bottom:629.085000px;}
.y32b{bottom:630.634050px;}
.y19b{bottom:631.966365px;}
.y2db{bottom:632.313000px;}
.y30d{bottom:633.112800px;}
.y48{bottom:633.129300px;}
.y268{bottom:633.981150px;}
.y2b6{bottom:634.027650px;}
.y94{bottom:634.059150px;}
.y2da{bottom:635.313150px;}
.y67{bottom:635.508150px;}
.y1f9{bottom:636.976650px;}
.y136{bottom:637.042650px;}
.y38a{bottom:637.659000px;}
.y1b3{bottom:638.249670px;}
.y1a2{bottom:639.272850px;}
.y10{bottom:642.079800px;}
.y1bc{bottom:642.846000px;}
.y15a{bottom:643.286250px;}
.y1bb{bottom:645.846150px;}
.y47{bottom:646.632300px;}
.y32a{bottom:648.629550px;}
.y326{bottom:649.869000px;}
.y2d9{bottom:650.313150px;}
.y389{bottom:651.162000px;}
.y267{bottom:651.976650px;}
.y24a{bottom:652.003800px;}
.y2b5{bottom:652.023150px;}
.y93{bottom:652.054650px;}
.y19c{bottom:653.157330px;}
.y66{bottom:653.503650px;}
.y1f8{bottom:654.972150px;}
.y135{bottom:655.038150px;}
.y325{bottom:656.319150px;}
.y159{bottom:658.286250px;}
.yf{bottom:660.075300px;}
.y46{bottom:660.135300px;}
.y2e4{bottom:661.299000px;}
.y2d8{bottom:662.313000px;}
.y2e3{bottom:664.299150px;}
.y388{bottom:664.665000px;}
.y2d7{bottom:665.313150px;}
.y329{bottom:666.625050px;}
.y249{bottom:667.003800px;}
.y266{bottom:669.972150px;}
.y2b4{bottom:670.018650px;}
.y92{bottom:670.050150px;}
.y324{bottom:671.319150px;}
.y1b4{bottom:671.435520px;}
.y65{bottom:671.499150px;}
.y1f7{bottom:672.967650px;}
.y134{bottom:673.033650px;}
.y158{bottom:673.286250px;}
.y19d{bottom:674.348280px;}
.y45{bottom:676.630800px;}
.y2d5{bottom:677.313000px;}
.ye{bottom:678.070800px;}
.y387{bottom:678.168000px;}
.y2e2{bottom:679.299150px;}
.y2d4{bottom:680.313150px;}
.y248{bottom:682.003800px;}
.y1f1{bottom:683.346150px;}
.y1f5{bottom:687.963000px;}
.y265{bottom:687.967650px;}
.y2b3{bottom:688.014150px;}
.y91{bottom:688.045650px;}
.y157{bottom:688.286250px;}
.y64{bottom:689.494650px;}
.y1f6{bottom:690.963150px;}
.y1f4{bottom:690.972150px;}
.y133{bottom:691.029150px;}
.y386{bottom:691.671000px;}
.y328{bottom:691.825050px;}
.y2e1{bottom:694.299150px;}
.y1f0{bottom:695.346000px;}
.y19e{bottom:695.539245px;}
.yd{bottom:696.066300px;}
.y247{bottom:697.003800px;}
.y1ef{bottom:698.346150px;}
.y263{bottom:702.963000px;}
.y156{bottom:703.286250px;}
.y1b5{bottom:704.678475px;}
.y385{bottom:705.174000px;}
.y264{bottom:705.963150px;}
.y262{bottom:705.967650px;}
.y2b2{bottom:706.009650px;}
.y90{bottom:706.041150px;}
.y63{bottom:707.490150px;}
.y1f3{bottom:708.967650px;}
.y246{bottom:709.003500px;}
.y132{bottom:709.024650px;}
.y1ee{bottom:710.346000px;}
.y115{bottom:711.205200px;}
.y245{bottom:712.003800px;}
.y1ed{bottom:713.346150px;}
.yc{bottom:714.061800px;}
.y44{bottom:714.126300px;}
.y19f{bottom:716.730210px;}
.y384{bottom:718.677000px;}
.y119{bottom:720.727800px;}
.y260{bottom:720.963000px;}
.y11c{bottom:723.703800px;}
.y261{bottom:723.963150px;}
.y25f{bottom:723.996150px;}
.y2b1{bottom:724.005150px;}
.y8f{bottom:724.036650px;}
.y1eb{bottom:725.346000px;}
.y62{bottom:725.485650px;}
.y1f2{bottom:726.963150px;}
.y244{bottom:727.003800px;}
.y131{bottom:727.020150px;}
.y43{bottom:727.629300px;}
.y1ea{bottom:728.346150px;}
.y15f{bottom:731.929500px;}
.yb{bottom:732.057300px;}
.y383{bottom:732.180000px;}
.y309{bottom:736.864800px;}
.y1b6{bottom:737.864325px;}
.y1a0{bottom:737.921175px;}
.y242{bottom:739.003500px;}
.y25e{bottom:741.991650px;}
.y2b0{bottom:742.000650px;}
.y241{bottom:742.003800px;}
.y8e{bottom:742.032150px;}
.y61{bottom:743.481150px;}
.y42{bottom:744.124800px;}
.y130{bottom:745.015650px;}
.y382{bottom:745.683000px;}
.y35e{bottom:746.395800px;}
.ya{bottom:750.052800px;}
.y165{bottom:753.582600px;}
.y112{bottom:753.897450px;}
.y10f{bottom:753.934800px;}
.y240{bottom:757.003800px;}
.y308{bottom:758.008800px;}
.y1a1{bottom:759.112140px;}
.y381{bottom:759.186000px;}
.y25d{bottom:759.987150px;}
.y2af{bottom:759.996150px;}
.y8d{bottom:760.027650px;}
.y1a7{bottom:761.284350px;}
.y35d{bottom:761.395800px;}
.y60{bottom:761.476650px;}
.y12f{bottom:763.011150px;}
.y1a5{bottom:764.033850px;}
.y9{bottom:768.048300px;}
.y1b7{bottom:771.107295px;}
.y10e{bottom:771.498450px;}
.y23f{bottom:772.003800px;}
.y380{bottom:772.689000px;}
.y225{bottom:772.746150px;}
.y35c{bottom:776.395800px;}
.y2ae{bottom:777.991650px;}
.y28f{bottom:778.023150px;}
.y307{bottom:779.152800px;}
.y5f{bottom:779.472150px;}
.y12e{bottom:781.006650px;}
.y41{bottom:783.877800px;}
.y223{bottom:784.746000px;}
.y8{bottom:786.043800px;}
.y37f{bottom:786.192000px;}
.y222{bottom:787.746150px;}
.y25c{bottom:788.485650px;}
.y8c{bottom:788.526150px;}
.y163{bottom:788.790600px;}
.y18e{bottom:795.559350px;}
.y2ad{bottom:795.987150px;}
.y28e{bottom:796.018650px;}
.y40{bottom:797.380800px;}
.y5e{bottom:797.467650px;}
.y12d{bottom:799.002150px;}
.y35b{bottom:799.039800px;}
.y37e{bottom:799.695000px;}
.y306{bottom:800.296800px;}
.y221{bottom:802.746150px;}
.y7{bottom:804.039300px;}
.y10c{bottom:804.583800px;}
.y25b{bottom:806.481150px;}
.y8b{bottom:806.521650px;}
.y161{bottom:807.147600px;}
.y3f{bottom:810.883800px;}
.y18d{bottom:811.492350px;}
.y37d{bottom:813.198000px;}
.y2ac{bottom:813.982650px;}
.y28d{bottom:814.014150px;}
.y5d{bottom:815.467650px;}
.y220{bottom:817.746150px;}
.y35a{bottom:820.183800px;}
.y305{bottom:821.440800px;}
.y10b{bottom:821.832300px;}
.y3e{bottom:824.386800px;}
.y25a{bottom:824.476650px;}
.y8a{bottom:824.517150px;}
.y12c{bottom:826.002150px;}
.y37c{bottom:826.701000px;}
.y28c{bottom:832.009650px;}
.y21f{bottom:832.746150px;}
.y5c{bottom:833.494650px;}
.y3d{bottom:837.889800px;}
.y182{bottom:838.165350px;}
.y37b{bottom:840.204000px;}
.y359{bottom:841.327800px;}
.y1a8{bottom:841.651350px;}
.y259{bottom:842.472150px;}
.y2ab{bottom:842.481150px;}
.y89{bottom:842.512650px;}
.y304{bottom:842.584800px;}
.y15c{bottom:844.192950px;}
.y34{bottom:848.805150px;}
.y28b{bottom:850.005150px;}
.y3c{bottom:851.392800px;}
.y5b{bottom:851.490150px;}
.y37a{bottom:853.707000px;}
.y106{bottom:856.644450px;}
.y183{bottom:859.413435px;}
.y258{bottom:860.467650px;}
.y2aa{bottom:860.476650px;}
.y88{bottom:860.508150px;}
.y358{bottom:862.471800px;}
.y303{bottom:863.728800px;}
.y3b{bottom:864.895800px;}
.y33{bottom:865.305150px;}
.y379{bottom:867.210000px;}
.y28a{bottom:868.000650px;}
.y1a9{bottom:874.837200px;}
.y256{bottom:875.463000px;}
.y3a{bottom:878.398800px;}
.y257{bottom:878.463150px;}
.y2a9{bottom:878.472150px;}
.y5a{bottom:878.490150px;}
.y255{bottom:878.494650px;}
.y87{bottom:878.503650px;}
.y184{bottom:880.604400px;}
.y378{bottom:880.713000px;}
.y32{bottom:881.805150px;}
.y357{bottom:883.615800px;}
.y302{bottom:884.872800px;}
.y289{bottom:885.996150px;}
.y39{bottom:891.901800px;}
.y377{bottom:894.216000px;}
.y2a8{bottom:896.467650px;}
.y254{bottom:896.490150px;}
.y86{bottom:896.499150px;}
.y1b0{bottom:896.716350px;}
.y185{bottom:901.795365px;}
.y31{bottom:903.705150px;}
.y288{bottom:903.991650px;}
.y356{bottom:904.759800px;}
.y38{bottom:905.404800px;}
.y376{bottom:907.719000px;}
.y1aa{bottom:908.080170px;}
.y301{bottom:908.824800px;}
.y2fe{bottom:908.824950px;}
.y18c{bottom:909.098700px;}
.y2a6{bottom:911.463000px;}
.y2a7{bottom:914.463150px;}
.y253{bottom:914.485650px;}
.y85{bottom:914.494650px;}
.y37{bottom:918.907800px;}
.y375{bottom:921.222000px;}
.y287{bottom:921.987150px;}
.y186{bottom:922.986315px;}
.y355{bottom:925.903800px;}
.y30{bottom:926.205150px;}
.y15d{bottom:931.581000px;}
.y36{bottom:932.410800px;}
.y252{bottom:932.481150px;}
.y59{bottom:932.490150px;}
.y300{bottom:932.968800px;}
.y374{bottom:934.725000px;}
.y107{bottom:938.764650px;}
.y286{bottom:939.982650px;}
.y1ab{bottom:941.266020px;}
.y2f{bottom:942.405150px;}
.y187{bottom:944.177280px;}
.y373{bottom:948.228000px;}
.y35{bottom:948.906300px;}
.y352{bottom:949.111800px;}
.y251{bottom:950.476650px;}
.y58{bottom:950.485650px;}
.y2ff{bottom:957.112800px;}
.y285{bottom:957.978150px;}
.y372{bottom:961.731000px;}
.y188{bottom:965.368245px;}
.y250{bottom:968.472150px;}
.y57{bottom:968.481150px;}
.y2e{bottom:970.605150px;}
.y354{bottom:973.255800px;}
.y1ac{bottom:974.508975px;}
.y371{bottom:975.234000px;}
.y50{bottom:979.407150px;}
.y30b{bottom:980.319150px;}
.y24f{bottom:986.467650px;}
.y56{bottom:986.476650px;}
.y189{bottom:986.559210px;}
.y194{bottom:987.305940px;}
.y370{bottom:988.737000px;}
.y30a{bottom:995.319150px;}
.y193{bottom:995.700345px;}
.y353{bottom:997.399650px;}
.y2d{bottom:997.605150px;}
.y51{bottom:998.877150px;}
.y24b{bottom:1001.463000px;}
.y36f{bottom:1002.240000px;}
.y24d{bottom:1002.963000px;}
.y192{bottom:1004.094765px;}
.y24c{bottom:1004.463150px;}
.y55{bottom:1004.472150px;}
.y1ad{bottom:1007.694825px;}
.y18a{bottom:1007.750175px;}
.y191{bottom:1012.435995px;}
.y36e{bottom:1015.743000px;}
.y15e{bottom:1018.969035px;}
.y351{bottom:1020.606150px;}
.y190{bottom:1020.830400px;}
.y108{bottom:1020.884850px;}
.y54{bottom:1022.467650px;}
.y18b{bottom:1028.941140px;}
.y36d{bottom:1029.246000px;}
.y110{bottom:1030.407300px;}
.y197{bottom:1031.112300px;}
.y10d{bottom:1033.383900px;}
.y18f{bottom:1033.861650px;}
.y350{bottom:1035.606150px;}
.y2d3{bottom:1038.177000px;}
.y53{bottom:1040.463150px;}
.y36c{bottom:1042.749000px;}
.y52{bottom:1099.348050px;}
.y84{bottom:1100.570100px;}
.h27{height:11.998500px;}
.h22{height:12.000000px;}
.h1a{height:13.500000px;}
.h29{height:19.500000px;}
.h1f{height:22.121736px;}
.h21{height:23.407366px;}
.h13{height:24.427603px;}
.h8{height:25.459200px;}
.h12{height:26.036122px;}
.ha{height:32.970000px;}
.h25{height:33.265218px;}
.h1d{height:33.265814px;}
.h5{height:34.272000px;}
.h23{height:34.805314px;}
.h24{height:35.157072px;}
.h14{height:36.014160px;}
.h10{height:36.732696px;}
.h26{height:37.081824px;}
.h1c{height:37.307920px;}
.h28{height:37.680000px;}
.h18{height:38.324395px;}
.hf{height:39.168000px;}
.h1b{height:39.429694px;}
.h2{height:42.390000px;}
.h3{height:44.064000px;}
.h1e{height:44.348890px;}
.h9{height:47.059200px;}
.h16{height:48.012534px;}
.hd{height:48.960000px;}
.h1{height:51.810000px;}
.h7{height:51.853500px;}
.hc{height:52.431600px;}
.he{height:52.599600px;}
.h17{height:52.809600px;}
.h4{height:56.520000px;}
.hb{height:65.940000px;}
.h6{height:70.650000px;}
.h11{height:194.319000px;}
.h19{height:318.820500px;}
.h20{height:527.587500px;}
.h15{height:609.277500px;}
.h0{height:1188.000000px;}
.wd{width:6.000000px;}
.w11{width:6.001500px;}
.w4{width:7.500000px;}
.w7{width:40.500000px;}
.w5{width:42.000000px;}
.w9{width:47.998500px;}
.w8{width:48.000000px;}
.w12{width:49.498500px;}
.wf{width:49.500000px;}
.wc{width:54.000000px;}
.we{width:55.500000px;}
.w13{width:60.000000px;}
.w10{width:61.500000px;}
.wa{width:87.000000px;}
.wb{width:100.500000px;}
.w3{width:276.642000px;}
.w1{width:340.408500px;}
.w6{width:744.094500px;}
.w2{width:744.097500px;}
.w0{width:918.000000px;}
.x62{left:-1.065000px;}
.x0{left:0.000000px;}
.x9b{left:1.935300px;}
.x4c{left:9.811800px;}
.xa{left:11.100750px;}
.x3d{left:12.840150px;}
.x73{left:13.860000px;}
.x9c{left:14.895150px;}
.x4b{left:17.408400px;}
.x2{left:54.000000px;}
.x3{left:67.503000px;}
.x9{left:73.545000px;}
.x13{left:86.202000px;}
.x8{left:93.033450px;}
.x2e{left:95.316600px;}
.x4a{left:103.611930px;}
.x10{left:105.111600px;}
.x27{left:110.435250px;}
.x12{left:112.334220px;}
.x11{left:119.210550px;}
.x32{left:125.484900px;}
.xb{left:128.266050px;}
.x33{left:133.170840px;}
.x43{left:134.833650px;}
.xc{left:139.867800px;}
.x14{left:145.961100px;}
.x16{left:149.770350px;}
.x48{left:152.928300px;}
.xd{left:154.399410px;}
.x35{left:158.403000px;}
.x2d{left:160.084350px;}
.x38{left:167.706150px;}
.x34{left:168.955650px;}
.x8d{left:177.644700px;}
.x17{left:188.796000px;}
.x5{left:212.529300px;}
.x26{left:219.671250px;}
.x15{left:221.106000px;}
.x42{left:239.131800px;}
.x44{left:245.473800px;}
.x37{left:248.922900px;}
.x89{left:253.843500px;}
.x1{left:258.750000px;}
.x87{left:262.591500px;}
.x94{left:264.750000px;}
.x39{left:266.249850px;}
.x88{left:268.591200px;}
.x65{left:270.667500px;}
.x66{left:276.667650px;}
.x84{left:279.655500px;}
.x85{left:285.655500px;}
.x8a{left:295.843200px;}
.x76{left:303.466500px;}
.xf{left:308.688150px;}
.x5d{left:312.199500px;}
.xe{left:314.035650px;}
.x56{left:316.201500px;}
.x30{left:319.563000px;}
.x67{left:324.066000px;}
.x68{left:330.065700px;}
.x7a{left:331.564500px;}
.x29{left:334.681500px;}
.x74{left:343.470000px;}
.x36{left:354.878850px;}
.x1a{left:358.347000px;}
.x5e{left:360.199950px;}
.x18{left:365.049000px;}
.x1b{left:367.312500px;}
.x28{left:368.970000px;}
.x3c{left:371.655000px;}
.x2f{left:379.173000px;}
.x7b{left:381.064200px;}
.x77{left:386.418000px;}
.x75{left:391.469100px;}
.x97{left:392.862150px;}
.x4f{left:395.191800px;}
.x7f{left:397.997700px;}
.x96{left:410.000550px;}
.x3f{left:411.459300px;}
.x3e{left:413.655150px;}
.x40{left:418.130745px;}
.x1c{left:426.450000px;}
.x78{left:434.418150px;}
.x82{left:435.421500px;}
.x19{left:440.196000px;}
.x41{left:449.944800px;}
.x7{left:451.500000px;}
.x7c{left:453.073500px;}
.x53{left:459.946200px;}
.x9a{left:468.865500px;}
.x80{left:471.163500px;}
.x92{left:472.404000px;}
.x50{left:473.800800px;}
.x4e{left:481.394730px;}
.x5b{left:486.508500px;}
.x4d{left:487.746300px;}
.x83{left:489.420750px;}
.x8e{left:494.364000px;}
.x98{left:496.589100px;}
.x99{left:498.672600px;}
.x7e{left:501.249450px;}
.x7d{left:502.573650px;}
.x45{left:506.755800px;}
.x47{left:512.617800px;}
.x93{left:521.904000px;}
.x81{left:525.163950px;}
.x51{left:527.910300px;}
.x49{left:530.713800px;}
.x52{left:532.936500px;}
.x31{left:535.212000px;}
.x8f{left:543.863550px;}
.x70{left:545.679000px;}
.x2a{left:550.332000px;}
.x54{left:564.076500px;}
.x3a{left:573.678000px;}
.x23{left:577.435500px;}
.x79{left:579.991200px;}
.x3b{left:581.178450px;}
.x21{left:584.139000px;}
.x5c{left:587.008650px;}
.x24{left:588.121650px;}
.x2b{left:598.326000px;}
.x71{left:599.679150px;}
.x95{left:600.946050px;}
.x86{left:606.574500px;}
.x55{left:612.077400px;}
.x57{left:613.980000px;}
.x46{left:616.917300px;}
.x2c{left:621.478500px;}
.x25{left:636.595500px;}
.x6a{left:637.743000px;}
.x72{left:653.553900px;}
.x22{left:659.283000px;}
.x5f{left:667.506000px;}
.x6c{left:677.397000px;}
.x6b{left:685.742400px;}
.x90{left:689.445000px;}
.x58{left:700.979850px;}
.x6{left:702.957450px;}
.x60{left:715.506750px;}
.x61{left:724.179000px;}
.x6d{left:725.397750px;}
.x91{left:738.944700px;}
.x20{left:741.312000px;}
.x59{left:777.000000px;}
.x63{left:778.178850px;}
.x8b{left:780.991500px;}
.x1d{left:789.289500px;}
.x69{left:795.426600px;}
.x1f{left:796.512120px;}
.x1e{left:803.388450px;}
.x6e{left:805.369500px;}
.x64{left:819.167550px;}
.x4{left:825.850050px;}
.x8c{left:830.490900px;}
.x6f{left:859.369650px;}
.x5a{left:864.000000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v4{vertical-align:-7.312000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.v1{vertical-align:21.600000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.479093pt;}
.ls15{letter-spacing:-0.477616pt;}
.ls1a{letter-spacing:-0.383275pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000267pt;}
.ls14{letter-spacing:0.477616pt;}
.ls0{letter-spacing:1.216000pt;}
.ls16{letter-spacing:1.776000pt;}
.ls18{letter-spacing:12.121061pt;}
.ls17{letter-spacing:15.032905pt;}
.lsd{letter-spacing:16.668798pt;}
.ls13{letter-spacing:17.289699pt;}
.ls7{letter-spacing:23.569707pt;}
.ls12{letter-spacing:34.606195pt;}
.ls11{letter-spacing:34.646813pt;}
.ls10{letter-spacing:45.938506pt;}
.lse{letter-spacing:57.189574pt;}
.lsf{letter-spacing:57.230198pt;}
.ls9{letter-spacing:58.660427pt;}
.lsc{letter-spacing:78.848115pt;}
.lsb{letter-spacing:104.865653pt;}
.ls6{letter-spacing:229.716693pt;}
.ls5{letter-spacing:242.424987pt;}
.ls8{letter-spacing:255.265200pt;}
.ls4{letter-spacing:255.309173pt;}
.lsa{letter-spacing:271.686738pt;}
.ls3{letter-spacing:277.760179pt;}
.ws65{word-spacing:-277.760179pt;}
.ws99{word-spacing:-271.686738pt;}
.ws68{word-spacing:-267.533760pt;}
.ws70{word-spacing:-267.489787pt;}
.ws6c{word-spacing:-241.941280pt;}
.ws72{word-spacing:-241.765413pt;}
.ws6b{word-spacing:-241.765360pt;}
.ws85{word-spacing:-117.874422pt;}
.ws86{word-spacing:-91.856884pt;}
.ws9b{word-spacing:-68.521891pt;}
.ws82{word-spacing:-58.660427pt;}
.ws9d{word-spacing:-57.230198pt;}
.ws2{word-spacing:-48.000000pt;}
.ws9e{word-spacing:-45.938506pt;}
.ws9f{word-spacing:-45.897888pt;}
.wsbe{word-spacing:-42.666667pt;}
.ws6f{word-spacing:-35.794293pt;}
.ws1{word-spacing:-16.256000pt;}
.wsbf{word-spacing:-14.276981pt;}
.wse1{word-spacing:-13.786667pt;}
.ws6a{word-spacing:-12.224587pt;}
.ws0{word-spacing:-11.280000pt;}
.wsb5{word-spacing:-10.800000pt;}
.ws66{word-spacing:-10.026667pt;}
.ws83{word-spacing:-9.600000pt;}
.wsad{word-spacing:-9.552320pt;}
.wsd5{word-spacing:-9.386667pt;}
.ws3{word-spacing:-8.773333pt;}
.ws6{word-spacing:-8.400000pt;}
.ws4{word-spacing:-7.332000pt;}
.wsbd{word-spacing:-6.898954pt;}
.ws5{word-spacing:-6.517333pt;}
.wse6{word-spacing:-3.247996pt;}
.wse7{word-spacing:-3.098667pt;}
.ws30{word-spacing:-3.024000pt;}
.ws95{word-spacing:-2.592000pt;}
.wse{word-spacing:-2.538667pt;}
.ws37{word-spacing:-2.314667pt;}
.wsc1{word-spacing:-2.304000pt;}
.ws41{word-spacing:-2.256000pt;}
.ws3e{word-spacing:-2.208000pt;}
.wsc6{word-spacing:-2.160000pt;}
.wsce{word-spacing:-2.112000pt;}
.ws2f{word-spacing:-2.063995pt;}
.ws1f{word-spacing:-2.016000pt;}
.wsaf{word-spacing:-1.968000pt;}
.ws48{word-spacing:-1.920000pt;}
.ws93{word-spacing:-1.872000pt;}
.wsf6{word-spacing:-1.866667pt;}
.ws32{word-spacing:-1.824000pt;}
.ws8b{word-spacing:-1.776000pt;}
.ws25{word-spacing:-1.728000pt;}
.ws96{word-spacing:-1.680000pt;}
.wse8{word-spacing:-1.642667pt;}
.wscb{word-spacing:-1.584000pt;}
.ws24{word-spacing:-1.536000pt;}
.ws11e{word-spacing:-1.493333pt;}
.ws2d{word-spacing:-1.488000pt;}
.wsfe{word-spacing:-1.456000pt;}
.wsc{word-spacing:-1.440000pt;}
.wsc5{word-spacing:-1.392000pt;}
.wsff{word-spacing:-1.381333pt;}
.wsb2{word-spacing:-1.296000pt;}
.ws80{word-spacing:-1.248000pt;}
.ws120{word-spacing:-1.232000pt;}
.ws42{word-spacing:-1.200000pt;}
.ws7c{word-spacing:-1.152000pt;}
.ws10{word-spacing:-1.104000pt;}
.wsfa{word-spacing:-1.082667pt;}
.ws90{word-spacing:-1.056000pt;}
.wsfb{word-spacing:-1.045333pt;}
.ws3c{word-spacing:-1.008000pt;}
.wsd{word-spacing:-0.960000pt;}
.wsa6{word-spacing:-0.912000pt;}
.ws125{word-spacing:-0.896000pt;}
.wsc2{word-spacing:-0.864000pt;}
.ws126{word-spacing:-0.858667pt;}
.wse0{word-spacing:-0.853333pt;}
.ws103{word-spacing:-0.821333pt;}
.ws1c{word-spacing:-0.816000pt;}
.ws127{word-spacing:-0.784000pt;}
.ws59{word-spacing:-0.768000pt;}
.ws15{word-spacing:-0.720000pt;}
.ws29{word-spacing:-0.672000pt;}
.wseb{word-spacing:-0.634667pt;}
.ws5c{word-spacing:-0.624000pt;}
.ws124{word-spacing:-0.597333pt;}
.ws33{word-spacing:-0.576000pt;}
.ws113{word-spacing:-0.560000pt;}
.ws7b{word-spacing:-0.528000pt;}
.wsae{word-spacing:-0.525378pt;}
.ws11f{word-spacing:-0.522667pt;}
.ws129{word-spacing:-0.485333pt;}
.ws3b{word-spacing:-0.480000pt;}
.wsf5{word-spacing:-0.448000pt;}
.ws64{word-spacing:-0.432000pt;}
.wsf3{word-spacing:-0.410667pt;}
.wsc0{word-spacing:-0.384000pt;}
.wsea{word-spacing:-0.373333pt;}
.ws61{word-spacing:-0.336000pt;}
.ws31{word-spacing:-0.288000pt;}
.wsca{word-spacing:-0.240000pt;}
.ws10e{word-spacing:-0.224000pt;}
.wsb3{word-spacing:-0.192000pt;}
.ws12d{word-spacing:-0.186667pt;}
.wsf{word-spacing:-0.144000pt;}
.ws50{word-spacing:-0.096000pt;}
.wse9{word-spacing:-0.074667pt;}
.wsb7{word-spacing:-0.048000pt;}
.ws9a{word-spacing:-0.047762pt;}
.ws5d{word-spacing:-0.044851pt;}
.ws76{word-spacing:-0.042667pt;}
.ws10f{word-spacing:-0.037333pt;}
.ws5e{word-spacing:-0.033638pt;}
.ws8{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.048000pt;}
.ws3f{word-spacing:0.096000pt;}
.ws97{word-spacing:0.144000pt;}
.ws112{word-spacing:0.149333pt;}
.wsa{word-spacing:0.192000pt;}
.wsfc{word-spacing:0.224000pt;}
.ws5f{word-spacing:0.240000pt;}
.ws1e{word-spacing:0.288000pt;}
.ws5b{word-spacing:0.336000pt;}
.ws10b{word-spacing:0.373333pt;}
.ws54{word-spacing:0.384000pt;}
.ws104{word-spacing:0.410667pt;}
.wsbc{word-spacing:0.431184pt;}
.ws7a{word-spacing:0.432000pt;}
.ws13{word-spacing:0.480000pt;}
.wsef{word-spacing:0.522667pt;}
.ws75{word-spacing:0.528000pt;}
.ws10d{word-spacing:0.560000pt;}
.ws55{word-spacing:0.576000pt;}
.ws10c{word-spacing:0.597333pt;}
.ws26{word-spacing:0.624000pt;}
.wsd0{word-spacing:0.672000pt;}
.wsf7{word-spacing:0.709333pt;}
.ws57{word-spacing:0.720000pt;}
.ws22{word-spacing:0.768000pt;}
.ws115{word-spacing:0.784000pt;}
.wsb6{word-spacing:0.816000pt;}
.ws114{word-spacing:0.821333pt;}
.ws7f{word-spacing:0.864000pt;}
.ws34{word-spacing:0.912000pt;}
.ws105{word-spacing:0.933333pt;}
.ws28{word-spacing:0.960000pt;}
.ws3a{word-spacing:1.008000pt;}
.ws19{word-spacing:1.056000pt;}
.ws44{word-spacing:1.104000pt;}
.ws53{word-spacing:1.152000pt;}
.ws128{word-spacing:1.157333pt;}
.wsfd{word-spacing:1.194667pt;}
.ws1b{word-spacing:1.200000pt;}
.ws43{word-spacing:1.248000pt;}
.wsf4{word-spacing:1.269333pt;}
.wsd4{word-spacing:1.296000pt;}
.wsf2{word-spacing:1.306667pt;}
.ws2e{word-spacing:1.344000pt;}
.wsec{word-spacing:1.381333pt;}
.ws51{word-spacing:1.392000pt;}
.ws1a{word-spacing:1.440000pt;}
.ws100{word-spacing:1.456000pt;}
.ws20{word-spacing:1.488000pt;}
.ws89{word-spacing:1.536000pt;}
.ws11b{word-spacing:1.568000pt;}
.ws3d{word-spacing:1.584000pt;}
.ws106{word-spacing:1.605330pt;}
.ws45{word-spacing:1.632000pt;}
.ws110{word-spacing:1.642667pt;}
.ws27{word-spacing:1.680000pt;}
.ws5a{word-spacing:1.728000pt;}
.ws81{word-spacing:1.776000pt;}
.ws63{word-spacing:1.824000pt;}
.ws108{word-spacing:1.866667pt;}
.ws40{word-spacing:1.872000pt;}
.ws4f{word-spacing:1.920000pt;}
.ws107{word-spacing:1.941333pt;}
.ws36{word-spacing:1.968000pt;}
.ws17{word-spacing:2.016000pt;}
.ws58{word-spacing:2.063995pt;}
.ws39{word-spacing:2.112000pt;}
.ws8c{word-spacing:2.160000pt;}
.ws7e{word-spacing:2.208000pt;}
.ws11c{word-spacing:2.240000pt;}
.wsb4{word-spacing:2.256000pt;}
.wsd2{word-spacing:2.304000pt;}
.ws121{word-spacing:2.314667pt;}
.wsb1{word-spacing:2.352000pt;}
.ws111{word-spacing:2.389333pt;}
.ws7d{word-spacing:2.400000pt;}
.ws116{word-spacing:2.426667pt;}
.ws11{word-spacing:2.447995pt;}
.ws118{word-spacing:2.464000pt;}
.wsb0{word-spacing:2.496000pt;}
.wsb9{word-spacing:2.544000pt;}
.wsed{word-spacing:2.576000pt;}
.wsa0{word-spacing:2.640000pt;}
.ws117{word-spacing:2.650663pt;}
.wsb{word-spacing:2.688000pt;}
.ws12c{word-spacing:2.725333pt;}
.ws1d{word-spacing:2.736000pt;}
.wsa2{word-spacing:2.784000pt;}
.ws11a{word-spacing:2.800000pt;}
.ws98{word-spacing:2.832000pt;}
.ws18{word-spacing:2.880000pt;}
.ws92{word-spacing:2.928000pt;}
.ws4d{word-spacing:2.976000pt;}
.ws12b{word-spacing:2.986667pt;}
.ws4c{word-spacing:3.024000pt;}
.ws56{word-spacing:3.072000pt;}
.ws74{word-spacing:3.120000pt;}
.ws12a{word-spacing:3.136000pt;}
.ws62{word-spacing:3.168000pt;}
.ws10a{word-spacing:3.210663pt;}
.ws46{word-spacing:3.216000pt;}
.ws12{word-spacing:3.264000pt;}
.wsf1{word-spacing:3.285333pt;}
.ws73{word-spacing:3.312000pt;}
.wsc4{word-spacing:3.360000pt;}
.wsf0{word-spacing:3.397333pt;}
.ws14{word-spacing:3.456000pt;}
.ws9{word-spacing:3.504000pt;}
.ws119{word-spacing:3.546667pt;}
.ws4a{word-spacing:3.552000pt;}
.wsba{word-spacing:3.600000pt;}
.wsa4{word-spacing:3.696000pt;}
.wsc9{word-spacing:3.744000pt;}
.ws2b{word-spacing:3.840000pt;}
.ws4b{word-spacing:3.888000pt;}
.ws11d{word-spacing:3.920000pt;}
.ws47{word-spacing:3.936000pt;}
.ws94{word-spacing:3.984000pt;}
.ws60{word-spacing:4.032000pt;}
.ws21{word-spacing:4.080000pt;}
.wsbb{word-spacing:4.127995pt;}
.wscd{word-spacing:4.175995pt;}
.ws16{word-spacing:4.224000pt;}
.ws8f{word-spacing:4.272000pt;}
.wsc7{word-spacing:4.320000pt;}
.wsb8{word-spacing:4.464000pt;}
.wscf{word-spacing:4.512000pt;}
.wsc8{word-spacing:4.608000pt;}
.wscc{word-spacing:4.656000pt;}
.wsa5{word-spacing:4.704000pt;}
.wsc3{word-spacing:4.800000pt;}
.ws49{word-spacing:4.944000pt;}
.ws109{word-spacing:5.002667pt;}
.ws88{word-spacing:5.136000pt;}
.ws8e{word-spacing:5.184000pt;}
.ws79{word-spacing:5.188853pt;}
.ws78{word-spacing:5.232800pt;}
.wsd1{word-spacing:5.280000pt;}
.ws87{word-spacing:5.328000pt;}
.ws35{word-spacing:5.568000pt;}
.ws4e{word-spacing:5.664000pt;}
.wsf9{word-spacing:5.674667pt;}
.ws8a{word-spacing:5.712000pt;}
.wsf8{word-spacing:5.936000pt;}
.wsd3{word-spacing:6.240000pt;}
.wsa1{word-spacing:6.336000pt;}
.ws8d{word-spacing:6.384000pt;}
.ws38{word-spacing:6.432000pt;}
.wsa3{word-spacing:6.576000pt;}
.ws91{word-spacing:6.624000pt;}
.ws102{word-spacing:7.093333pt;}
.ws101{word-spacing:7.392000pt;}
.wsee{word-spacing:7.914667pt;}
.ws52{word-spacing:8.256000pt;}
.ws71{word-spacing:11.345120pt;}
.ws6e{word-spacing:11.389120pt;}
.ws2c{word-spacing:12.720000pt;}
.ws23{word-spacing:12.960000pt;}
.ws123{word-spacing:15.008000pt;}
.ws7{word-spacing:15.546667pt;}
.ws122{word-spacing:15.680000pt;}
.ws77{word-spacing:20.755413pt;}
.ws9c{word-spacing:23.355136pt;}
.ws84{word-spacing:52.830594pt;}
.wsac{word-spacing:53.445230pt;}
.wsa8{word-spacing:53.922846pt;}
.wsaa{word-spacing:54.878078pt;}
.wsd8{word-spacing:86.570667pt;}
.wsa7{word-spacing:87.499251pt;}
.wsd9{word-spacing:88.021333pt;}
.wsa9{word-spacing:88.932099pt;}
.ws69{word-spacing:103.821067pt;}
.wse4{word-spacing:106.197333pt;}
.wsdd{word-spacing:107.434667pt;}
.wsab{word-spacing:110.902435pt;}
.wsdc{word-spacing:128.554667pt;}
.wsdb{word-spacing:180.565333pt;}
.wsde{word-spacing:181.888000pt;}
.wse5{word-spacing:185.130667pt;}
.wsdf{word-spacing:187.818667pt;}
.wsd7{word-spacing:190.336000pt;}
.wse3{word-spacing:214.570667pt;}
.ws6d{word-spacing:217.536107pt;}
.wsda{word-spacing:218.325333pt;}
.ws67{word-spacing:230.200373pt;}
.wsd6{word-spacing:301.869333pt;}
.wse2{word-spacing:435.925333pt;}
._d{margin-left:-255.309173pt;}
._f{margin-left:-229.716693pt;}
._1e{margin-left:-220.328960pt;}
._1d{margin-left:-194.697467pt;}
._1c{margin-left:-146.054973pt;}
._1b{margin-left:-124.084637pt;}
._1a{margin-left:-122.651789pt;}
._14{margin-left:-104.865635pt;}
._15{margin-left:-78.848106pt;}
._18{margin-left:-45.979132pt;}
._19{margin-left:-34.646797pt;}
._11{margin-left:-23.569760pt;}
._17{margin-left:-11.291669pt;}
._a{margin-left:-8.773333pt;}
._7{margin-left:-5.600000pt;}
._34{margin-left:-4.525867pt;}
._2{margin-left:-3.614400pt;}
._6{margin-left:-2.400000pt;}
._1{margin-left:-1.440000pt;}
._5{width:0.931200pt;}
._3{width:2.160000pt;}
._4{width:3.398400pt;}
._b{width:5.068800pt;}
._16{width:6.273600pt;}
._0{width:12.720000pt;}
._c{width:15.546667pt;}
._9{width:22.176000pt;}
._12{width:29.857920pt;}
._10{width:35.794293pt;}
._8{width:45.349867pt;}
._23{width:70.954667pt;}
._13{width:98.314448pt;}
._26{width:112.800000pt;}
._e{width:128.973760pt;}
._2c{width:150.176000pt;}
._2a{width:153.886400pt;}
._24{width:155.786667pt;}
._21{width:174.240000pt;}
._29{width:176.682667pt;}
._27{width:180.853333pt;}
._25{width:182.869333pt;}
._22{width:191.008000pt;}
._31{width:191.914667pt;}
._2f{width:196.480000pt;}
._32{width:199.168000pt;}
._28{width:206.048000pt;}
._2e{width:220.288000pt;}
._36{width:225.280000pt;}
._30{width:228.352000pt;}
._1f{width:319.386133pt;}
._20{width:332.336000pt;}
._33{width:443.520000pt;}
._35{width:446.592000pt;}
._2d{width:464.640000pt;}
._2b{width:644.539200pt;}
.fs14{font-size:27.010667pt;}
.fs6{font-size:27.733333pt;}
.fsc{font-size:29.826133pt;}
.fs15{font-size:30.463467pt;}
.fs5{font-size:31.200000pt;}
.fsb{font-size:33.638400pt;}
.fs3{font-size:37.333333pt;}
.fs12{font-size:40.617600pt;}
.fs18{font-size:42.586133pt;}
.fs7{font-size:42.666667pt;}
.fsd{font-size:43.973333pt;}
.fs16{font-size:44.557764pt;}
.fsa{font-size:44.850667pt;}
.fs17{font-size:45.008085pt;}
.fsf{font-size:46.794133pt;}
.fs11{font-size:47.761600pt;}
.fs19{font-size:47.909333pt;}
.fs1{font-size:48.000000pt;}
.fs10{font-size:50.477895pt;}
.fs9{font-size:53.333333pt;}
.fs13{font-size:54.224533pt;}
.fs0{font-size:58.666667pt;}
.fse{font-size:58.704000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y24e{bottom:1.346800pt;}
.y22e{bottom:1.346933pt;}
.y1a4{bottom:2.285200pt;}
.y11b{bottom:2.473733pt;}
.yed{bottom:2.521000pt;}
.y166{bottom:2.633867pt;}
.y2fd{bottom:2.798800pt;}
.y224{bottom:2.800133pt;}
.y243{bottom:2.800267pt;}
.y1ec{bottom:2.813467pt;}
.y2d6{bottom:2.813600pt;}
.y231{bottom:3.145600pt;}
.y170{bottom:3.146667pt;}
.y1cf{bottom:3.146800pt;}
.y239{bottom:3.146933pt;}
.y327{bottom:5.813467pt;}
.yec{bottom:18.162667pt;}
.y17e{bottom:29.788000pt;}
.yc6{bottom:29.788133pt;}
.y21e{bottom:29.789333pt;}
.y26{bottom:29.789467pt;}
.y1e9{bottom:29.790667pt;}
.y23e{bottom:29.790933pt;}
.y12b{bottom:29.800400pt;}
.y284{bottom:29.806800pt;}
.y83{bottom:29.810800pt;}
.y101{bottom:29.837733pt;}
.ydc{bottom:29.844133pt;}
.yb0{bottom:29.864133pt;}
.y2d2{bottom:29.952133pt;}
.y155{bottom:29.968133pt;}
.y162{bottom:66.860533pt;}
.y17d{bottom:67.333333pt;}
.y1e7{bottom:68.752000pt;}
.ye4{bottom:70.000000pt;}
.y17c{bottom:70.024000pt;}
.y21d{bottom:70.193333pt;}
.y154{bottom:70.372133pt;}
.y100{bottom:71.189733pt;}
.y1e8{bottom:71.418667pt;}
.y1e6{bottom:71.426667pt;}
.y283{bottom:71.542800pt;}
.yaf{bottom:71.600133pt;}
.yc5{bottom:71.684133pt;}
.ydb{bottom:73.980133pt;}
.y3b3{bottom:74.698667pt;}
.ye3{bottom:83.333333pt;}
.y21b{bottom:83.522667pt;}
.y2f4{bottom:83.525333pt;}
.y82{bottom:83.546800pt;}
.y2c{bottom:84.442933pt;}
.y6{bottom:84.470933pt;}
.y12a{bottom:84.496400pt;}
.y17b{bottom:86.020000pt;}
.y21c{bottom:86.189333pt;}
.y2f3{bottom:86.192000pt;}
.y21a{bottom:86.221333pt;}
.y153{bottom:86.368133pt;}
.y3b2{bottom:86.701333pt;}
.yea{bottom:86.718800pt;}
.yff{bottom:87.185733pt;}
.y1e5{bottom:87.422667pt;}
.y282{bottom:87.538800pt;}
.yae{bottom:87.596133pt;}
.yc4{bottom:87.680133pt;}
.y34f{bottom:88.187067pt;}
.yda{bottom:89.976133pt;}
.y1b8{bottom:96.437200pt;}
.y2b{bottom:96.445600pt;}
.ye2{bottom:96.666667pt;}
.y3b1{bottom:98.704000pt;}
.y2f2{bottom:99.525333pt;}
.y81{bottom:99.542800pt;}
.y34e{bottom:100.189733pt;}
.y5{bottom:100.466933pt;}
.y129{bottom:100.492400pt;}
.y1e3{bottom:100.752000pt;}
.y17a{bottom:102.016000pt;}
.y219{bottom:102.217333pt;}
.y152{bottom:102.364133pt;}
.yfe{bottom:103.181733pt;}
.y1a6{bottom:103.210533pt;}
.y1e4{bottom:103.418667pt;}
.y1e2{bottom:103.422667pt;}
.y281{bottom:103.534800pt;}
.yad{bottom:103.592133pt;}
.yc3{bottom:103.676133pt;}
.y2d1{bottom:103.680133pt;}
.yd9{bottom:105.972133pt;}
.y2a{bottom:108.448267pt;}
.ye1{bottom:110.000000pt;}
.y3b0{bottom:110.706667pt;}
.y34d{bottom:112.192400pt;}
.y2f1{bottom:112.858667pt;}
.y80{bottom:115.538800pt;}
.y4{bottom:116.462933pt;}
.y128{bottom:116.488400pt;}
.y1e0{bottom:116.752000pt;}
.y179{bottom:118.012000pt;}
.y218{bottom:118.213333pt;}
.y151{bottom:118.360133pt;}
.yfd{bottom:119.177733pt;}
.y1e1{bottom:119.418667pt;}
.y1df{bottom:119.434667pt;}
.y280{bottom:119.530800pt;}
.yc2{bottom:119.672133pt;}
.y2d0{bottom:119.676133pt;}
.y29{bottom:120.450933pt;}
.yd8{bottom:121.968133pt;}
.y3af{bottom:122.709333pt;}
.ye0{bottom:123.333333pt;}
.y34c{bottom:124.195067pt;}
.yac{bottom:128.924133pt;}
.y7f{bottom:131.534800pt;}
.y28{bottom:132.453600pt;}
.y3{bottom:132.458933pt;}
.y127{bottom:132.484400pt;}
.y178{bottom:134.008000pt;}
.y217{bottom:134.209333pt;}
.y150{bottom:134.356133pt;}
.y3ae{bottom:134.712000pt;}
.yfc{bottom:135.173733pt;}
.y1de{bottom:135.430667pt;}
.y27f{bottom:135.526800pt;}
.yc1{bottom:135.668133pt;}
.y2cf{bottom:135.672133pt;}
.y34b{bottom:136.197733pt;}
.yd7{bottom:137.964133pt;}
.y2ec{bottom:138.808133pt;}
.y323{bottom:141.284267pt;}
.y27{bottom:144.456267pt;}
.yab{bottom:144.920133pt;}
.y3ad{bottom:146.714667pt;}
.y7e{bottom:147.530800pt;}
.y34a{bottom:148.200400pt;}
.y126{bottom:148.509733pt;}
.ye9{bottom:148.794667pt;}
.y2eb{bottom:149.474667pt;}
.y177{bottom:150.004000pt;}
.y216{bottom:150.205333pt;}
.y14f{bottom:150.352133pt;}
.y1dd{bottom:151.426667pt;}
.y27e{bottom:151.522800pt;}
.y2fc{bottom:151.662667pt;}
.yc0{bottom:151.664133pt;}
.y2ce{bottom:151.668133pt;}
.y2ea{bottom:152.141467pt;}
.yd6{bottom:153.960133pt;}
.y2fb{bottom:154.328133pt;}
.y116{bottom:155.090933pt;}
.y11d{bottom:155.092267pt;}
.y2{bottom:156.458933pt;}
.y3ac{bottom:158.717333pt;}
.y2f8{bottom:159.128133pt;}
.yfb{bottom:159.173733pt;}
.y322{bottom:160.078933pt;}
.y349{bottom:160.203067pt;}
.yaa{bottom:160.916133pt;}
.y175{bottom:163.333333pt;}
.y7d{bottom:163.526800pt;}
.y125{bottom:164.505733pt;}
.y160{bottom:165.044267pt;}
.y164{bottom:165.045600pt;}
.y2e9{bottom:165.474800pt;}
.y176{bottom:166.000000pt;}
.y174{bottom:166.012000pt;}
.y215{bottom:166.201333pt;}
.y14e{bottom:166.348133pt;}
.yeb{bottom:166.957333pt;}
.y1dc{bottom:167.422667pt;}
.ybf{bottom:167.660133pt;}
.y2fa{bottom:167.661467pt;}
.y2f7{bottom:169.794667pt;}
.yd5{bottom:169.956133pt;}
.y3ab{bottom:170.720000pt;}
.y2e0{bottom:170.909333pt;}
.y348{bottom:172.205733pt;}
.y2f6{bottom:172.461467pt;}
.y2e8{bottom:173.552000pt;}
.y2df{bottom:173.576133pt;}
.y27d{bottom:175.522800pt;}
.ya9{bottom:176.912133pt;}
.y2cd{bottom:177.000133pt;}
.y321{bottom:178.873600pt;}
.y1{bottom:179.125600pt;}
.y7c{bottom:179.636133pt;}
.ye5{bottom:180.242533pt;}
.y124{bottom:180.501733pt;}
.y1da{bottom:180.752000pt;}
.y2f9{bottom:180.994800pt;}
.y173{bottom:182.008000pt;}
.y14d{bottom:182.344133pt;}
.y3aa{bottom:182.722667pt;}
.y1db{bottom:183.418667pt;}
.y1d9{bottom:183.426667pt;}
.ybe{bottom:183.656133pt;}
.y347{bottom:184.208400pt;}
.y2e7{bottom:184.218667pt;}
.y2f5{bottom:185.794800pt;}
.yd4{bottom:185.952133pt;}
.y2e6{bottom:186.885333pt;}
.y2de{bottom:186.909467pt;}
.y214{bottom:190.201333pt;}
.ya8{bottom:192.908133pt;}
.y2cc{bottom:192.996133pt;}
.y3a9{bottom:194.725333pt;}
.y7b{bottom:195.632133pt;}
.y346{bottom:196.211067pt;}
.y123{bottom:196.497733pt;}
.y320{bottom:197.668267pt;}
.yfa{bottom:197.837733pt;}
.y172{bottom:198.004000pt;}
.y14c{bottom:198.340133pt;}
.y1d8{bottom:199.422667pt;}
.ybd{bottom:199.652133pt;}
.y2e5{bottom:200.218667pt;}
.y2dd{bottom:200.242800pt;}
.yd3{bottom:201.948133pt;}
.y213{bottom:206.197333pt;}
.y3a8{bottom:206.728000pt;}
.y345{bottom:208.213733pt;}
.ya7{bottom:208.904133pt;}
.y2cb{bottom:208.992133pt;}
.y16f{bottom:211.333333pt;}
.y7a{bottom:211.628133pt;}
.y122{bottom:212.493733pt;}
.y1d6{bottom:212.752000pt;}
.yf9{bottom:213.833733pt;}
.y171{bottom:214.000000pt;}
.y14b{bottom:214.336133pt;}
.y1d7{bottom:215.418667pt;}
.y1d5{bottom:215.426667pt;}
.ybc{bottom:215.648133pt;}
.y31f{bottom:216.462933pt;}
.yd2{bottom:217.944133pt;}
.ye6{bottom:218.085280pt;}
.y3a7{bottom:218.730667pt;}
.y344{bottom:220.216400pt;}
.y25{bottom:221.678933pt;}
.y212{bottom:222.193333pt;}
.ya6{bottom:224.900133pt;}
.y2a5{bottom:224.914800pt;}
.y27c{bottom:224.946800pt;}
.y2ca{bottom:224.988133pt;}
.y79{bottom:227.624133pt;}
.y121{bottom:228.489733pt;}
.yf8{bottom:229.829733pt;}
.y16e{bottom:230.022667pt;}
.y3a6{bottom:230.733333pt;}
.y1d4{bottom:231.422667pt;}
.ybb{bottom:231.644133pt;}
.y343{bottom:232.219067pt;}
.yd1{bottom:233.940133pt;}
.y31e{bottom:235.257600pt;}
.y210{bottom:235.522667pt;}
.y24{bottom:237.674933pt;}
.y211{bottom:238.189333pt;}
.y14a{bottom:238.336133pt;}
.ya5{bottom:240.896133pt;}
.y2a4{bottom:240.910800pt;}
.y27b{bottom:240.942800pt;}
.y2c9{bottom:240.984133pt;}
.y3a5{bottom:242.736000pt;}
.y78{bottom:243.620133pt;}
.y342{bottom:244.221733pt;}
.y120{bottom:244.485733pt;}
.y1d2{bottom:244.752000pt;}
.yf7{bottom:245.825733pt;}
.y16d{bottom:246.018667pt;}
.y1d3{bottom:247.418667pt;}
.y1d1{bottom:247.422800pt;}
.yba{bottom:247.640133pt;}
.yd0{bottom:249.936133pt;}
.y23{bottom:253.670933pt;}
.y31d{bottom:254.052267pt;}
.y20f{bottom:254.221467pt;}
.y149{bottom:254.332133pt;}
.y3a4{bottom:254.738667pt;}
.ye7{bottom:255.928040pt;}
.yf3{bottom:256.094787pt;}
.y341{bottom:256.224400pt;}
.ya4{bottom:256.892133pt;}
.y2a3{bottom:256.906800pt;}
.y77{bottom:259.616133pt;}
.y1ce{bottom:260.752000pt;}
.yf6{bottom:261.821733pt;}
.y16c{bottom:262.014667pt;}
.y1d0{bottom:263.418800pt;}
.y1cd{bottom:263.477467pt;}
.yb9{bottom:263.636133pt;}
.yf2{bottom:264.282053pt;}
.ycf{bottom:265.932133pt;}
.y27a{bottom:266.274800pt;}
.y2c8{bottom:266.316133pt;}
.y3a3{bottom:266.741333pt;}
.y340{bottom:268.227067pt;}
.y22{bottom:269.666933pt;}
.y11f{bottom:269.817733pt;}
.y20e{bottom:270.217467pt;}
.y148{bottom:270.328133pt;}
.yf1{bottom:272.521520pt;}
.y31c{bottom:272.846933pt;}
.ya3{bottom:272.888133pt;}
.y2a2{bottom:272.902800pt;}
.y76{bottom:275.612133pt;}
.yf5{bottom:277.817733pt;}
.y16b{bottom:278.010667pt;}
.y3a2{bottom:278.744000pt;}
.y1cc{bottom:279.473467pt;}
.yb8{bottom:279.632133pt;}
.y33f{bottom:280.229733pt;}
.yf0{bottom:280.760987pt;}
.yce{bottom:281.928133pt;}
.y279{bottom:282.270800pt;}
.y2c7{bottom:282.312133pt;}
.y21{bottom:285.662933pt;}
.y11e{bottom:285.813733pt;}
.y20d{bottom:286.213467pt;}
.y147{bottom:286.324133pt;}
.ya2{bottom:288.884133pt;}
.y2a1{bottom:288.898800pt;}
.yef{bottom:288.948267pt;}
.y2f0{bottom:289.741333pt;}
.y3a1{bottom:290.746667pt;}
.y75{bottom:291.608133pt;}
.y31b{bottom:291.641600pt;}
.y33e{bottom:292.232400pt;}
.y2ef{bottom:292.408133pt;}
.ye8{bottom:293.770787pt;}
.yf4{bottom:293.813733pt;}
.y1cb{bottom:295.469467pt;}
.yb7{bottom:295.628133pt;}
.yee{bottom:297.469733pt;}
.ycd{bottom:297.924133pt;}
.y278{bottom:298.266800pt;}
.y2c6{bottom:298.308133pt;}
.y20{bottom:301.658933pt;}
.y16a{bottom:302.010667pt;}
.y146{bottom:302.320133pt;}
.y3a0{bottom:302.749333pt;}
.y33d{bottom:304.235067pt;}
.ya1{bottom:304.880133pt;}
.y2ee{bottom:305.741467pt;}
.y20c{bottom:310.213467pt;}
.y31a{bottom:310.436267pt;}
.y2a0{bottom:314.230800pt;}
.y277{bottom:314.262800pt;}
.y2c5{bottom:314.304133pt;}
.y39f{bottom:314.752000pt;}
.y74{bottom:315.608133pt;}
.y33c{bottom:316.237733pt;}
.y1f{bottom:317.654933pt;}
.y145{bottom:318.316133pt;}
.y2ed{bottom:319.074800pt;}
.y1ca{bottom:319.469467pt;}
.yb6{bottom:319.628133pt;}
.ya0{bottom:320.876133pt;}
.ycc{bottom:321.924133pt;}
.y20b{bottom:326.209467pt;}
.y39e{bottom:326.754667pt;}
.y105{bottom:326.957733pt;}
.y23c{bottom:327.749333pt;}
.y33b{bottom:328.240400pt;}
.y319{bottom:329.230933pt;}
.y29f{bottom:330.226800pt;}
.y276{bottom:330.258800pt;}
.y2c4{bottom:330.300133pt;}
.y23d{bottom:330.414933pt;}
.y23b{bottom:330.422933pt;}
.y1af{bottom:333.462533pt;}
.y1e{bottom:333.650933pt;}
.y144{bottom:334.312133pt;}
.y1c9{bottom:335.465467pt;}
.yb5{bottom:335.624133pt;}
.y9f{bottom:336.872133pt;}
.y39d{bottom:338.757333pt;}
.y33a{bottom:340.243067pt;}
.y104{bottom:340.291067pt;}
.y169{bottom:340.674667pt;}
.y20a{bottom:342.205467pt;}
.y196{bottom:343.058533pt;}
.y29e{bottom:346.222800pt;}
.y2c3{bottom:346.296133pt;}
.y23a{bottom:346.418933pt;}
.y318{bottom:348.025600pt;}
.y1d{bottom:349.646933pt;}
.y143{bottom:350.308133pt;}
.y39c{bottom:350.760000pt;}
.y1c8{bottom:351.461467pt;}
.yb4{bottom:351.620133pt;}
.y339{bottom:352.245733pt;}
.y9e{bottom:352.868133pt;}
.y103{bottom:353.624400pt;}
.y275{bottom:355.590800pt;}
.y168{bottom:356.670667pt;}
.y209{bottom:358.201467pt;}
.y238{bottom:359.748000pt;}
.y236{bottom:361.081333pt;}
.ycb{bottom:361.928133pt;}
.y29d{bottom:362.218800pt;}
.y237{bottom:362.414933pt;}
.y235{bottom:362.430933pt;}
.y39b{bottom:362.762667pt;}
.y73{bottom:363.608133pt;}
.y338{bottom:364.248400pt;}
.y1c{bottom:365.642933pt;}
.y142{bottom:366.304133pt;}
.y317{bottom:366.820267pt;}
.y102{bottom:366.957733pt;}
.y1c7{bottom:367.457467pt;}
.yb3{bottom:367.616133pt;}
.y9d{bottom:368.864133pt;}
.y274{bottom:371.586800pt;}
.y2c2{bottom:371.628133pt;}
.y36b{bottom:372.322800pt;}
.y167{bottom:372.666667pt;}
.y208{bottom:374.197467pt;}
.y39a{bottom:374.765333pt;}
.y337{bottom:376.251067pt;}
.yca{bottom:377.924133pt;}
.y29c{bottom:378.214800pt;}
.y234{bottom:378.426933pt;}
.y72{bottom:379.604133pt;}
.y1b{bottom:381.638933pt;}
.y141{bottom:382.300133pt;}
.y1c6{bottom:383.453467pt;}
.yb2{bottom:383.612133pt;}
.y36a{bottom:384.325467pt;}
.y9c{bottom:384.860133pt;}
.y316{bottom:385.614933pt;}
.y399{bottom:386.768000pt;}
.y273{bottom:387.582800pt;}
.y2c1{bottom:387.624133pt;}
.y336{bottom:388.253733pt;}
.y207{bottom:390.193467pt;}
.y109{bottom:392.418667pt;}
.y233{bottom:394.422933pt;}
.y71{bottom:395.600133pt;}
.y369{bottom:396.328133pt;}
.y1a{bottom:397.634933pt;}
.y140{bottom:398.296133pt;}
.y398{bottom:398.770667pt;}
.yb1{bottom:399.608133pt;}
.y335{bottom:400.256400pt;}
.y9b{bottom:400.856133pt;}
.y205{bottom:403.522667pt;}
.y29b{bottom:403.546800pt;}
.y272{bottom:403.578800pt;}
.y2c0{bottom:403.620133pt;}
.y315{bottom:404.409600pt;}
.y206{bottom:406.189467pt;}
.y204{bottom:406.205467pt;}
.y1c5{bottom:407.453467pt;}
.y368{bottom:408.330800pt;}
.y232{bottom:410.418933pt;}
.y11a{bottom:410.504267pt;}
.y397{bottom:410.773333pt;}
.y70{bottom:411.596133pt;}
.y334{bottom:412.259067pt;}
.y181{bottom:412.903867pt;}
.y13f{bottom:414.292133pt;}
.ydf{bottom:414.992000pt;}
.y29a{bottom:419.542800pt;}
.y271{bottom:419.574800pt;}
.y2bf{bottom:419.616133pt;}
.y367{bottom:420.333467pt;}
.y203{bottom:422.201467pt;}
.y396{bottom:422.776000pt;}
.y314{bottom:423.204267pt;}
.y230{bottom:423.749333pt;}
.y333{bottom:424.261733pt;}
.y9a{bottom:424.856133pt;}
.y22d{bottom:425.081333pt;}
.y180{bottom:426.237200pt;}
.y22f{bottom:426.414933pt;}
.y19{bottom:426.773600pt;}
.y6f{bottom:427.592133pt;}
.yde{bottom:428.325333pt;}
.y13e{bottom:430.288133pt;}
.y10a{bottom:430.364267pt;}
.y111{bottom:430.364800pt;}
.y366{bottom:432.336133pt;}
.yc9{bottom:432.752133pt;}
.y395{bottom:434.778667pt;}
.y299{bottom:435.538800pt;}
.y270{bottom:435.570800pt;}
.y2be{bottom:435.612133pt;}
.y332{bottom:436.264400pt;}
.y17f{bottom:439.570533pt;}
.y118{bottom:439.913600pt;}
.ydd{bottom:441.658667pt;}
.y313{bottom:441.998933pt;}
.y22c{bottom:442.434933pt;}
.y18{bottom:442.769600pt;}
.y6e{bottom:443.588133pt;}
.y365{bottom:444.338800pt;}
.yc8{bottom:446.085467pt;}
.y1c4{bottom:446.117467pt;}
.y202{bottom:446.201467pt;}
.y394{bottom:446.781333pt;}
.y331{bottom:448.267067pt;}
.y298{bottom:451.534800pt;}
.y26f{bottom:451.566800pt;}
.y2bd{bottom:451.608133pt;}
.y13d{bottom:454.288133pt;}
.y117{bottom:455.246933pt;}
.y364{bottom:456.341467pt;}
.y17{bottom:458.765600pt;}
.y393{bottom:458.784000pt;}
.yc7{bottom:459.418800pt;}
.y6d{bottom:459.584133pt;}
.y1ae{bottom:460.245200pt;}
.y330{bottom:460.269733pt;}
.y312{bottom:460.793600pt;}
.y1c3{bottom:462.113467pt;}
.y201{bottom:462.197467pt;}
.y4f{bottom:463.428267pt;}
.y195{bottom:465.032000pt;}
.y22b{bottom:466.434933pt;}
.y297{bottom:467.530800pt;}
.y26e{bottom:467.562800pt;}
.y2bc{bottom:467.604133pt;}
.y363{bottom:468.344133pt;}
.y13c{bottom:470.284133pt;}
.y392{bottom:470.786667pt;}
.y32f{bottom:472.272400pt;}
.y99{bottom:474.292133pt;}
.y16{bottom:474.761600pt;}
.y4e{bottom:475.430933pt;}
.y6c{bottom:475.580133pt;}
.y1c2{bottom:478.109467pt;}
.y200{bottom:478.193467pt;}
.y311{bottom:479.588267pt;}
.y362{bottom:480.346800pt;}
.y1a3{bottom:481.479867pt;}
.y22a{bottom:482.430933pt;}
.y391{bottom:482.789333pt;}
.y296{bottom:483.526800pt;}
.y26d{bottom:483.558800pt;}
.y2bb{bottom:483.600133pt;}
.y32e{bottom:484.275067pt;}
.y113{bottom:486.190933pt;}
.y13b{bottom:486.280133pt;}
.y98{bottom:490.288133pt;}
.y15{bottom:490.757600pt;}
.y1fe{bottom:491.522667pt;}
.y6b{bottom:491.576133pt;}
.y361{bottom:492.349467pt;}
.y1c1{bottom:494.105467pt;}
.y1ff{bottom:494.189467pt;}
.y1fd{bottom:494.213467pt;}
.y390{bottom:494.792000pt;}
.y32d{bottom:496.277733pt;}
.y294{bottom:496.856000pt;}
.y310{bottom:498.382933pt;}
.y229{bottom:498.426933pt;}
.y295{bottom:499.522800pt;}
.y26c{bottom:499.554800pt;}
.y2ba{bottom:499.596133pt;}
.y293{bottom:499.624133pt;}
.y13a{bottom:502.276133pt;}
.y4d{bottom:502.768267pt;}
.y1ba{bottom:503.765200pt;}
.y360{bottom:504.352133pt;}
.y198{bottom:505.187867pt;}
.y97{bottom:506.284133pt;}
.y14{bottom:506.753600pt;}
.y38f{bottom:506.794667pt;}
.y6a{bottom:507.572133pt;}
.y1b1{bottom:508.285200pt;}
.y1c0{bottom:510.101467pt;}
.y228{bottom:514.422933pt;}
.y4c{bottom:514.770933pt;}
.y26b{bottom:515.550800pt;}
.y2b9{bottom:515.592133pt;}
.y292{bottom:515.620133pt;}
.y32c{bottom:516.277733pt;}
.y35f{bottom:516.354800pt;}
.y1fc{bottom:518.213467pt;}
.y139{bottom:518.272133pt;}
.y38e{bottom:518.797333pt;}
.y30f{bottom:519.844267pt;}
.y30c{bottom:519.844400pt;}
.y96{bottom:522.280133pt;}
.y13{bottom:522.749600pt;}
.y69{bottom:523.568133pt;}
.y199{bottom:524.075053pt;}
.y1bf{bottom:526.097467pt;}
.y4b{bottom:526.773600pt;}
.y227{bottom:530.418933pt;}
.y38d{bottom:530.800000pt;}
.y26a{bottom:531.546800pt;}
.y2b8{bottom:531.588133pt;}
.y291{bottom:531.616133pt;}
.y1fb{bottom:534.209467pt;}
.y138{bottom:534.268133pt;}
.y1b2{bottom:537.783733pt;}
.y95{bottom:538.276133pt;}
.y12{bottom:538.745600pt;}
.y4a{bottom:538.776267pt;}
.y30e{bottom:541.305600pt;}
.y1be{bottom:542.093467pt;}
.y38c{bottom:542.802667pt;}
.y19a{bottom:542.911467pt;}
.y226{bottom:546.414933pt;}
.y269{bottom:547.542800pt;}
.y2b7{bottom:547.584133pt;}
.y290{bottom:547.612133pt;}
.y68{bottom:548.900133pt;}
.y1fa{bottom:550.205467pt;}
.y137{bottom:550.264133pt;}
.y49{bottom:550.778933pt;}
.y2dc{bottom:551.389467pt;}
.y11{bottom:554.741600pt;}
.y38b{bottom:554.805333pt;}
.y1bd{bottom:558.089467pt;}
.y15b{bottom:558.476667pt;}
.y1b9{bottom:558.645200pt;}
.y114{bottom:559.186667pt;}
.y32b{bottom:560.563600pt;}
.y19b{bottom:561.747880pt;}
.y2db{bottom:562.056000pt;}
.y30d{bottom:562.766933pt;}
.y48{bottom:562.781600pt;}
.y268{bottom:563.538800pt;}
.y2b6{bottom:563.580133pt;}
.y94{bottom:563.608133pt;}
.y2da{bottom:564.722800pt;}
.y67{bottom:564.896133pt;}
.y1f9{bottom:566.201467pt;}
.y136{bottom:566.260133pt;}
.y38a{bottom:566.808000pt;}
.y1b3{bottom:567.333040pt;}
.y1a2{bottom:568.242533pt;}
.y10{bottom:570.737600pt;}
.y1bc{bottom:571.418667pt;}
.y15a{bottom:571.810000pt;}
.y1bb{bottom:574.085467pt;}
.y47{bottom:574.784267pt;}
.y32a{bottom:576.559600pt;}
.y326{bottom:577.661333pt;}
.y2d9{bottom:578.056133pt;}
.y389{bottom:578.810667pt;}
.y267{bottom:579.534800pt;}
.y24a{bottom:579.558933pt;}
.y2b5{bottom:579.576133pt;}
.y93{bottom:579.604133pt;}
.y19c{bottom:580.584293pt;}
.y66{bottom:580.892133pt;}
.y1f8{bottom:582.197467pt;}
.y135{bottom:582.256133pt;}
.y325{bottom:583.394800pt;}
.y159{bottom:585.143333pt;}
.yf{bottom:586.733600pt;}
.y46{bottom:586.786933pt;}
.y2e4{bottom:587.821333pt;}
.y2d8{bottom:588.722667pt;}
.y2e3{bottom:590.488133pt;}
.y388{bottom:590.813333pt;}
.y2d7{bottom:591.389467pt;}
.y329{bottom:592.555600pt;}
.y249{bottom:592.892267pt;}
.y266{bottom:595.530800pt;}
.y2b4{bottom:595.572133pt;}
.y92{bottom:595.600133pt;}
.y324{bottom:596.728133pt;}
.y1b4{bottom:596.831573pt;}
.y65{bottom:596.888133pt;}
.y1f7{bottom:598.193467pt;}
.y134{bottom:598.252133pt;}
.y158{bottom:598.476667pt;}
.y19d{bottom:599.420693pt;}
.y45{bottom:601.449600pt;}
.y2d5{bottom:602.056000pt;}
.ye{bottom:602.729600pt;}
.y387{bottom:602.816000pt;}
.y2e2{bottom:603.821467pt;}
.y2d4{bottom:604.722800pt;}
.y248{bottom:606.225600pt;}
.y1f1{bottom:607.418800pt;}
.y1f5{bottom:611.522667pt;}
.y265{bottom:611.526800pt;}
.y2b3{bottom:611.568133pt;}
.y91{bottom:611.596133pt;}
.y157{bottom:611.810000pt;}
.y64{bottom:612.884133pt;}
.y1f6{bottom:614.189467pt;}
.y1f4{bottom:614.197467pt;}
.y133{bottom:614.248133pt;}
.y386{bottom:614.818667pt;}
.y328{bottom:614.955600pt;}
.y2e1{bottom:617.154800pt;}
.y1f0{bottom:618.085333pt;}
.y19e{bottom:618.257107pt;}
.yd{bottom:618.725600pt;}
.y247{bottom:619.558933pt;}
.y1ef{bottom:620.752133pt;}
.y263{bottom:624.856000pt;}
.y156{bottom:625.143333pt;}
.y1b5{bottom:626.380867pt;}
.y385{bottom:626.821333pt;}
.y264{bottom:627.522800pt;}
.y262{bottom:627.526800pt;}
.y2b2{bottom:627.564133pt;}
.y90{bottom:627.592133pt;}
.y63{bottom:628.880133pt;}
.y1f3{bottom:630.193467pt;}
.y246{bottom:630.225333pt;}
.y132{bottom:630.244133pt;}
.y1ee{bottom:631.418667pt;}
.y115{bottom:632.182400pt;}
.y245{bottom:632.892267pt;}
.y1ed{bottom:634.085467pt;}
.yc{bottom:634.721600pt;}
.y44{bottom:634.778933pt;}
.y19f{bottom:637.093520pt;}
.y384{bottom:638.824000pt;}
.y119{bottom:640.646933pt;}
.y260{bottom:640.856000pt;}
.y11c{bottom:643.292267pt;}
.y261{bottom:643.522800pt;}
.y25f{bottom:643.552133pt;}
.y2b1{bottom:643.560133pt;}
.y8f{bottom:643.588133pt;}
.y1eb{bottom:644.752000pt;}
.y62{bottom:644.876133pt;}
.y1f2{bottom:646.189467pt;}
.y244{bottom:646.225600pt;}
.y131{bottom:646.240133pt;}
.y43{bottom:646.781600pt;}
.y1ea{bottom:647.418800pt;}
.y15f{bottom:650.604000pt;}
.yb{bottom:650.717600pt;}
.y383{bottom:650.826667pt;}
.y309{bottom:654.990933pt;}
.y1b6{bottom:655.879400pt;}
.y1a0{bottom:655.929933pt;}
.y242{bottom:656.892000pt;}
.y25e{bottom:659.548133pt;}
.y2b0{bottom:659.556133pt;}
.y241{bottom:659.558933pt;}
.y8e{bottom:659.584133pt;}
.y61{bottom:660.872133pt;}
.y42{bottom:661.444267pt;}
.y130{bottom:662.236133pt;}
.y382{bottom:662.829333pt;}
.y35e{bottom:663.462933pt;}
.ya{bottom:666.713600pt;}
.y165{bottom:669.851200pt;}
.y112{bottom:670.131067pt;}
.y10f{bottom:670.164267pt;}
.y240{bottom:672.892267pt;}
.y308{bottom:673.785600pt;}
.y1a1{bottom:674.766347pt;}
.y381{bottom:674.832000pt;}
.y25d{bottom:675.544133pt;}
.y2af{bottom:675.552133pt;}
.y8d{bottom:675.580133pt;}
.y1a7{bottom:676.697200pt;}
.y35d{bottom:676.796267pt;}
.y60{bottom:676.868133pt;}
.y12f{bottom:678.232133pt;}
.y1a5{bottom:679.141200pt;}
.y9{bottom:682.709600pt;}
.y1b7{bottom:685.428707pt;}
.y10e{bottom:685.776400pt;}
.y23f{bottom:686.225600pt;}
.y380{bottom:686.834667pt;}
.y225{bottom:686.885467pt;}
.y35c{bottom:690.129600pt;}
.y2ae{bottom:691.548133pt;}
.y28f{bottom:691.576133pt;}
.y307{bottom:692.580267pt;}
.y5f{bottom:692.864133pt;}
.y12e{bottom:694.228133pt;}
.y41{bottom:696.780267pt;}
.y223{bottom:697.552000pt;}
.y8{bottom:698.705600pt;}
.y37f{bottom:698.837333pt;}
.y222{bottom:700.218800pt;}
.y25c{bottom:700.876133pt;}
.y8c{bottom:700.912133pt;}
.y163{bottom:701.147200pt;}
.y18e{bottom:707.163867pt;}
.y2ad{bottom:707.544133pt;}
.y28e{bottom:707.572133pt;}
.y40{bottom:708.782933pt;}
.y5e{bottom:708.860133pt;}
.y12d{bottom:710.224133pt;}
.y35b{bottom:710.257600pt;}
.y37e{bottom:710.840000pt;}
.y306{bottom:711.374933pt;}
.y221{bottom:713.552133pt;}
.y7{bottom:714.701600pt;}
.y10c{bottom:715.185600pt;}
.y25b{bottom:716.872133pt;}
.y8b{bottom:716.908133pt;}
.y161{bottom:717.464533pt;}
.y3f{bottom:720.785600pt;}
.y18d{bottom:721.326533pt;}
.y37d{bottom:722.842667pt;}
.y2ac{bottom:723.540133pt;}
.y28d{bottom:723.568133pt;}
.y5d{bottom:724.860133pt;}
.y220{bottom:726.885467pt;}
.y35a{bottom:729.052267pt;}
.y305{bottom:730.169600pt;}
.y10b{bottom:730.517600pt;}
.y3e{bottom:732.788267pt;}
.y25a{bottom:732.868133pt;}
.y8a{bottom:732.904133pt;}
.y12c{bottom:734.224133pt;}
.y37c{bottom:734.845333pt;}
.y28c{bottom:739.564133pt;}
.y21f{bottom:740.218800pt;}
.y5c{bottom:740.884133pt;}
.y3d{bottom:744.790933pt;}
.y182{bottom:745.035867pt;}
.y37b{bottom:746.848000pt;}
.y359{bottom:747.846933pt;}
.y1a8{bottom:748.134533pt;}
.y259{bottom:748.864133pt;}
.y2ab{bottom:748.872133pt;}
.y89{bottom:748.900133pt;}
.y304{bottom:748.964267pt;}
.y15c{bottom:750.393733pt;}
.y34{bottom:754.493467pt;}
.y28b{bottom:755.560133pt;}
.y3c{bottom:756.793600pt;}
.y5b{bottom:756.880133pt;}
.y37a{bottom:758.850667pt;}
.y106{bottom:761.461733pt;}
.y183{bottom:763.923053pt;}
.y258{bottom:764.860133pt;}
.y2aa{bottom:764.868133pt;}
.y88{bottom:764.896133pt;}
.y358{bottom:766.641600pt;}
.y303{bottom:767.758933pt;}
.y3b{bottom:768.796267pt;}
.y33{bottom:769.160133pt;}
.y379{bottom:770.853333pt;}
.y28a{bottom:771.556133pt;}
.y1a9{bottom:777.633067pt;}
.y256{bottom:778.189333pt;}
.y3a{bottom:780.798933pt;}
.y257{bottom:780.856133pt;}
.y2a9{bottom:780.864133pt;}
.y5a{bottom:780.880133pt;}
.y255{bottom:780.884133pt;}
.y87{bottom:780.892133pt;}
.y184{bottom:782.759467pt;}
.y378{bottom:782.856000pt;}
.y32{bottom:783.826800pt;}
.y357{bottom:785.436267pt;}
.y302{bottom:786.553600pt;}
.y289{bottom:787.552133pt;}
.y39{bottom:792.801600pt;}
.y377{bottom:794.858667pt;}
.y2a8{bottom:796.860133pt;}
.y254{bottom:796.880133pt;}
.y86{bottom:796.888133pt;}
.y1b0{bottom:797.081200pt;}
.y185{bottom:801.595880pt;}
.y31{bottom:803.293467pt;}
.y288{bottom:803.548133pt;}
.y356{bottom:804.230933pt;}
.y38{bottom:804.804267pt;}
.y376{bottom:806.861333pt;}
.y1aa{bottom:807.182373pt;}
.y301{bottom:807.844267pt;}
.y2fe{bottom:807.844400pt;}
.y18c{bottom:808.087733pt;}
.y2a6{bottom:810.189333pt;}
.y2a7{bottom:812.856133pt;}
.y253{bottom:812.876133pt;}
.y85{bottom:812.884133pt;}
.y37{bottom:816.806933pt;}
.y375{bottom:818.864000pt;}
.y287{bottom:819.544133pt;}
.y186{bottom:820.432280pt;}
.y355{bottom:823.025600pt;}
.y30{bottom:823.293467pt;}
.y15d{bottom:828.072000pt;}
.y36{bottom:828.809600pt;}
.y252{bottom:828.872133pt;}
.y59{bottom:828.880133pt;}
.y300{bottom:829.305600pt;}
.y374{bottom:830.866667pt;}
.y107{bottom:834.457467pt;}
.y286{bottom:835.540133pt;}
.y1ab{bottom:836.680907pt;}
.y2f{bottom:837.693467pt;}
.y187{bottom:839.268693pt;}
.y373{bottom:842.869333pt;}
.y35{bottom:843.472267pt;}
.y352{bottom:843.654933pt;}
.y251{bottom:844.868133pt;}
.y58{bottom:844.876133pt;}
.y2ff{bottom:850.766933pt;}
.y285{bottom:851.536133pt;}
.y372{bottom:854.872000pt;}
.y188{bottom:858.105107pt;}
.y250{bottom:860.864133pt;}
.y57{bottom:860.872133pt;}
.y2e{bottom:862.760133pt;}
.y354{bottom:865.116267pt;}
.y1ac{bottom:866.230200pt;}
.y371{bottom:866.874667pt;}
.y50{bottom:870.584133pt;}
.y30b{bottom:871.394800pt;}
.y24f{bottom:876.860133pt;}
.y56{bottom:876.868133pt;}
.y189{bottom:876.941520pt;}
.y194{bottom:877.605280pt;}
.y370{bottom:878.877333pt;}
.y30a{bottom:884.728133pt;}
.y193{bottom:885.066973pt;}
.y353{bottom:886.577467pt;}
.y2d{bottom:886.760133pt;}
.y51{bottom:887.890800pt;}
.y24b{bottom:890.189333pt;}
.y36f{bottom:890.880000pt;}
.y24d{bottom:891.522667pt;}
.y192{bottom:892.528680pt;}
.y24c{bottom:892.856133pt;}
.y55{bottom:892.864133pt;}
.y1ad{bottom:895.728733pt;}
.y18a{bottom:895.777933pt;}
.y191{bottom:899.943107pt;}
.y36e{bottom:902.882667pt;}
.y15e{bottom:905.750253pt;}
.y351{bottom:907.205467pt;}
.y190{bottom:907.404800pt;}
.y108{bottom:907.453200pt;}
.y54{bottom:908.860133pt;}
.y18b{bottom:914.614347pt;}
.y36d{bottom:914.885333pt;}
.y110{bottom:915.917600pt;}
.y197{bottom:916.544267pt;}
.y10d{bottom:918.563467pt;}
.y18f{bottom:918.988133pt;}
.y350{bottom:920.538800pt;}
.y2d3{bottom:922.824000pt;}
.y53{bottom:924.856133pt;}
.y36c{bottom:926.888000pt;}
.y52{bottom:977.198267pt;}
.y84{bottom:978.284533pt;}
.h27{height:10.665333pt;}
.h22{height:10.666667pt;}
.h1a{height:12.000000pt;}
.h29{height:17.333333pt;}
.h1f{height:19.663765pt;}
.h21{height:20.806548pt;}
.h13{height:21.713425pt;}
.h8{height:22.630400pt;}
.h12{height:23.143219pt;}
.ha{height:29.306667pt;}
.h25{height:29.569083pt;}
.h1d{height:29.569613pt;}
.h5{height:30.464000pt;}
.h23{height:30.938057pt;}
.h24{height:31.250731pt;}
.h14{height:32.012587pt;}
.h10{height:32.651285pt;}
.h26{height:32.961621pt;}
.h1c{height:33.162595pt;}
.h28{height:33.493333pt;}
.h18{height:34.066129pt;}
.hf{height:34.816000pt;}
.h1b{height:35.048617pt;}
.h2{height:37.680000pt;}
.h3{height:39.168000pt;}
.h1e{height:39.421236pt;}
.h9{height:41.830400pt;}
.h16{height:42.677808pt;}
.hd{height:43.520000pt;}
.h1{height:46.053333pt;}
.h7{height:46.092000pt;}
.hc{height:46.605867pt;}
.he{height:46.755200pt;}
.h17{height:46.941867pt;}
.h4{height:50.240000pt;}
.hb{height:58.613333pt;}
.h6{height:62.800000pt;}
.h11{height:172.728000pt;}
.h19{height:283.396000pt;}
.h20{height:468.966667pt;}
.h15{height:541.580000pt;}
.h0{height:1056.000000pt;}
.wd{width:5.333333pt;}
.w11{width:5.334667pt;}
.w4{width:6.666667pt;}
.w7{width:36.000000pt;}
.w5{width:37.333333pt;}
.w9{width:42.665333pt;}
.w8{width:42.666667pt;}
.w12{width:43.998667pt;}
.wf{width:44.000000pt;}
.wc{width:48.000000pt;}
.we{width:49.333333pt;}
.w13{width:53.333333pt;}
.w10{width:54.666667pt;}
.wa{width:77.333333pt;}
.wb{width:89.333333pt;}
.w3{width:245.904000pt;}
.w1{width:302.585333pt;}
.w6{width:661.417333pt;}
.w2{width:661.420000pt;}
.w0{width:816.000000pt;}
.x62{left:-0.946667pt;}
.x0{left:0.000000pt;}
.x9b{left:1.720267pt;}
.x4c{left:8.721600pt;}
.xa{left:9.867333pt;}
.x3d{left:11.413467pt;}
.x73{left:12.320000pt;}
.x9c{left:13.240133pt;}
.x4b{left:15.474133pt;}
.x2{left:48.000000pt;}
.x3{left:60.002667pt;}
.x9{left:65.373333pt;}
.x13{left:76.624000pt;}
.x8{left:82.696400pt;}
.x2e{left:84.725867pt;}
.x4a{left:92.099493pt;}
.x10{left:93.432533pt;}
.x27{left:98.164667pt;}
.x12{left:99.852640pt;}
.x11{left:105.964933pt;}
.x32{left:111.542133pt;}
.xb{left:114.014267pt;}
.x33{left:118.374080pt;}
.x43{left:119.852133pt;}
.xc{left:124.326933pt;}
.x14{left:129.743200pt;}
.x16{left:133.129200pt;}
.x48{left:135.936267pt;}
.xd{left:137.243920pt;}
.x35{left:140.802667pt;}
.x2d{left:142.297200pt;}
.x38{left:149.072133pt;}
.x34{left:150.182800pt;}
.x8d{left:157.906400pt;}
.x17{left:167.818667pt;}
.x5{left:188.914933pt;}
.x26{left:195.263333pt;}
.x15{left:196.538667pt;}
.x42{left:212.561600pt;}
.x44{left:218.198933pt;}
.x37{left:221.264800pt;}
.x89{left:225.638667pt;}
.x1{left:230.000000pt;}
.x87{left:233.414667pt;}
.x94{left:235.333333pt;}
.x39{left:236.666533pt;}
.x88{left:238.747733pt;}
.x65{left:240.593333pt;}
.x66{left:245.926800pt;}
.x84{left:248.582667pt;}
.x85{left:253.916000pt;}
.x8a{left:262.971733pt;}
.x76{left:269.748000pt;}
.xf{left:274.389467pt;}
.x5d{left:277.510667pt;}
.xe{left:279.142800pt;}
.x56{left:281.068000pt;}
.x30{left:284.056000pt;}
.x67{left:288.058667pt;}
.x68{left:293.391733pt;}
.x7a{left:294.724000pt;}
.x29{left:297.494667pt;}
.x74{left:305.306667pt;}
.x36{left:315.447867pt;}
.x1a{left:318.530667pt;}
.x5e{left:320.177733pt;}
.x18{left:324.488000pt;}
.x1b{left:326.500000pt;}
.x28{left:327.973333pt;}
.x3c{left:330.360000pt;}
.x2f{left:337.042667pt;}
.x7b{left:338.723733pt;}
.x77{left:343.482667pt;}
.x75{left:347.972533pt;}
.x97{left:349.210800pt;}
.x4f{left:351.281600pt;}
.x7f{left:353.775733pt;}
.x96{left:364.444933pt;}
.x3f{left:365.741600pt;}
.x3e{left:367.693467pt;}
.x40{left:371.671773pt;}
.x1c{left:379.066667pt;}
.x78{left:386.149467pt;}
.x82{left:387.041333pt;}
.x19{left:391.285333pt;}
.x41{left:399.950933pt;}
.x7{left:401.333333pt;}
.x7c{left:402.732000pt;}
.x53{left:408.841067pt;}
.x9a{left:416.769333pt;}
.x80{left:418.812000pt;}
.x92{left:419.914667pt;}
.x50{left:421.156267pt;}
.x4e{left:427.906427pt;}
.x5b{left:432.452000pt;}
.x4d{left:433.552267pt;}
.x83{left:435.040667pt;}
.x8e{left:439.434667pt;}
.x98{left:441.412533pt;}
.x99{left:443.264533pt;}
.x7e{left:445.555067pt;}
.x7d{left:446.732133pt;}
.x45{left:450.449600pt;}
.x47{left:455.660267pt;}
.x93{left:463.914667pt;}
.x81{left:466.812400pt;}
.x51{left:469.253600pt;}
.x49{left:471.745600pt;}
.x52{left:473.721333pt;}
.x31{left:475.744000pt;}
.x8f{left:483.434267pt;}
.x70{left:485.048000pt;}
.x2a{left:489.184000pt;}
.x54{left:501.401333pt;}
.x3a{left:509.936000pt;}
.x23{left:513.276000pt;}
.x79{left:515.547733pt;}
.x3b{left:516.603067pt;}
.x21{left:519.234667pt;}
.x5c{left:521.785467pt;}
.x24{left:522.774800pt;}
.x2b{left:531.845333pt;}
.x71{left:533.048133pt;}
.x95{left:534.174267pt;}
.x86{left:539.177333pt;}
.x55{left:544.068800pt;}
.x57{left:545.760000pt;}
.x46{left:548.370933pt;}
.x2c{left:552.425333pt;}
.x25{left:565.862667pt;}
.x6a{left:566.882667pt;}
.x72{left:580.936800pt;}
.x22{left:586.029333pt;}
.x5f{left:593.338667pt;}
.x6c{left:602.130667pt;}
.x6b{left:609.548800pt;}
.x90{left:612.840000pt;}
.x58{left:623.093200pt;}
.x6{left:624.851067pt;}
.x60{left:636.006000pt;}
.x61{left:643.714667pt;}
.x6d{left:644.798000pt;}
.x91{left:656.839733pt;}
.x20{left:658.944000pt;}
.x59{left:690.666667pt;}
.x63{left:691.714533pt;}
.x8b{left:694.214667pt;}
.x1d{left:701.590667pt;}
.x69{left:707.045867pt;}
.x1f{left:708.010773pt;}
.x1e{left:714.123067pt;}
.x6e{left:715.884000pt;}
.x64{left:728.148933pt;}
.x4{left:734.088933pt;}
.x8c{left:738.214133pt;}
.x6f{left:763.884133pt;}
.x5a{left:768.000000pt;}
}


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