
/* 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_637c1139b395.woff")format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_f81d615bd489.woff")format("woff");}.ff2{font-family:ff2;line-height:1.179000;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_d12585e2c40c.woff")format("woff");}.ff3{font-family:ff3;line-height:0.893000;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_68eae0147f5b.woff")format("woff");}.ff4{font-family:ff4;line-height:0.865000;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_e5383cc9ecd0.woff")format("woff");}.ff5{font-family:ff5;line-height:0.870000;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_b7f0fcce20af.woff")format("woff");}.ff6{font-family:ff6;line-height:0.870000;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_8ab90e42b8dc.woff")format("woff");}.ff7{font-family:ff7;line-height:0.865000;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_2502d2c0e531.woff")format("woff");}.ff8{font-family:ff8;line-height:0.870000;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_75c5cac7a4c2.woff")format("woff");}.ff9{font-family:ff9;line-height:0.870000;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_c5e083402fe2.woff")format("woff");}.ffa{font-family:ffa;line-height:0.861000;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_8ab90e42b8dc.woff")format("woff");}.ffb{font-family:ffb;line-height:0.865000;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_400f89081901.woff")format("woff");}.ffc{font-family:ffc;line-height:0.697000;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_ca68bec06bc6.woff")format("woff");}.ffd{font-family:ffd;line-height:0.870000;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_c5e083402fe2.woff")format("woff");}.ffe{font-family:ffe;line-height:0.861000;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_8ab90e42b8dc.woff")format("woff");}.fff{font-family:fff;line-height:0.865000;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_ea3345e02d68.woff")format("woff");}.ff10{font-family:ff10;line-height:0.870000;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_cf22e8cc3557.woff")format("woff");}.ff11{font-family:ff11;line-height:3.075000;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_9f4ecf52ee07.woff")format("woff");}.ff12{font-family:ff12;line-height:0.870000;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_e05149fd486f.woff")format("woff");}.ff13{font-family:ff13;line-height:0.870000;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_68eae0147f5b.woff")format("woff");}.ff14{font-family:ff14;line-height:0.865000;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_a9ea70a4e5bf.woff")format("woff");}.ff15{font-family:ff15;line-height:0.870000;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_4742226e059e.woff")format("woff");}.ff16{font-family:ff16;line-height:3.075000;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_400f89081901.woff")format("woff");}.ff17{font-family:ff17;line-height:0.697000;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_9381b558d013.woff")format("woff");}.ff18{font-family:ff18;line-height:0.049000;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_b96199a9af18.woff")format("woff");}.ff19{font-family:ff19;line-height:0.870000;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_ed591defbf07.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.865000;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_dbe796370c32.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.870000;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_72ddfa97183b.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.870000;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_e0e074b5a5f5.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.865000;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_72ddfa97183b.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.870000;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_c5e083402fe2.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.861000;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_95368bd0975b.woff")format("woff");}.ff20{font-family:ff20;line-height:0.870000;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_282f9dcb5d0d.woff")format("woff");}.ff21{font-family:ff21;line-height:0.870000;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_02672c7f882d.woff")format("woff");}.ff22{font-family:ff22;line-height:0.120000;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_502b6a75ceac.woff")format("woff");}.ff23{font-family:ff23;line-height:0.870000;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_ed591defbf07.woff")format("woff");}.ff24{font-family:ff24;line-height:0.865000;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_99e6e2f83046.woff")format("woff");}.ff25{font-family:ff25;line-height:0.870000;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_e73ecaa1db73.woff")format("woff");}.ff26{font-family:ff26;line-height:0.870000;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_71648e8699d7.woff")format("woff");}.ff27{font-family:ff27;line-height:0.870000;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_e0e074b5a5f5.woff")format("woff");}.ff28{font-family:ff28;line-height:0.865000;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_e0e074b5a5f5.woff")format("woff");}.ff29{font-family:ff29;line-height:0.865000;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_38b6d035e8cd.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.870000;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_e0e074b5a5f5.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.865000;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_c5e083402fe2.woff")format("woff");}.ff2c{font-family:ff2c;line-height:0.861000;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_6892f39d0683.woff")format("woff");}.ff2d{font-family:ff2d;line-height:0.870000;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_ed591defbf07.woff")format("woff");}.ff2e{font-family:ff2e;line-height:0.865000;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_799939c2c672.woff")format("woff");}.ff2f{font-family:ff2f;line-height:0.860000;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_c4c0f44426c0.woff")format("woff");}.ff30{font-family:ff30;line-height:3.075000;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_27ca16ce4c24.woff")format("woff");}.ff31{font-family:ff31;line-height:0.855000;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_930de46ee651.woff")format("woff");}.ff32{font-family:ff32;line-height:0.870000;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_ed591defbf07.woff")format("woff");}.ff33{font-family:ff33;line-height:0.865000;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_3a68d12edafc.woff")format("woff");}.ff34{font-family:ff34;line-height:3.075000;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_a70af5a5ef35.woff")format("woff");}.ff35{font-family:ff35;line-height:0.870000;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_c5e083402fe2.woff")format("woff");}.ff36{font-family:ff36;line-height:0.861000;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_76d19e2e6877.woff")format("woff");}.ff37{font-family:ff37;line-height:0.870000;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_542336427265.woff")format("woff");}.ff38{font-family:ff38;line-height:0.870000;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_e0e074b5a5f5.woff")format("woff");}.ff39{font-family:ff39;line-height:0.865000;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_227a63be0155.woff")format("woff");}.ff3a{font-family:ff3a;line-height:0.870000;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_ff7cf55ad385.woff")format("woff");}.ff3b{font-family:ff3b;line-height:0.870000;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_c5e083402fe2.woff")format("woff");}.ff3c{font-family:ff3c;line-height:0.861000;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_2a816927cc4b.woff")format("woff");}.ff3d{font-family:ff3d;line-height:0.870000;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_b681d4697be9.woff")format("woff");}.ff3e{font-family:ff3e;line-height:0.870000;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_95ea67eb741a.woff")format("woff");}.ff3f{font-family:ff3f;line-height:3.075000;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_c5e083402fe2.woff")format("woff");}.ff40{font-family:ff40;line-height:0.861000;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_7b9a044fd619.woff")format("woff");}.ff41{font-family:ff41;line-height:0.870000;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_e4e307f086de.woff")format("woff");}.ff42{font-family:ff42;line-height:0.865000;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_dbbddaf06dc9.woff")format("woff");}.ff43{font-family:ff43;line-height:0.870000;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_e7d519655602.woff")format("woff");}.ff44{font-family:ff44;line-height:0.870000;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_e4e307f086de.woff")format("woff");}.ff45{font-family:ff45;line-height:0.865000;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_fa5c485e75f4.woff")format("woff");}.ff46{font-family:ff46;line-height:0.870000;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_dc59c35a5f3a.woff")format("woff");}.ff47{font-family:ff47;line-height:0.870000;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_e4e307f086de.woff")format("woff");}.ff48{font-family:ff48;line-height:0.865000;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_6336119da3b5.woff")format("woff");}.ff49{font-family:ff49;line-height:0.870000;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_95f0cc796050.woff")format("woff");}.ff4a{font-family:ff4a;line-height:3.075000;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_f1ae4d7b0450.woff")format("woff");}.ff4b{font-family:ff4b;line-height:0.870000;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_3ae9769fcec8.woff")format("woff");}.ff4c{font-family:ff4c;line-height:0.870000;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_c5e083402fe2.woff")format("woff");}.ff4d{font-family:ff4d;line-height:0.861000;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_0c42e9990b80.woff")format("woff");}.ff4e{font-family:ff4e;line-height:0.870000;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_ed591defbf07.woff")format("woff");}.ff4f{font-family:ff4f;line-height:0.865000;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_09b7e17b6e20.woff")format("woff");}.ff50{font-family:ff50;line-height:0.870000;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_c5e083402fe2.woff")format("woff");}.ff51{font-family:ff51;line-height:0.861000;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_86f6fd0d8c6e.woff")format("woff");}.ff52{font-family:ff52;line-height:3.075000;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_74fd366553b2.woff")format("woff");}.ff53{font-family:ff53;line-height:0.870000;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_2481aca12c2e.woff")format("woff");}.ff54{font-family:ff54;line-height:0.860000;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:ff55;src:url("fonts/font_0084_a5ed251eb0c9.woff")format("woff");}.ff55{font-family:ff55;line-height:3.075000;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:ff56;src:url("fonts/font_0085_27ca16ce4c24.woff")format("woff");}.ff56{font-family:ff56;line-height:0.855000;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;}
.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);}
.vc{vertical-align:-42.984922px;}
.vd{vertical-align:-21.492000px;}
.v1{vertical-align:-17.982000px;}
.v3{vertical-align:-15.984000px;}
.v19{vertical-align:-11.988000px;}
.vf{vertical-align:-8.742000px;}
.v5{vertical-align:-5.981400px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.981400px;}
.v13{vertical-align:8.039400px;}
.v12{vertical-align:12.023400px;}
.v8{vertical-align:13.026600px;}
.v4{vertical-align:15.984000px;}
.v2{vertical-align:17.982000px;}
.v16{vertical-align:19.368600px;}
.v15{vertical-align:21.515400px;}
.va{vertical-align:24.169200px;}
.v7{vertical-align:25.823400px;}
.v14{vertical-align:33.569400px;}
.v10{vertical-align:35.883533px;}
.v9{vertical-align:37.658880px;}
.vb{vertical-align:42.984922px;}
.ve{vertical-align:59.923151px;}
.v18{vertical-align:83.028000px;}
.v11{vertical-align:92.587046px;}
.v17{vertical-align:118.248883px;}
.ls3{letter-spacing:-0.840000px;}
.ls2{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.000192px;}
.ls35{letter-spacing:0.000293px;}
.ls3b{letter-spacing:0.000547px;}
.ls1{letter-spacing:0.000600px;}
.ls39{letter-spacing:0.000610px;}
.ls2c{letter-spacing:0.001133px;}
.ls18{letter-spacing:0.001450px;}
.ls1b{letter-spacing:0.002050px;}
.ls2e{letter-spacing:0.002933px;}
.ls27{letter-spacing:0.003701px;}
.ls34{letter-spacing:0.004066px;}
.ls1d{letter-spacing:0.006600px;}
.ls1c{letter-spacing:0.012192px;}
.ls28{letter-spacing:0.012552px;}
.ls9{letter-spacing:0.015389px;}
.ls25{letter-spacing:0.022800px;}
.ls23{letter-spacing:0.057600px;}
.ls26{letter-spacing:0.174600px;}
.ls24{letter-spacing:0.175200px;}
.ls22{letter-spacing:0.188400px;}
.ls41{letter-spacing:0.324000px;}
.ls45{letter-spacing:0.432000px;}
.ls0{letter-spacing:1.368000px;}
.ls11{letter-spacing:1.398768px;}
.ls46{letter-spacing:1.596000px;}
.ls3f{letter-spacing:2.098152px;}
.lsf{letter-spacing:2.151936px;}
.lsa{letter-spacing:2.986200px;}
.ls2a{letter-spacing:2.988000px;}
.ls2f{letter-spacing:2.990100px;}
.ls40{letter-spacing:3.227904px;}
.ls19{letter-spacing:3.791400px;}
.ls17{letter-spacing:3.797400px;}
.ls16{letter-spacing:4.788058px;}
.ls3d{letter-spacing:4.841352px;}
.ls1a{letter-spacing:4.841856px;}
.ls2d{letter-spacing:5.070434px;}
.ls33{letter-spacing:5.072834px;}
.ls20{letter-spacing:5.839856px;}
.ls4{letter-spacing:6.455808px;}
.ls42{letter-spacing:7.150286px;}
.ls2b{letter-spacing:7.171500px;}
.ls32{letter-spacing:7.178700px;}
.ls37{letter-spacing:8.069760px;}
.ls3a{letter-spacing:8.582340px;}
.ls36{letter-spacing:8.584740px;}
.ls30{letter-spacing:8.814900px;}
.ls3e{letter-spacing:8.984333px;}
.ls21{letter-spacing:10.308930px;}
.ls1f{letter-spacing:10.610711px;}
.ls38{letter-spacing:10.759680px;}
.ls8{letter-spacing:11.943245px;}
.ls14{letter-spacing:11.955179px;}
.ls31{letter-spacing:13.000098px;}
.lsb{letter-spacing:14.943600px;}
.lse{letter-spacing:14.946000px;}
.ls5{letter-spacing:14.955955px;}
.ls3c{letter-spacing:17.929379px;}
.ls15{letter-spacing:17.933708px;}
.ls7{letter-spacing:18.399053px;}
.ls6{letter-spacing:19.329754px;}
.ls29{letter-spacing:22.111142px;}
.ls43{letter-spacing:93.446579px;}
.lsc{letter-spacing:107.596800px;}
.ls10{letter-spacing:114.766147px;}
.lsd{letter-spacing:114.768547px;}
.ls12{letter-spacing:114.769147px;}
.ls13{letter-spacing:119.077147px;}
.ls44{letter-spacing:2317.518000px;}
.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;}
}
.ws5d{word-spacing:-107.650598px;}
.ws3a{word-spacing:-107.596800px;}
.ws4{word-spacing:-22.500000px;}
.ws2{word-spacing:-19.368000px;}
.wsc0{word-spacing:-16.500000px;}
.ws5b{word-spacing:-15.009754px;}
.ws36{word-spacing:-14.955955px;}
.ws89{word-spacing:-13.824000px;}
.ws1{word-spacing:-13.500000px;}
.wsdc{word-spacing:-12.096000px;}
.ws5e{word-spacing:-12.000000px;}
.ws76{word-spacing:-11.997043px;}
.ws37{word-spacing:-11.943245px;}
.ws3c{word-spacing:-11.232000px;}
.ws3{word-spacing:-10.500000px;}
.ws6{word-spacing:-9.660000px;}
.ws7a{word-spacing:-8.984333px;}
.ws0{word-spacing:-8.775000px;}
.ws77{word-spacing:-8.123558px;}
.ws7d{word-spacing:-8.069760px;}
.ws5{word-spacing:-7.800000px;}
.ws59{word-spacing:-4.158000px;}
.ws40{word-spacing:-3.948000px;}
.ws83{word-spacing:-3.618000px;}
.ws7f{word-spacing:-3.227904px;}
.ws88{word-spacing:-3.024000px;}
.ws52{word-spacing:-2.862000px;}
.ws23{word-spacing:-2.753995px;}
.ws81{word-spacing:-2.538000px;}
.ws2d{word-spacing:-2.484000px;}
.wsb7{word-spacing:-2.430000px;}
.wsac{word-spacing:-2.376000px;}
.ws44{word-spacing:-2.321995px;}
.ws39{word-spacing:-2.268000px;}
.wsb4{word-spacing:-2.214000px;}
.ws5c{word-spacing:-2.205734px;}
.ws64{word-spacing:-2.160000px;}
.ws69{word-spacing:-2.106000px;}
.ws80{word-spacing:-2.098152px;}
.ws9{word-spacing:-2.052000px;}
.ws49{word-spacing:-1.998000px;}
.ws9d{word-spacing:-1.944000px;}
.ws4f{word-spacing:-1.890000px;}
.wsc{word-spacing:-1.782000px;}
.wsa{word-spacing:-1.674000px;}
.wsd8{word-spacing:-1.638000px;}
.wsbd{word-spacing:-1.620000px;}
.wsd0{word-spacing:-1.596000px;}
.ws24{word-spacing:-1.566000px;}
.ws4d{word-spacing:-1.458000px;}
.ws8f{word-spacing:-1.404000px;}
.ws46{word-spacing:-1.398768px;}
.wsdd{word-spacing:-1.386000px;}
.wsaa{word-spacing:-1.350000px;}
.ws25{word-spacing:-1.296000px;}
.ws4c{word-spacing:-1.242000px;}
.ws26{word-spacing:-1.188000px;}
.ws6c{word-spacing:-1.134000px;}
.wsd6{word-spacing:-1.092000px;}
.wsb5{word-spacing:-1.026000px;}
.ws65{word-spacing:-0.972000px;}
.ws8{word-spacing:-0.918000px;}
.wsbc{word-spacing:-0.864000px;}
.wsce{word-spacing:-0.798000px;}
.ws16{word-spacing:-0.756000px;}
.ws33{word-spacing:-0.702000px;}
.ws1e{word-spacing:-0.648000px;}
.ws62{word-spacing:-0.594000px;}
.wsb0{word-spacing:-0.540000px;}
.ws1f{word-spacing:-0.486000px;}
.ws9c{word-spacing:-0.432000px;}
.ws98{word-spacing:-0.378000px;}
.wsd2{word-spacing:-0.336000px;}
.ws8c{word-spacing:-0.324000px;}
.ws53{word-spacing:-0.270000px;}
.wsa2{word-spacing:-0.240000px;}
.wsb6{word-spacing:-0.216000px;}
.ws82{word-spacing:-0.108000px;}
.ws9a{word-spacing:-0.054000px;}
.ws13{word-spacing:-0.053798px;}
.ws15{word-spacing:-0.034969px;}
.wsb{word-spacing:0.000000px;}
.ws19{word-spacing:0.054000px;}
.ws7b{word-spacing:0.108000px;}
.ws41{word-spacing:0.162000px;}
.wsf{word-spacing:0.216000px;}
.wsaf{word-spacing:0.270000px;}
.ws47{word-spacing:0.324000px;}
.ws6f{word-spacing:0.378000px;}
.ws21{word-spacing:0.432000px;}
.ws45{word-spacing:0.486000px;}
.ws6d{word-spacing:0.540000px;}
.wsdb{word-spacing:0.588000px;}
.ws17{word-spacing:0.594000px;}
.wsb1{word-spacing:0.648000px;}
.wsb8{word-spacing:0.702000px;}
.ws9b{word-spacing:0.756000px;}
.wsd9{word-spacing:0.798000px;}
.ws55{word-spacing:0.810000px;}
.ws57{word-spacing:0.864000px;}
.wscd{word-spacing:0.882000px;}
.ws66{word-spacing:0.918000px;}
.ws61{word-spacing:0.972000px;}
.ws84{word-spacing:1.026000px;}
.wsd1{word-spacing:1.050000px;}
.ws12{word-spacing:1.134000px;}
.ws30{word-spacing:1.188000px;}
.wsbb{word-spacing:1.242000px;}
.wscf{word-spacing:1.260000px;}
.wsc1{word-spacing:1.296000px;}
.ws87{word-spacing:1.350000px;}
.wscc{word-spacing:1.386000px;}
.ws10{word-spacing:1.404000px;}
.ws42{word-spacing:1.512000px;}
.wsd5{word-spacing:1.554000px;}
.ws93{word-spacing:1.566000px;}
.ws63{word-spacing:1.620000px;}
.wsc5{word-spacing:1.638000px;}
.ws27{word-spacing:1.674000px;}
.ws2a{word-spacing:1.728000px;}
.ws6e{word-spacing:1.782000px;}
.ws86{word-spacing:1.836000px;}
.wsc6{word-spacing:1.848000px;}
.ws92{word-spacing:1.890000px;}
.ws97{word-spacing:1.944000px;}
.ws9e{word-spacing:1.998000px;}
.wsc8{word-spacing:2.016000px;}
.wsca{word-spacing:2.100000px;}
.wsab{word-spacing:2.106000px;}
.ws54{word-spacing:2.160000px;}
.ws71{word-spacing:2.214000px;}
.ws2e{word-spacing:2.268000px;}
.ws1b{word-spacing:2.321995px;}
.ws74{word-spacing:2.376000px;}
.wsa8{word-spacing:2.484000px;}
.ws85{word-spacing:2.538000px;}
.wscb{word-spacing:2.688000px;}
.ws32{word-spacing:2.700000px;}
.wsde{word-spacing:2.730000px;}
.wsbe{word-spacing:2.753995px;}
.ws56{word-spacing:2.808000px;}
.ws1c{word-spacing:2.862000px;}
.ws22{word-spacing:2.916000px;}
.ws58{word-spacing:2.970000px;}
.ws2f{word-spacing:3.024000px;}
.ws4a{word-spacing:3.078000px;}
.ws31{word-spacing:3.132000px;}
.ws9f{word-spacing:3.186000px;}
.ws79{word-spacing:3.240000px;}
.wsae{word-spacing:3.294000px;}
.wsd3{word-spacing:3.318000px;}
.wsad{word-spacing:3.510000px;}
.wsb2{word-spacing:3.564000px;}
.ws8a{word-spacing:3.672000px;}
.ws1a{word-spacing:3.833995px;}
.ws99{word-spacing:3.888000px;}
.wsc7{word-spacing:3.990000px;}
.wsb9{word-spacing:3.996000px;}
.ws28{word-spacing:4.104000px;}
.ws2b{word-spacing:4.158000px;}
.ws18{word-spacing:4.212000px;}
.ws4e{word-spacing:4.266000px;}
.ws51{word-spacing:4.320000px;}
.ws48{word-spacing:4.374000px;}
.ws50{word-spacing:4.428000px;}
.wsc4{word-spacing:4.536000px;}
.wsd{word-spacing:4.590000px;}
.ws3b{word-spacing:4.643995px;}
.wsbf{word-spacing:4.697995px;}
.wse{word-spacing:4.752000px;}
.ws91{word-spacing:4.860000px;}
.ws35{word-spacing:4.914000px;}
.ws2c{word-spacing:4.968000px;}
.wsda{word-spacing:4.998000px;}
.ws67{word-spacing:5.022000px;}
.ws72{word-spacing:5.076000px;}
.ws70{word-spacing:5.130000px;}
.ws7c{word-spacing:5.184000px;}
.ws73{word-spacing:5.238000px;}
.ws4b{word-spacing:5.292000px;}
.wsd7{word-spacing:5.334000px;}
.wsa5{word-spacing:5.346000px;}
.ws20{word-spacing:5.400000px;}
.ws11{word-spacing:5.562000px;}
.ws43{word-spacing:5.724000px;}
.ws8b{word-spacing:5.832000px;}
.wsa6{word-spacing:5.994000px;}
.wsa4{word-spacing:6.156000px;}
.ws94{word-spacing:6.210000px;}
.ws90{word-spacing:6.264000px;}
.ws60{word-spacing:6.426000px;}
.ws34{word-spacing:6.480000px;}
.ws1d{word-spacing:6.534000px;}
.ws68{word-spacing:6.804000px;}
.wsa0{word-spacing:7.128000px;}
.wsa7{word-spacing:7.452000px;}
.ws8e{word-spacing:7.560000px;}
.wsa3{word-spacing:7.668000px;}
.ws29{word-spacing:7.776000px;}
.wsa1{word-spacing:7.884000px;}
.ws3d{word-spacing:8.208000px;}
.ws6b{word-spacing:8.370000px;}
.ws8d{word-spacing:8.802000px;}
.ws3e{word-spacing:8.930534px;}
.wsa9{word-spacing:8.964000px;}
.wsc3{word-spacing:9.018000px;}
.wsba{word-spacing:9.234000px;}
.wsc9{word-spacing:10.080000px;}
.ws6a{word-spacing:11.394000px;}
.ws3f{word-spacing:11.620454px;}
.ws5a{word-spacing:11.889446px;}
.wsd4{word-spacing:12.978000px;}
.wsc2{word-spacing:13.986000px;}
.ws14{word-spacing:14.902157px;}
.ws75{word-spacing:14.903222px;}
.ws7{word-spacing:16.500000px;}
.ws78{word-spacing:17.880804px;}
.ws5f{word-spacing:19.116000px;}
.wsb3{word-spacing:175.488000px;}
.ws95{word-spacing:309.216000px;}
.ws96{word-spacing:333.216000px;}
.ws7e{word-spacing:2317.518000px;}
.ws38{word-spacing:2344.518000px;}
._16{margin-left:-107.596800px;}
._13{margin-left:-92.640845px;}
._12{margin-left:-90.488909px;}
._18{margin-left:-21.708000px;}
._19{margin-left:-17.388000px;}
._11{margin-left:-14.955955px;}
._1a{margin-left:-13.068000px;}
._14{margin-left:-11.943245px;}
._9{margin-left:-10.500000px;}
._15{margin-left:-8.069760px;}
._6{margin-left:-6.993000px;}
._5{margin-left:-4.708800px;}
._3{margin-left:-3.677400px;}
._2{margin-left:-2.214000px;}
._1{margin-left:-1.134000px;}
._0{width:1.404000px;}
._a{width:2.641800px;}
._4{width:4.465800px;}
._c{width:5.821200px;}
._b{width:7.468200px;}
._e{width:9.077400px;}
._f{width:10.962000px;}
._d{width:15.876000px;}
._17{width:17.982000px;}
._10{width:19.548000px;}
._8{width:27.552000px;}
._7{width:50.859000px;}
._1d{width:115.968000px;}
._2f{width:120.954000px;}
._1c{width:183.984000px;}
._30{width:187.488000px;}
._29{width:222.768000px;}
._1b{width:251.136000px;}
._1f{width:253.104000px;}
._21{width:265.104000px;}
._25{width:349.152000px;}
._26{width:369.216000px;}
._22{width:378.528000px;}
._1e{width:380.742000px;}
._23{width:382.302000px;}
._24{width:393.216000px;}
._27{width:394.464000px;}
._20{width:434.544000px;}
._2d{width:532.560000px;}
._2b{width:537.936000px;}
._2e{width:553.872000px;}
._28{width:564.150000px;}
._2c{width:565.710000px;}
._2a{width:593.952000px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,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);}
.fsc{font-size:29.887800px;}
.fs6{font-size:31.200000px;}
.fsb{font-size:34.969200px;}
.fs2{font-size:35.100000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsa{font-size:53.798400px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.y1b0{bottom:-0.008850px;}
.ya0{bottom:-0.008700px;}
.y0{bottom:0.000000px;}
.y106{bottom:0.009150px;}
.y10b{bottom:0.045300px;}
.yb0{bottom:0.070650px;}
.y13d{bottom:0.092562px;}
.y129{bottom:0.096300px;}
.yd5{bottom:0.097650px;}
.y138{bottom:0.099150px;}
.y122{bottom:0.117000px;}
.y133{bottom:0.124650px;}
.y19b{bottom:0.133650px;}
.y148{bottom:0.179700px;}
.yad{bottom:0.180150px;}
.y179{bottom:0.180300px;}
.y136{bottom:0.207150px;}
.y175{bottom:0.288300px;}
.y15c{bottom:0.615312px;}
.y156{bottom:0.615462px;}
.y154{bottom:0.615612px;}
.ya7{bottom:1.008000px;}
.y274{bottom:1.390650px;}
.y100{bottom:1.492650px;}
.y105{bottom:1.503300px;}
.y10f{bottom:1.608300px;}
.yd1{bottom:1.609650px;}
.y121{bottom:1.611150px;}
.ya4{bottom:1.629150px;}
.yaa{bottom:1.638150px;}
.y18e{bottom:1.852650px;}
.y14b{bottom:2.447700px;}
.ya6{bottom:2.502150px;}
.y9c{bottom:2.514150px;}
.y142{bottom:2.518350px;}
.y102{bottom:2.992499px;}
.y108{bottom:3.003271px;}
.y111{bottom:3.109807px;}
.ya3{bottom:3.123300px;}
.y1a8{bottom:3.454620px;}
.yb2{bottom:3.973349px;}
.y144{bottom:4.018337px;}
.y126{bottom:4.176150px;}
.y158{bottom:4.749750px;}
.y152{bottom:4.749900px;}
.y1a0{bottom:4.807650px;}
.y1ba{bottom:4.840650px;}
.y15e{bottom:4.843950px;}
.y157{bottom:4.844250px;}
.y14f{bottom:4.844400px;}
.y15d{bottom:4.846941px;}
.y15a{bottom:4.848591px;}
.y155{bottom:4.848741px;}
.y151{bottom:4.848891px;}
.yee{bottom:5.167657px;}
.yc8{bottom:5.167671px;}
.y19c{bottom:5.332834px;}
.y13f{bottom:5.676154px;}
.y12a{bottom:5.676163px;}
.y16f{bottom:5.734960px;}
.y1dc{bottom:5.936719px;}
.y1bc{bottom:6.340639px;}
.y1d2{bottom:6.340655px;}
.yaf{bottom:6.525150px;}
.yd4{bottom:6.552150px;}
.y12e{bottom:6.579150px;}
.y130{bottom:6.584988px;}
.y10e{bottom:8.062800px;}
.yd0{bottom:8.064150px;}
.y1d7{bottom:8.983800px;}
.y1d9{bottom:8.988449px;}
.y13c{bottom:9.018450px;}
.y1ca{bottom:9.419855px;}
.y194{bottom:9.634650px;}
.y1bd{bottom:10.219650px;}
.y1db{bottom:10.483799px;}
.y128{bottom:10.518463px;}
.y26b{bottom:10.804650px;}
.y196{bottom:11.134684px;}
.y188{bottom:11.266650px;}
.y1a7{bottom:11.847270px;}
.y97{bottom:11.929650px;}
.y9a{bottom:11.934300px;}
.y16c{bottom:12.190960px;}
.y18a{bottom:12.766642px;}
.y132{bottom:12.774288px;}
.yc2{bottom:13.081650px;}
.yc5{bottom:13.087521px;}
.y99{bottom:13.429650px;}
.y131{bottom:13.459800px;}
.yeb{bottom:14.581657px;}
.yc4{bottom:14.581671px;}
.yca{bottom:14.581821px;}
.y1be{bottom:15.592650px;}
.y15b{bottom:15.596100px;}
.y159{bottom:15.596250px;}
.y153{bottom:15.596400px;}
.y1a3{bottom:17.205150px;}
.y1a6{bottom:17.460300px;}
.y19a{bottom:18.511500px;}
.y199{bottom:18.610684px;}
.y1c9{bottom:18.809085px;}
.y16e{bottom:19.069810px;}
.y271{bottom:19.610931px;}
.y26e{bottom:19.716548px;}
.y9b{bottom:19.729650px;}
.y198{bottom:20.011534px;}
.y18b{bottom:20.143500px;}
.y18d{bottom:20.237850px;}
.y18c{bottom:20.244292px;}
.yc7{bottom:22.382721px;}
.yed{bottom:22.382857px;}
.ycc{bottom:22.383021px;}
.y197{bottom:23.312700px;}
.y270{bottom:23.689500px;}
.y1da{bottom:23.905800px;}
.y171{bottom:24.716260px;}
.y1cc{bottom:24.814935px;}
.y1a5{bottom:25.161570px;}
.y16d{bottom:25.605000px;}
.y170{bottom:25.605450px;}
.ycb{bottom:27.997500px;}
.y26d{bottom:30.670650px;}
.y69{bottom:30.698550px;}
.y27{bottom:30.745050px;}
.y273{bottom:32.051850px;}
.y16b{bottom:32.095950px;}
.yc6{bottom:32.099850px;}
.yec{bottom:32.100000px;}
.yc9{bottom:32.100150px;}
.yef{bottom:32.100300px;}
.y272{bottom:32.942850px;}
.y26f{bottom:32.943150px;}
.y167{bottom:33.615450px;}
.y1cb{bottom:34.068150px;}
.y169{bottom:35.116960px;}
.y1a9{bottom:40.357650px;}
.y16a{bottom:41.415450px;}
.y101{bottom:73.236151px;}
.y1ee{bottom:74.610300px;}
.yff{bottom:74.736000px;}
.y103{bottom:75.586650px;}
.y239{bottom:75.973650px;}
.y292{bottom:76.522650px;}
.y2bb{bottom:76.558650px;}
.y25d{bottom:76.625550px;}
.y20d{bottom:76.626150px;}
.y182{bottom:80.941650px;}
.yb8{bottom:81.577800px;}
.y353{bottom:86.641650px;}
.y30e{bottom:86.788650px;}
.y281{bottom:89.346150px;}
.y291{bottom:91.522650px;}
.y1ed{bottom:92.605800px;}
.y238{bottom:93.969150px;}
.y2ba{bottom:94.554150px;}
.y25c{bottom:94.621050px;}
.y20c{bottom:94.621650px;}
.y181{bottom:98.937150px;}
.yb7{bottom:99.573300px;}
.y352{bottom:100.144650px;}
.y30d{bottom:100.291650px;}
.yfe{bottom:104.889150px;}
.y2e{bottom:106.229700px;}
.y2c1{bottom:106.522650px;}
.y280{bottom:107.341650px;}
.yd{bottom:109.241550px;}
.y1ec{bottom:110.601300px;}
.y2b9{bottom:112.549650px;}
.y25b{bottom:112.616550px;}
.y20b{bottom:112.617150px;}
.y351{bottom:113.647650px;}
.ye{bottom:113.719050px;}
.y30c{bottom:113.794650px;}
.yb4{bottom:114.436500px;}
.y180{bottom:116.932650px;}
.yb6{bottom:117.379500px;}
.yb5{bottom:117.568800px;}
.yb3{bottom:117.573300px;}
.y2d{bottom:119.732700px;}
.y237{bottom:120.969150px;}
.y2c0{bottom:121.522650px;}
.y350{bottom:127.150650px;}
.yc{bottom:127.237050px;}
.y30b{bottom:127.297650px;}
.yb1{bottom:127.534801px;}
.y1eb{bottom:128.596800px;}
.yae{bottom:129.034500px;}
.y2b8{bottom:130.545150px;}
.y2d0{bottom:130.612050px;}
.yfd{bottom:131.889150px;}
.yab{bottom:133.057500px;}
.y2c{bottom:133.235700px;}
.ya9{bottom:133.921500px;}
.y27f{bottom:134.341650px;}
.y17f{bottom:134.928150px;}
.yac{bottom:135.379500px;}
.ya8{bottom:135.568800px;}
.y2bf{bottom:136.522650px;}
.y236{bottom:138.964650px;}
.y25a{bottom:139.616550px;}
.y20a{bottom:139.617150px;}
.y34f{bottom:140.653650px;}
.y30a{bottom:140.800650px;}
.yb{bottom:145.232550px;}
.y1ea{bottom:146.592300px;}
.y2b{bottom:146.738700px;}
.y2b7{bottom:148.540650px;}
.yfc{bottom:149.884650px;}
.y2be{bottom:151.522650px;}
.y27e{bottom:152.337150px;}
.ya2{bottom:152.686500px;}
.y17e{bottom:152.923650px;}
.ya5{bottom:153.307500px;}
.y34e{bottom:154.156650px;}
.y309{bottom:154.303650px;}
.y9f{bottom:155.818500px;}
.ya1{bottom:155.818800px;}
.y9e{bottom:155.820150px;}
.y234{bottom:156.852000px;}
.y235{bottom:156.960150px;}
.y233{bottom:157.112550px;}
.y259{bottom:157.612050px;}
.y209{bottom:157.612650px;}
.y2a{bottom:160.241700px;}
.ya{bottom:163.228050px;}
.y1e9{bottom:164.587800px;}
.y2b6{bottom:166.536150px;}
.y34d{bottom:167.659650px;}
.y308{bottom:167.806650px;}
.yfb{bottom:167.880150px;}
.y27d{bottom:170.332650px;}
.y17d{bottom:170.919150px;}
.y29{bottom:173.744700px;}
.y232{bottom:175.108050px;}
.y258{bottom:175.607550px;}
.y208{bottom:175.608150px;}
.y34c{bottom:181.162650px;}
.y8{bottom:181.228050px;}
.y307{bottom:181.309650px;}
.y1e8{bottom:182.583300px;}
.y98{bottom:183.979500px;}
.y2b5{bottom:184.531650px;}
.y96{bottom:185.479500px;}
.y9{bottom:185.719050px;}
.y28{bottom:187.247700px;}
.y27c{bottom:188.328150px;}
.y231{bottom:193.103550px;}
.y257{bottom:193.603050px;}
.y207{bottom:193.603650px;}
.y34b{bottom:194.665650px;}
.y306{bottom:194.812650px;}
.yfa{bottom:194.880150px;}
.y9d{bottom:195.483150px;}
.y17c{bottom:197.919150px;}
.y6{bottom:199.241550px;}
.y1e7{bottom:200.578800px;}
.y2b4{bottom:202.527150px;}
.y7{bottom:203.719050px;}
.y27b{bottom:206.323650px;}
.y34a{bottom:208.168650px;}
.y305{bottom:208.315650px;}
.y230{bottom:211.099050px;}
.y256{bottom:211.598550px;}
.y206{bottom:211.599150px;}
.y17b{bottom:215.914650px;}
.y5{bottom:217.237050px;}
.y1e6{bottom:218.574300px;}
.y2b3{bottom:220.522650px;}
.y66{bottom:221.623200px;}
.y349{bottom:221.671650px;}
.y304{bottom:221.818650px;}
.y27a{bottom:224.319150px;}
.y22f{bottom:229.094550px;}
.y255{bottom:229.594050px;}
.y205{bottom:229.594650px;}
.y95{bottom:232.924650px;}
.y17a{bottom:233.910150px;}
.y65{bottom:235.126200px;}
.y348{bottom:235.174650px;}
.y4{bottom:235.232550px;}
.y303{bottom:235.321650px;}
.yf9{bottom:238.377150px;}
.y279{bottom:242.314650px;}
.y1e5{bottom:245.574300px;}
.y2b2{bottom:247.522650px;}
.y254{bottom:247.589550px;}
.y204{bottom:247.590150px;}
.y64{bottom:248.629200px;}
.y347{bottom:248.677650px;}
.y302{bottom:248.824650px;}
.y177{bottom:250.393500px;}
.y94{bottom:250.920150px;}
.y174{bottom:251.608500px;}
.y178{bottom:251.716500px;}
.y173{bottom:251.901450px;}
.y176{bottom:251.905650px;}
.y3{bottom:253.228050px;}
.y22e{bottom:256.094550px;}
.yf8{bottom:256.372650px;}
.y278{bottom:260.310150px;}
.y63{bottom:262.132200px;}
.y346{bottom:262.180650px;}
.y301{bottom:262.327650px;}
.y1e4{bottom:263.569800px;}
.y2cf{bottom:265.585050px;}
.y203{bottom:265.585650px;}
.y93{bottom:268.915650px;}
.y2{bottom:271.223550px;}
.y22d{bottom:274.090050px;}
.yf7{bottom:274.368150px;}
.y253{bottom:274.589550px;}
.y62{bottom:275.635200px;}
.y345{bottom:275.683650px;}
.y300{bottom:275.830650px;}
.y277{bottom:278.305650px;}
.y1e3{bottom:281.565300px;}
.y168{bottom:281.788490px;}
.y166{bottom:283.290000px;}
.y92{bottom:286.911150px;}
.y61{bottom:289.138200px;}
.y344{bottom:289.186650px;}
.y2ff{bottom:289.333650px;}
.y22c{bottom:292.085550px;}
.yf6{bottom:292.363650px;}
.y2b1{bottom:292.571550px;}
.y252{bottom:292.585050px;}
.y202{bottom:292.585650px;}
.y276{bottom:296.301150px;}
.y1{bottom:298.223550px;}
.y1e2{bottom:299.560800px;}
.y60{bottom:302.641200px;}
.y343{bottom:302.689650px;}
.y2fe{bottom:302.836650px;}
.y172{bottom:304.065450px;}
.y91{bottom:304.906650px;}
.y22b{bottom:310.081050px;}
.yf5{bottom:310.359150px;}
.y2b0{bottom:310.567050px;}
.y251{bottom:310.580550px;}
.y201{bottom:310.581150px;}
.y5f{bottom:316.144200px;}
.y342{bottom:316.192650px;}
.y2fd{bottom:316.339650px;}
.y26c{bottom:319.354500px;}
.y26a{bottom:320.854500px;}
.y90{bottom:322.902150px;}
.y1e1{bottom:326.560800px;}
.y22a{bottom:328.076550px;}
.yf4{bottom:328.354650px;}
.y2af{bottom:328.562550px;}
.y2ce{bottom:328.576050px;}
.y200{bottom:328.576650px;}
.y5e{bottom:329.647200px;}
.y341{bottom:329.695650px;}
.y2fc{bottom:329.842650px;}
.y250{bottom:337.580550px;}
.y8f{bottom:340.897650px;}
.y5d{bottom:343.150200px;}
.y340{bottom:343.198650px;}
.y2fb{bottom:343.345650px;}
.y26{bottom:345.889050px;}
.y229{bottom:346.072050px;}
.yf3{bottom:346.350150px;}
.y275{bottom:346.399650px;}
.y2ae{bottom:346.558050px;}
.y2cd{bottom:346.571550px;}
.y1ff{bottom:346.572150px;}
.y165{bottom:353.993250px;}
.y24f{bottom:355.576050px;}
.y5c{bottom:356.653200px;}
.y33f{bottom:356.701650px;}
.y2fa{bottom:356.848650px;}
.y25{bottom:363.884550px;}
.y228{bottom:364.067550px;}
.yf2{bottom:364.345650px;}
.y2ad{bottom:364.553550px;}
.y2cc{bottom:364.567050px;}
.y1fe{bottom:364.567650px;}
.y8e{bottom:367.897650px;}
.y5b{bottom:370.156200px;}
.y33e{bottom:370.204650px;}
.y2f9{bottom:370.351650px;}
.y1e0{bottom:371.575650px;}
.y164{bottom:371.988750px;}
.y24e{bottom:373.571550px;}
.y269{bottom:381.509550px;}
.y24{bottom:381.880050px;}
.y227{bottom:382.063050px;}
.yf1{bottom:382.341150px;}
.y2ac{bottom:382.549050px;}
.y2cb{bottom:382.562550px;}
.y1fd{bottom:382.563150px;}
.y5a{bottom:383.659200px;}
.y33d{bottom:383.707650px;}
.y2f8{bottom:383.854650px;}
.y1df{bottom:389.571150px;}
.y163{bottom:389.984250px;}
.y24d{bottom:391.567050px;}
.y8d{bottom:393.397650px;}
.y59{bottom:397.162200px;}
.y33c{bottom:397.210650px;}
.y2f7{bottom:397.357650px;}
.y268{bottom:399.505050px;}
.y23{bottom:399.875550px;}
.y226{bottom:400.058550px;}
.y2ca{bottom:400.558050px;}
.y1fc{bottom:400.558650px;}
.y1de{bottom:407.566650px;}
.y162{bottom:407.979750px;}
.y2ab{bottom:409.549050px;}
.y24c{bottom:409.562550px;}
.yea{bottom:410.054993px;}
.y33b{bottom:410.713650px;}
.y2f6{bottom:410.860650px;}
.ye9{bottom:411.555000px;}
.y58{bottom:413.657700px;}
.y267{bottom:417.500550px;}
.y22{bottom:417.871050px;}
.y225{bottom:418.054050px;}
.y2c9{bottom:418.553550px;}
.y1fb{bottom:418.554150px;}
.yf0{bottom:423.583650px;}
.y33a{bottom:424.216650px;}
.y2f5{bottom:424.363650px;}
.y1d8{bottom:425.560501px;}
.y161{bottom:425.979750px;}
.y1d6{bottom:427.060500px;}
.y2aa{bottom:427.544550px;}
.y24b{bottom:427.558050px;}
.y21{bottom:435.866550px;}
.y224{bottom:436.049550px;}
.y1d5{bottom:436.050300px;}
.y1dd{bottom:436.051650px;}
.y2c8{bottom:436.549050px;}
.y1fa{bottom:436.549650px;}
.y339{bottom:437.719650px;}
.y2f4{bottom:437.866650px;}
.y266{bottom:441.503550px;}
.y160{bottom:443.970900px;}
.y8c{bottom:444.527550px;}
.y2a9{bottom:445.540050px;}
.y24a{bottom:445.553550px;}
.y57{bottom:451.153200px;}
.y338{bottom:451.222650px;}
.y2f3{bottom:451.369650px;}
.y20{bottom:453.862050px;}
.y223{bottom:454.045050px;}
.y2c7{bottom:454.544550px;}
.y1f9{bottom:454.545150px;}
.y1d4{bottom:459.378300px;}
.y265{bottom:459.499050px;}
.y8b{bottom:462.523050px;}
.ye8{bottom:462.649800px;}
.y2a8{bottom:463.535550px;}
.y249{bottom:463.549050px;}
.y56{bottom:464.656200px;}
.y337{bottom:464.725650px;}
.y2f2{bottom:464.872650px;}
.y1f{bottom:471.857550px;}
.y222{bottom:472.040550px;}
.y1f8{bottom:472.540650px;}
.y150{bottom:473.859009px;}
.y14e{bottom:475.357500px;}
.y264{bottom:477.494550px;}
.y336{bottom:478.228650px;}
.y2f1{bottom:478.375650px;}
.y15f{bottom:479.138400px;}
.y8a{bottom:480.518550px;}
.y2a7{bottom:481.531050px;}
.y2c6{bottom:481.544550px;}
.y1d1{bottom:487.091995px;}
.y1d0{bottom:488.592000px;}
.ye7{bottom:489.649800px;}
.y1e{bottom:489.853050px;}
.y221{bottom:490.036050px;}
.y1f7{bottom:490.536150px;}
.y248{bottom:490.549050px;}
.y335{bottom:491.731650px;}
.y2f0{bottom:491.878650px;}
.y1d3{bottom:493.668300px;}
.y55{bottom:495.410700px;}
.y263{bottom:495.490050px;}
.y89{bottom:498.514050px;}
.y2a6{bottom:499.526550px;}
.y2c5{bottom:499.540050px;}
.y334{bottom:505.234650px;}
.y2ef{bottom:505.381650px;}
.ye6{bottom:507.645300px;}
.y1d{bottom:507.848550px;}
.y220{bottom:508.031550px;}
.y1f6{bottom:508.531650px;}
.y247{bottom:508.544550px;}
.y54{bottom:508.913700px;}
.y14d{bottom:512.060700px;}
.y262{bottom:513.485550px;}
.y88{bottom:516.509550px;}
.y2a5{bottom:517.522050px;}
.y2c4{bottom:517.535550px;}
.y333{bottom:518.737650px;}
.y2ee{bottom:518.884650px;}
.y290{bottom:520.937550px;}
.y53{bottom:522.416700px;}
.ye5{bottom:525.640800px;}
.y1cf{bottom:525.721800px;}
.y21f{bottom:526.027050px;}
.y1f5{bottom:526.527150px;}
.y246{bottom:526.540050px;}
.y14c{bottom:530.056200px;}
.y261{bottom:531.481050px;}
.y332{bottom:532.240650px;}
.y2ed{bottom:532.387650px;}
.y2a1{bottom:534.464550px;}
.y87{bottom:534.505050px;}
.y2a4{bottom:535.517550px;}
.y2c3{bottom:535.531050px;}
.y52{bottom:535.919700px;}
.y28f{bottom:538.933050px;}
.y1c{bottom:540.607050px;}
.ye4{bottom:543.636300px;}
.y1ce{bottom:543.717300px;}
.y21e{bottom:544.022550px;}
.y1f4{bottom:544.522650px;}
.y245{bottom:544.535550px;}
.y14a{bottom:545.595000px;}
.y331{bottom:545.743650px;}
.y2ec{bottom:545.890650px;}
.y147{bottom:547.863000px;}
.y146{bottom:548.047500px;}
.y149{bottom:548.051700px;}
.y51{bottom:549.422700px;}
.y260{bottom:549.476550px;}
.y2a0{bottom:552.460050px;}
.y86{bottom:552.500550px;}
.y2c2{bottom:553.526550px;}
.y28e{bottom:556.928550px;}
.y1b{bottom:558.602550px;}
.y330{bottom:559.246650px;}
.y2eb{bottom:559.393650px;}
.ye3{bottom:561.631800px;}
.y21d{bottom:562.018050px;}
.y244{bottom:562.531050px;}
.y50{bottom:562.925700px;}
.y85{bottom:570.496050px;}
.y1c8{bottom:571.431015px;}
.y1f3{bottom:571.522650px;}
.y32f{bottom:572.749650px;}
.y2ea{bottom:572.896650px;}
.y1c7{bottom:572.931000px;}
.y28d{bottom:574.924050px;}
.y4f{bottom:576.428700px;}
.y1a{bottom:576.598050px;}
.y143{bottom:577.935013px;}
.y141{bottom:579.435000px;}
.y29f{bottom:579.460050px;}
.ye2{bottom:579.627300px;}
.y21c{bottom:580.013550px;}
.y243{bottom:580.526550px;}
.y145{bottom:581.298000px;}
.y283{bottom:583.282650px;}
.y2bd{bottom:583.642650px;}
.y1cd{bottom:585.945300px;}
.y32e{bottom:586.252650px;}
.y2e9{bottom:586.399650px;}
.y84{bottom:588.491550px;}
.y4e{bottom:589.931700px;}
.y28c{bottom:592.919550px;}
.y19{bottom:594.593550px;}
.y29e{bottom:597.455550px;}
.ye1{bottom:597.622800px;}
.y21b{bottom:598.009050px;}
.y282{bottom:598.282650px;}
.y2bc{bottom:598.642650px;}
.y32d{bottom:599.755650px;}
.y2e8{bottom:599.902650px;}
.y2d1{bottom:601.162650px;}
.y4d{bottom:606.427200px;}
.y83{bottom:606.487050px;}
.y13e{bottom:607.027496px;}
.y13b{bottom:608.527500px;}
.y28b{bottom:610.915050px;}
.y18{bottom:612.589050px;}
.y140{bottom:612.712650px;}
.y13a{bottom:612.723150px;}
.y32c{bottom:613.258650px;}
.y2e7{bottom:613.405650px;}
.ye0{bottom:615.618300px;}
.y21a{bottom:616.004550px;}
.y1f2{bottom:616.531050px;}
.y82{bottom:624.482550px;}
.y1c6{bottom:625.932300px;}
.y32b{bottom:626.761650px;}
.y2e6{bottom:626.908650px;}
.y28a{bottom:628.910550px;}
.y2a3{bottom:630.082650px;}
.y17{bottom:630.584550px;}
.y139{bottom:630.718650px;}
.y25f{bottom:631.522650px;}
.y219{bottom:634.000050px;}
.y1f1{bottom:634.526550px;}
.y32a{bottom:640.264650px;}
.y2e5{bottom:640.411650px;}
.y12f{bottom:642.124512px;}
.y81{bottom:642.478050px;}
.ydf{bottom:642.618300px;}
.y12d{bottom:643.624500px;}
.y4c{bottom:643.922700px;}
.y1c4{bottom:643.927500px;}
.y1c5{bottom:643.927800px;}
.y1c3{bottom:643.932300px;}
.y2a2{bottom:645.082650px;}
.y25e{bottom:646.522650px;}
.y289{bottom:646.906050px;}
.y16{bottom:648.580050px;}
.y135{bottom:649.996500px;}
.y137{bottom:650.104500px;}
.y12c{bottom:650.211150px;}
.y134{bottom:650.212650px;}
.y218{bottom:651.995550px;}
.y1f0{bottom:652.522050px;}
.y329{bottom:653.767650px;}
.y2e4{bottom:653.914650px;}
.y4b{bottom:657.425700px;}
.y80{bottom:660.473550px;}
.yde{bottom:660.613800px;}
.y1c1{bottom:661.819500px;}
.y1c2{bottom:661.927800px;}
.y1c0{bottom:661.932150px;}
.y127{bottom:664.627487px;}
.y288{bottom:664.901550px;}
.y125{bottom:666.127500px;}
.y15{bottom:666.575550px;}
.y328{bottom:667.270650px;}
.y2e3{bottom:667.417650px;}
.y217{bottom:669.991050px;}
.y124{bottom:670.311150px;}
.y12b{bottom:670.312650px;}
.y1ef{bottom:670.517550px;}
.y4a{bottom:673.921200px;}
.y7f{bottom:678.469050px;}
.ydd{bottom:678.609300px;}
.y327{bottom:680.773650px;}
.y2e2{bottom:680.920650px;}
.y287{bottom:682.897050px;}
.y14{bottom:684.571050px;}
.y216{bottom:687.986550px;}
.y120{bottom:688.792500px;}
.y1bb{bottom:689.646011px;}
.y123{bottom:690.412650px;}
.y11f{bottom:690.445650px;}
.y1b9{bottom:691.146000px;}
.y326{bottom:694.276650px;}
.y2e1{bottom:694.423650px;}
.y1bf{bottom:694.926150px;}
.ydc{bottom:696.604800px;}
.y185{bottom:701.122650px;}
.y13{bottom:702.566550px;}
.y7e{bottom:705.469050px;}
.y215{bottom:705.982050px;}
.y325{bottom:707.779650px;}
.y2e0{bottom:707.926650px;}
.y11e{bottom:708.441150px;}
.y286{bottom:709.897050px;}
.y49{bottom:713.674200px;}
.ydb{bottom:714.600300px;}
.y184{bottom:716.122650px;}
.y12{bottom:720.562050px;}
.y20e{bottom:721.042650px;}
.y324{bottom:721.282650px;}
.y2df{bottom:721.429650px;}
.y7d{bottom:723.464550px;}
.y214{bottom:723.977550px;}
.y1b7{bottom:725.566500px;}
.y1b8{bottom:725.674650px;}
.y1b6{bottom:725.679150px;}
.y48{bottom:727.177200px;}
.y285{bottom:727.892550px;}
.y183{bottom:731.122650px;}
.yda{bottom:732.595800px;}
.y323{bottom:734.785650px;}
.y2de{bottom:734.932650px;}
.y11d{bottom:735.441150px;}
.y11{bottom:738.557550px;}
.y47{bottom:740.680200px;}
.y7c{bottom:741.460050px;}
.y213{bottom:741.973050px;}
.y1b4{bottom:743.566500px;}
.y1b5{bottom:743.674650px;}
.y1b3{bottom:743.679150px;}
.y284{bottom:745.888050px;}
.y322{bottom:748.288650px;}
.y2dd{bottom:748.435650px;}
.yd9{bottom:750.591300px;}
.y11c{bottom:753.436650px;}
.y46{bottom:754.183200px;}
.y10{bottom:756.553050px;}
.y7b{bottom:759.455550px;}
.y212{bottom:759.968550px;}
.y1b2{bottom:761.566500px;}
.y1af{bottom:761.674500px;}
.y1b1{bottom:761.674650px;}
.y1ae{bottom:761.679150px;}
.y321{bottom:761.791650px;}
.y2dc{bottom:761.938650px;}
.y45{bottom:767.686200px;}
.yd8{bottom:768.586800px;}
.y11b{bottom:771.432150px;}
.yf{bottom:774.548550px;}
.y320{bottom:775.294650px;}
.y2db{bottom:775.441650px;}
.y7a{bottom:777.451050px;}
.y211{bottom:777.964050px;}
.y1ab{bottom:779.566500px;}
.y1ad{bottom:779.674500px;}
.y1ac{bottom:779.674650px;}
.y1aa{bottom:779.680650px;}
.y44{bottom:781.189200px;}
.yd7{bottom:786.582300px;}
.y31f{bottom:788.797650px;}
.y2da{bottom:788.944650px;}
.y11a{bottom:789.427650px;}
.y43{bottom:794.692200px;}
.y79{bottom:795.446550px;}
.y1a4{bottom:797.674530px;}
.y1a2{bottom:799.174500px;}
.y29c{bottom:800.652150px;}
.y31e{bottom:802.300650px;}
.y2d9{bottom:802.447650px;}
.yd6{bottom:804.577800px;}
.y210{bottom:804.964050px;}
.y119{bottom:807.423150px;}
.y42{bottom:808.195200px;}
.y78{bottom:813.442050px;}
.ycf{bottom:815.080500px;}
.y31d{bottom:815.803650px;}
.y19f{bottom:816.265500px;}
.y19e{bottom:816.367650px;}
.y1a1{bottom:816.373650px;}
.yd3{bottom:816.592500px;}
.y37{bottom:819.098550px;}
.y29b{bottom:821.652150px;}
.y41{bottom:821.698200px;}
.y20f{bottom:822.959550px;}
.yd2{bottom:823.153800px;}
.yce{bottom:823.158300px;}
.y2d8{bottom:824.947650px;}
.y118{bottom:825.418650px;}
.y31c{bottom:829.306650px;}
.y77{bottom:831.437550px;}
.y40{bottom:835.201200px;}
.y36{bottom:835.598550px;}
.y29a{bottom:842.652150px;}
.y31b{bottom:842.809650px;}
.y117{bottom:843.414150px;}
.y3f{bottom:848.704200px;}
.y76{bottom:849.433050px;}
.yc3{bottom:850.871979px;}
.y35{bottom:852.098550px;}
.yc1{bottom:852.372000px;}
.y31a{bottom:856.312650px;}
.y195{bottom:859.727966px;}
.y193{bottom:861.228000px;}
.y116{bottom:861.409650px;}
.y3e{bottom:862.207200px;}
.y299{bottom:863.652150px;}
.ycd{bottom:864.400800px;}
.y240{bottom:866.652150px;}
.y75{bottom:867.428550px;}
.y319{bottom:869.815650px;}
.y19d{bottom:871.096650px;}
.y114{bottom:871.912500px;}
.y34{bottom:872.594550px;}
.y3d{bottom:875.710200px;}
.y2d7{bottom:875.965650px;}
.y115{bottom:879.985650px;}
.y113{bottom:879.988650px;}
.y318{bottom:883.318650px;}
.y298{bottom:884.652150px;}
.y74{bottom:885.424050px;}
.y23f{bottom:887.652150px;}
.y3c{bottom:889.213200px;}
.y110{bottom:893.824493px;}
.y2d6{bottom:893.961150px;}
.y10d{bottom:895.326000px;}
.y33{bottom:896.498700px;}
.y317{bottom:896.821650px;}
.y3b{bottom:902.716200px;}
.y112{bottom:903.397650px;}
.y10c{bottom:903.402150px;}
.y73{bottom:903.419550px;}
.y297{bottom:905.652150px;}
.y192{bottom:907.938150px;}
.y23e{bottom:908.652150px;}
.y316{bottom:910.324650px;}
.y2d5{bottom:911.956650px;}
.y32{bottom:912.698700px;}
.y3a{bottom:916.219200px;}
.y107{bottom:918.385529px;}
.y104{bottom:919.885500px;}
.y10a{bottom:921.343500px;}
.y109{bottom:921.397650px;}
.y72{bottom:921.415050px;}
.y315{bottom:923.827650px;}
.y191{bottom:925.942800px;}
.y296{bottom:926.652150px;}
.y23d{bottom:929.652150px;}
.y39{bottom:929.722200px;}
.y2d4{bottom:929.952150px;}
.yc0{bottom:930.419550px;}
.y359{bottom:932.623650px;}
.y314{bottom:937.330650px;}
.y71{bottom:939.410550px;}
.y31{bottom:940.898550px;}
.y190{bottom:943.938300px;}
.y358{bottom:946.126650px;}
.y38{bottom:946.217700px;}
.y2d3{bottom:947.947650px;}
.ybf{bottom:948.415050px;}
.y293{bottom:950.460150px;}
.y23c{bottom:950.652150px;}
.y313{bottom:950.833650px;}
.y70{bottom:957.406050px;}
.y357{bottom:959.629650px;}
.y312{bottom:964.336650px;}
.y295{bottom:965.460150px;}
.ybe{bottom:966.410550px;}
.y30{bottom:967.898550px;}
.y189{bottom:971.652008px;}
.y23b{bottom:971.652150px;}
.y356{bottom:973.132650px;}
.y2d2{bottom:973.147650px;}
.y187{bottom:973.152000px;}
.y6f{bottom:975.401550px;}
.y67{bottom:976.592700px;}
.y311{bottom:977.839650px;}
.y294{bottom:980.460150px;}
.y35e{bottom:982.866150px;}
.y18f{bottom:983.290800px;}
.ybd{bottom:984.406050px;}
.y355{bottom:986.635650px;}
.y310{bottom:991.342650px;}
.y6e{bottom:993.397050px;}
.y2f{bottom:994.898550px;}
.y23a{bottom:995.460150px;}
.y68{bottom:996.098550px;}
.y35d{bottom:996.369150px;}
.y354{bottom:1000.138650px;}
.ybc{bottom:1002.401550px;}
.y29d{bottom:1003.522650px;}
.y30f{bottom:1004.845650px;}
.y35c{bottom:1009.872150px;}
.ybb{bottom:1013.641650px;}
.y242{bottom:1018.522650px;}
.y6d{bottom:1020.397050px;}
.y186{bottom:1020.402150px;}
.y35b{bottom:1023.375150px;}
.yba{bottom:1027.144650px;}
.y241{bottom:1033.522650px;}
.y35a{bottom:1036.878150px;}
.y6c{bottom:1038.392550px;}
.yb9{bottom:1040.647650px;}
.y6a{bottom:1096.623600px;}
.y6b{bottom:1097.773650px;}
.h22{height:3.550694px;}
.h13{height:8.937000px;}
.h2d{height:8.991000px;}
.h3c{height:9.045000px;}
.h52{height:9.126000px;}
.h60{height:9.153000px;}
.h3b{height:9.180000px;}
.h42{height:9.261000px;}
.h19{height:9.342000px;}
.h51{height:9.369000px;}
.h5a{height:10.179000px;}
.h2b{height:10.449000px;}
.h61{height:10.503000px;}
.h34{height:10.557000px;}
.h18{height:10.584000px;}
.h6e{height:10.611000px;}
.h28{height:10.638000px;}
.h37{height:10.945360px;}
.h16{height:11.475000px;}
.h45{height:11.502000px;}
.h14{height:12.069000px;}
.h3e{height:12.663000px;}
.h35{height:13.149000px;}
.h2a{height:13.449600px;}
.h5f{height:13.802026px;}
.h69{height:14.500810px;}
.h46{height:16.497000px;}
.h41{height:16.838899px;}
.h26{height:18.846000px;}
.h66{height:19.089000px;}
.h38{height:19.332000px;}
.h24{height:20.358000px;}
.h2e{height:20.410500px;}
.h32{height:20.412000px;}
.h1e{height:20.443255px;}
.h3a{height:20.562806px;}
.h1b{height:21.330000px;}
.h2c{height:22.449005px;}
.h29{height:22.637999px;}
.h15{height:23.359426px;}
.h49{height:23.883964px;}
.h17{height:23.918933px;}
.h31{height:24.058810px;}
.h40{height:24.662979px;}
.h6a{height:24.813000px;}
.h3d{height:25.148987px;}
.h36{height:25.149033px;}
.h48{height:28.496979px;}
.h57{height:28.674000px;}
.he{height:28.944000px;}
.ha{height:29.064000px;}
.h54{height:29.214000px;}
.h8{height:30.144000px;}
.h67{height:31.089020px;}
.h39{height:31.332001px;}
.h30{height:32.412048px;}
.h70{height:32.928000px;}
.h1f{height:32.994000px;}
.h6f{height:33.216000px;}
.h1d{height:33.329693px;}
.h4{height:33.912000px;}
.h62{height:34.965000px;}
.h12{height:35.937331px;}
.h1a{height:36.744307px;}
.h44{height:36.798106px;}
.h6b{height:36.812988px;}
.hf{height:37.013299px;}
.h4a{height:37.120896px;}
.hd{height:37.368000px;}
.h56{height:37.389888px;}
.h5{height:40.362000px;}
.h58{height:40.674042px;}
.h10{height:40.944008px;}
.h55{height:41.214020px;}
.h71{height:41.253000px;}
.h65{height:42.186826px;}
.h7{height:42.271200px;}
.h6c{height:42.779506px;}
.h43{height:42.893410px;}
.h21{height:42.989899px;}
.h11{height:42.994699px;}
.h6d{height:43.287533px;}
.h5b{height:43.335000px;}
.h74{height:43.587964px;}
.h68{height:44.874826px;}
.h27{height:44.994003px;}
.h20{height:44.994049px;}
.h2{height:45.672000px;}
.h9{height:46.128000px;}
.h47{height:46.535616px;}
.h63{height:46.964996px;}
.h3f{height:48.228010px;}
.h33{height:49.742333px;}
.h2f{height:49.881610px;}
.h25{height:49.882210px;}
.h4e{height:50.490000px;}
.h3{height:51.894000px;}
.h4d{height:51.911400px;}
.h53{height:51.914400px;}
.h64{height:52.837226px;}
.h73{height:53.252998px;}
.h5d{height:55.334930px;}
.hc{height:57.660000px;}
.hb{height:58.128000px;}
.h5e{height:58.219855px;}
.h1c{height:59.293255px;}
.h75{height:59.902240px;}
.h6{height:62.280000px;}
.h4f{height:62.490005px;}
.h50{height:62.838499px;}
.h4c{height:63.473245px;}
.h4b{height:63.473845px;}
.h59{height:71.820864px;}
.h23{height:74.672179px;}
.h5c{height:96.137741px;}
.h72{height:121.799578px;}
.h1{height:1182.000000px;}
.h0{height:1182.046509px;}
.w21{width:3.969000px;}
.w3f{width:5.589000px;}
.w2f{width:5.859000px;}
.w17{width:5.913000px;}
.w20{width:6.238500px;}
.w1b{width:8.550000px;}
.w38{width:8.775000px;}
.w3b{width:9.045000px;}
.w4{width:9.369000px;}
.w5{width:9.828000px;}
.we{width:11.169000px;}
.wf{width:11.172000px;}
.w6{width:11.223000px;}
.w16{width:12.601500px;}
.w34{width:12.844500px;}
.w7{width:14.013000px;}
.w48{width:14.175000px;}
.w1a{width:15.328500px;}
.w37{width:15.841500px;}
.w2e{width:15.948000px;}
.w9{width:17.001000px;}
.w28{width:17.406000px;}
.w18{width:17.488500px;}
.w41{width:18.306000px;}
.w39{width:18.324000px;}
.w40{width:25.911000px;}
.w3c{width:29.349000px;}
.w8{width:31.446000px;}
.wb{width:31.455000px;}
.w27{width:34.551000px;}
.w1c{width:34.822500px;}
.w14{width:35.227500px;}
.w26{width:39.033000px;}
.w22{width:39.690000px;}
.wa{width:44.009949px;}
.w19{width:44.496002px;}
.w1e{width:44.596500px;}
.w2d{width:60.471000px;}
.w1d{width:61.830002px;}
.w15{width:62.235031px;}
.w23{width:66.689987px;}
.w1f{width:71.603989px;}
.w46{width:77.724000px;}
.w42{width:81.087000px;}
.w32{width:83.646000px;}
.w3a{width:83.862000px;}
.w44{width:84.834000px;}
.w47{width:104.733009px;}
.w43{width:108.085510px;}
.w33{width:110.646011px;}
.w45{width:111.834000px;}
.w12{width:133.677000px;}
.w35{width:138.934500px;}
.w24{width:142.290000px;}
.w10{width:150.174000px;}
.w13{width:160.677017px;}
.w36{width:165.942032px;}
.w25{width:169.290024px;}
.w2b{width:175.122000px;}
.w11{width:177.173996px;}
.w2c{width:202.122025px;}
.wc{width:218.295000px;}
.w30{width:231.855000px;}
.w49{width:242.098500px;}
.wd{width:245.294998px;}
.w2{width:247.428000px;}
.w31{width:258.854965px;}
.w4a{width:269.098480px;}
.w3{width:274.427994px;}
.w3d{width:336.555000px;}
.w3e{width:363.555016px;}
.w29{width:533.331000px;}
.w2a{width:560.331024px;}
.w0{width:901.417511px;}
.w1{width:901.500000px;}
.x21{left:-38.312850px;}
.x12{left:-36.936150px;}
.x0{left:0.000000px;}
.x38{left:1.990200px;}
.x22{left:3.159000px;}
.x15{left:5.544150px;}
.x18{left:7.071450px;}
.x63{left:8.274750px;}
.x8a{left:9.559200px;}
.x4e{left:11.573400px;}
.x5a{left:17.315402px;}
.x4d{left:19.045194px;}
.x54{left:20.159711px;}
.x23{left:22.865835px;}
.x56{left:25.317150px;}
.x55{left:26.614361px;}
.xd{left:27.829197px;}
.x46{left:28.913100px;}
.x45{left:30.210762px;}
.x5c{left:33.279750px;}
.x2b{left:37.332149px;}
.x97{left:38.494500px;}
.x81{left:43.996200px;}
.x6{left:45.713100px;}
.xac{left:47.989496px;}
.x99{left:49.343850px;}
.xbd{left:50.970600px;}
.x8f{left:53.023482px;}
.x5b{left:55.257902px;}
.xbb{left:57.705010px;}
.x98{left:58.907855px;}
.x7{left:60.713250px;}
.x3b{left:65.479348px;}
.x90{left:66.690000px;}
.xbe{left:69.121050px;}
.x9a{left:70.738205px;}
.x82{left:72.613212px;}
.xbc{left:74.776800px;}
.x9d{left:78.422868px;}
.x6e{left:79.498350px;}
.x83{left:81.027900px;}
.x2c{left:87.649499px;}
.x91{left:88.878282px;}
.xad{left:91.154850px;}
.x9e{left:93.093468px;}
.x2d{left:94.458150px;}
.x3c{left:96.746850px;}
.x42{left:102.126008px;}
.x85{left:104.243712px;}
.x80{left:106.187400px;}
.xc3{left:109.424095px;}
.xae{left:110.948846px;}
.x84{left:112.904712px;}
.xaf{left:114.677850px;}
.x2e{left:119.839199px;}
.x3d{left:122.126698px;}
.x9f{left:124.830750px;}
.x95{left:126.794850px;}
.xb0{left:131.275650px;}
.x3e{left:133.652698px;}
.x68{left:135.703500px;}
.x70{left:141.076350px;}
.x3f{left:142.550700px;}
.x2f{left:144.055200px;}
.x92{left:149.685132px;}
.x6f{left:151.699339px;}
.xe{left:155.182797px;}
.x86{left:161.807250px;}
.xf{left:163.784850px;}
.x31{left:169.333200px;}
.x30{left:170.632199px;}
.x87{left:183.485262px;}
.x72{left:187.877850px;}
.x93{left:190.434150px;}
.x32{left:192.548699px;}
.x33{left:195.574349px;}
.x71{left:198.500839px;}
.x10{left:201.056700px;}
.xb1{left:206.667150px;}
.x34{left:211.897500px;}
.xc4{left:218.181595px;}
.xb2{left:227.120996px;}
.x94{left:229.496832px;}
.x74{left:248.005350px;}
.x1{left:250.671300px;}
.x73{left:256.387339px;}
.xcb{left:262.459200px;}
.x4{left:266.974350px;}
.xc0{left:268.455300px;}
.x6d{left:272.917511px;}
.x11{left:286.215000px;}
.x35{left:287.841000px;}
.xa4{left:292.738500px;}
.x13{left:295.583700px;}
.x36{left:299.019150px;}
.x64{left:300.813011px;}
.x76{left:303.800700px;}
.xa5{left:311.070600px;}
.x75{left:312.182689px;}
.x62{left:314.313000px;}
.xb3{left:315.934646px;}
.x69{left:326.274450px;}
.xb4{left:332.158650px;}
.x9{left:341.770200px;}
.x88{left:347.823150px;}
.x65{left:354.002400px;}
.xbf{left:362.143500px;}
.x78{left:365.378700px;}
.xab{left:371.305504px;}
.x77{left:376.001689px;}
.xaa{left:384.805500px;}
.x59{left:388.919998px;}
.xb8{left:390.298200px;}
.x58{left:402.418500px;}
.x1a{left:405.382500px;}
.x7a{left:412.180200px;}
.xc{left:415.869003px;}
.x1b{left:419.395350px;}
.x79{left:422.803189px;}
.xb{left:429.369000px;}
.x2a{left:430.435501px;}
.xc2{left:432.033000px;}
.x8e{left:437.155500px;}
.xb5{left:439.392000px;}
.x6a{left:442.785000px;}
.x29{left:443.935500px;}
.xb6{left:444.981000px;}
.x5d{left:447.023400px;}
.x7f{left:452.021988px;}
.x3a{left:464.496002px;}
.x7e{left:465.522000px;}
.x67{left:468.437988px;}
.x41{left:472.744492px;}
.x37{left:478.275000px;}
.x7b{left:480.689689px;}
.x66{left:481.938000px;}
.x40{left:486.244500px;}
.x39{left:489.453000px;}
.x96{left:497.759995px;}
.xba{left:499.039490px;}
.x14{left:503.889000px;}
.x44{left:508.000488px;}
.x7d{left:511.462200px;}
.xb9{left:512.539500px;}
.x16{left:513.717450px;}
.x7c{left:516.856189px;}
.x43{left:521.499000px;}
.x5e{left:535.119000px;}
.x5f{left:541.357500px;}
.x89{left:553.437000px;}
.x47{left:556.735050px;}
.x1c{left:563.644500px;}
.x8b{left:569.393700px;}
.x1d{left:574.875600px;}
.xc6{left:575.885850px;}
.xc7{left:580.877850px;}
.x25{left:586.483500px;}
.x26{left:596.310600px;}
.x48{left:599.299500px;}
.xa9{left:601.941000px;}
.x1e{left:607.380000px;}
.x53{left:610.311000px;}
.x49{left:611.909550px;}
.x60{left:617.922000px;}
.x61{left:622.421850px;}
.x27{left:626.664000px;}
.x1f{left:638.834700px;}
.xc8{left:642.941850px;}
.x57{left:645.141150px;}
.xc9{left:648.761850px;}
.x6b{left:654.148500px;}
.x28{left:658.119450px;}
.x9c{left:660.365982px;}
.x5{left:661.434450px;}
.x6c{left:671.564100px;}
.x9b{left:673.866000px;}
.xa{left:692.193150px;}
.xa1{left:697.806000px;}
.xa6{left:701.576100px;}
.x8c{left:704.092500px;}
.x50{left:707.745000px;}
.x8d{left:709.951950px;}
.xa7{left:712.411500px;}
.xa2{left:713.655000px;}
.x52{left:715.336050px;}
.xca{left:716.645850px;}
.x51{left:723.081450px;}
.xa8{left:741.760200px;}
.xc1{left:762.120000px;}
.x17{left:775.948500px;}
.x4a{left:781.923000px;}
.x19{left:787.181100px;}
.xa3{left:793.654500px;}
.x4c{left:802.093506px;}
.x2{left:806.927700px;}
.xc5{left:810.925800px;}
.xa0{left:812.808450px;}
.x4b{left:815.593500px;}
.x8{left:817.675800px;}
.x20{left:830.265000px;}
.x4f{left:833.089200px;}
.x3{left:845.522850px;}
.x24{left:847.275000px;}
.xb7{left:855.707850px;}
@media print{
.vc{vertical-align:-38.208819pt;}
.vd{vertical-align:-19.104000pt;}
.v1{vertical-align:-15.984000pt;}
.v3{vertical-align:-14.208000pt;}
.v19{vertical-align:-10.656000pt;}
.vf{vertical-align:-7.770667pt;}
.v5{vertical-align:-5.316800pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.316800pt;}
.v13{vertical-align:7.146133pt;}
.v12{vertical-align:10.687467pt;}
.v8{vertical-align:11.579200pt;}
.v4{vertical-align:14.208000pt;}
.v2{vertical-align:15.984000pt;}
.v16{vertical-align:17.216533pt;}
.v15{vertical-align:19.124800pt;}
.va{vertical-align:21.483733pt;}
.v7{vertical-align:22.954133pt;}
.v14{vertical-align:29.839467pt;}
.v10{vertical-align:31.896474pt;}
.v9{vertical-align:33.474560pt;}
.vb{vertical-align:38.208819pt;}
.ve{vertical-align:53.265023pt;}
.v18{vertical-align:73.802667pt;}
.v11{vertical-align:82.299597pt;}
.v17{vertical-align:105.110118pt;}
.ls3{letter-spacing:-0.746667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.000171pt;}
.ls35{letter-spacing:0.000260pt;}
.ls3b{letter-spacing:0.000486pt;}
.ls1{letter-spacing:0.000533pt;}
.ls39{letter-spacing:0.000542pt;}
.ls2c{letter-spacing:0.001007pt;}
.ls18{letter-spacing:0.001289pt;}
.ls1b{letter-spacing:0.001822pt;}
.ls2e{letter-spacing:0.002607pt;}
.ls27{letter-spacing:0.003290pt;}
.ls34{letter-spacing:0.003614pt;}
.ls1d{letter-spacing:0.005867pt;}
.ls1c{letter-spacing:0.010837pt;}
.ls28{letter-spacing:0.011157pt;}
.ls9{letter-spacing:0.013679pt;}
.ls25{letter-spacing:0.020267pt;}
.ls23{letter-spacing:0.051200pt;}
.ls26{letter-spacing:0.155200pt;}
.ls24{letter-spacing:0.155733pt;}
.ls22{letter-spacing:0.167467pt;}
.ls41{letter-spacing:0.288000pt;}
.ls45{letter-spacing:0.384000pt;}
.ls0{letter-spacing:1.216000pt;}
.ls11{letter-spacing:1.243349pt;}
.ls46{letter-spacing:1.418667pt;}
.ls3f{letter-spacing:1.865024pt;}
.lsf{letter-spacing:1.912832pt;}
.lsa{letter-spacing:2.654400pt;}
.ls2a{letter-spacing:2.656000pt;}
.ls2f{letter-spacing:2.657867pt;}
.ls40{letter-spacing:2.869248pt;}
.ls19{letter-spacing:3.370133pt;}
.ls17{letter-spacing:3.375467pt;}
.ls16{letter-spacing:4.256051pt;}
.ls3d{letter-spacing:4.303424pt;}
.ls1a{letter-spacing:4.303872pt;}
.ls2d{letter-spacing:4.507053pt;}
.ls33{letter-spacing:4.509186pt;}
.ls20{letter-spacing:5.190983pt;}
.ls4{letter-spacing:5.738496pt;}
.ls42{letter-spacing:6.355810pt;}
.ls2b{letter-spacing:6.374667pt;}
.ls32{letter-spacing:6.381067pt;}
.ls37{letter-spacing:7.173120pt;}
.ls3a{letter-spacing:7.628747pt;}
.ls36{letter-spacing:7.630880pt;}
.ls30{letter-spacing:7.835467pt;}
.ls3e{letter-spacing:7.986074pt;}
.ls21{letter-spacing:9.163493pt;}
.ls1f{letter-spacing:9.431743pt;}
.ls38{letter-spacing:9.564160pt;}
.ls8{letter-spacing:10.616218pt;}
.ls14{letter-spacing:10.626826pt;}
.ls31{letter-spacing:11.555643pt;}
.lsb{letter-spacing:13.283200pt;}
.lse{letter-spacing:13.285333pt;}
.ls5{letter-spacing:13.294182pt;}
.ls3c{letter-spacing:15.937226pt;}
.ls15{letter-spacing:15.941074pt;}
.ls7{letter-spacing:16.354714pt;}
.ls6{letter-spacing:17.182003pt;}
.ls29{letter-spacing:19.654349pt;}
.ls43{letter-spacing:83.063626pt;}
.lsc{letter-spacing:95.641600pt;}
.ls10{letter-spacing:102.014353pt;}
.lsd{letter-spacing:102.016486pt;}
.ls12{letter-spacing:102.017020pt;}
.ls13{letter-spacing:105.846353pt;}
.ls44{letter-spacing:2060.016000pt;}
.ws5d{word-spacing:-95.689421pt;}
.ws3a{word-spacing:-95.641600pt;}
.ws4{word-spacing:-20.000000pt;}
.ws2{word-spacing:-17.216000pt;}
.wsc0{word-spacing:-14.666667pt;}
.ws5b{word-spacing:-13.342003pt;}
.ws36{word-spacing:-13.294182pt;}
.ws89{word-spacing:-12.288000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsdc{word-spacing:-10.752000pt;}
.ws5e{word-spacing:-10.666667pt;}
.ws76{word-spacing:-10.664038pt;}
.ws37{word-spacing:-10.616218pt;}
.ws3c{word-spacing:-9.984000pt;}
.ws3{word-spacing:-9.333333pt;}
.ws6{word-spacing:-8.586667pt;}
.ws7a{word-spacing:-7.986074pt;}
.ws0{word-spacing:-7.800000pt;}
.ws77{word-spacing:-7.220941pt;}
.ws7d{word-spacing:-7.173120pt;}
.ws5{word-spacing:-6.933333pt;}
.ws59{word-spacing:-3.696000pt;}
.ws40{word-spacing:-3.509333pt;}
.ws83{word-spacing:-3.216000pt;}
.ws7f{word-spacing:-2.869248pt;}
.ws88{word-spacing:-2.688000pt;}
.ws52{word-spacing:-2.544000pt;}
.ws23{word-spacing:-2.447995pt;}
.ws81{word-spacing:-2.256000pt;}
.ws2d{word-spacing:-2.208000pt;}
.wsb7{word-spacing:-2.160000pt;}
.wsac{word-spacing:-2.112000pt;}
.ws44{word-spacing:-2.063995pt;}
.ws39{word-spacing:-2.016000pt;}
.wsb4{word-spacing:-1.968000pt;}
.ws5c{word-spacing:-1.960653pt;}
.ws64{word-spacing:-1.920000pt;}
.ws69{word-spacing:-1.872000pt;}
.ws80{word-spacing:-1.865024pt;}
.ws9{word-spacing:-1.824000pt;}
.ws49{word-spacing:-1.776000pt;}
.ws9d{word-spacing:-1.728000pt;}
.ws4f{word-spacing:-1.680000pt;}
.wsc{word-spacing:-1.584000pt;}
.wsa{word-spacing:-1.488000pt;}
.wsd8{word-spacing:-1.456000pt;}
.wsbd{word-spacing:-1.440000pt;}
.wsd0{word-spacing:-1.418667pt;}
.ws24{word-spacing:-1.392000pt;}
.ws4d{word-spacing:-1.296000pt;}
.ws8f{word-spacing:-1.248000pt;}
.ws46{word-spacing:-1.243349pt;}
.wsdd{word-spacing:-1.232000pt;}
.wsaa{word-spacing:-1.200000pt;}
.ws25{word-spacing:-1.152000pt;}
.ws4c{word-spacing:-1.104000pt;}
.ws26{word-spacing:-1.056000pt;}
.ws6c{word-spacing:-1.008000pt;}
.wsd6{word-spacing:-0.970667pt;}
.wsb5{word-spacing:-0.912000pt;}
.ws65{word-spacing:-0.864000pt;}
.ws8{word-spacing:-0.816000pt;}
.wsbc{word-spacing:-0.768000pt;}
.wsce{word-spacing:-0.709333pt;}
.ws16{word-spacing:-0.672000pt;}
.ws33{word-spacing:-0.624000pt;}
.ws1e{word-spacing:-0.576000pt;}
.ws62{word-spacing:-0.528000pt;}
.wsb0{word-spacing:-0.480000pt;}
.ws1f{word-spacing:-0.432000pt;}
.ws9c{word-spacing:-0.384000pt;}
.ws98{word-spacing:-0.336000pt;}
.wsd2{word-spacing:-0.298667pt;}
.ws8c{word-spacing:-0.288000pt;}
.ws53{word-spacing:-0.240000pt;}
.wsa2{word-spacing:-0.213333pt;}
.wsb6{word-spacing:-0.192000pt;}
.ws82{word-spacing:-0.096000pt;}
.ws9a{word-spacing:-0.048000pt;}
.ws13{word-spacing:-0.047821pt;}
.ws15{word-spacing:-0.031084pt;}
.wsb{word-spacing:0.000000pt;}
.ws19{word-spacing:0.048000pt;}
.ws7b{word-spacing:0.096000pt;}
.ws41{word-spacing:0.144000pt;}
.wsf{word-spacing:0.192000pt;}
.wsaf{word-spacing:0.240000pt;}
.ws47{word-spacing:0.288000pt;}
.ws6f{word-spacing:0.336000pt;}
.ws21{word-spacing:0.384000pt;}
.ws45{word-spacing:0.432000pt;}
.ws6d{word-spacing:0.480000pt;}
.wsdb{word-spacing:0.522667pt;}
.ws17{word-spacing:0.528000pt;}
.wsb1{word-spacing:0.576000pt;}
.wsb8{word-spacing:0.624000pt;}
.ws9b{word-spacing:0.672000pt;}
.wsd9{word-spacing:0.709333pt;}
.ws55{word-spacing:0.720000pt;}
.ws57{word-spacing:0.768000pt;}
.wscd{word-spacing:0.784000pt;}
.ws66{word-spacing:0.816000pt;}
.ws61{word-spacing:0.864000pt;}
.ws84{word-spacing:0.912000pt;}
.wsd1{word-spacing:0.933333pt;}
.ws12{word-spacing:1.008000pt;}
.ws30{word-spacing:1.056000pt;}
.wsbb{word-spacing:1.104000pt;}
.wscf{word-spacing:1.120000pt;}
.wsc1{word-spacing:1.152000pt;}
.ws87{word-spacing:1.200000pt;}
.wscc{word-spacing:1.232000pt;}
.ws10{word-spacing:1.248000pt;}
.ws42{word-spacing:1.344000pt;}
.wsd5{word-spacing:1.381333pt;}
.ws93{word-spacing:1.392000pt;}
.ws63{word-spacing:1.440000pt;}
.wsc5{word-spacing:1.456000pt;}
.ws27{word-spacing:1.488000pt;}
.ws2a{word-spacing:1.536000pt;}
.ws6e{word-spacing:1.584000pt;}
.ws86{word-spacing:1.632000pt;}
.wsc6{word-spacing:1.642667pt;}
.ws92{word-spacing:1.680000pt;}
.ws97{word-spacing:1.728000pt;}
.ws9e{word-spacing:1.776000pt;}
.wsc8{word-spacing:1.792000pt;}
.wsca{word-spacing:1.866667pt;}
.wsab{word-spacing:1.872000pt;}
.ws54{word-spacing:1.920000pt;}
.ws71{word-spacing:1.968000pt;}
.ws2e{word-spacing:2.016000pt;}
.ws1b{word-spacing:2.063995pt;}
.ws74{word-spacing:2.112000pt;}
.wsa8{word-spacing:2.208000pt;}
.ws85{word-spacing:2.256000pt;}
.wscb{word-spacing:2.389333pt;}
.ws32{word-spacing:2.400000pt;}
.wsde{word-spacing:2.426667pt;}
.wsbe{word-spacing:2.447995pt;}
.ws56{word-spacing:2.496000pt;}
.ws1c{word-spacing:2.544000pt;}
.ws22{word-spacing:2.592000pt;}
.ws58{word-spacing:2.640000pt;}
.ws2f{word-spacing:2.688000pt;}
.ws4a{word-spacing:2.736000pt;}
.ws31{word-spacing:2.784000pt;}
.ws9f{word-spacing:2.832000pt;}
.ws79{word-spacing:2.880000pt;}
.wsae{word-spacing:2.928000pt;}
.wsd3{word-spacing:2.949333pt;}
.wsad{word-spacing:3.120000pt;}
.wsb2{word-spacing:3.168000pt;}
.ws8a{word-spacing:3.264000pt;}
.ws1a{word-spacing:3.407995pt;}
.ws99{word-spacing:3.456000pt;}
.wsc7{word-spacing:3.546667pt;}
.wsb9{word-spacing:3.552000pt;}
.ws28{word-spacing:3.648000pt;}
.ws2b{word-spacing:3.696000pt;}
.ws18{word-spacing:3.744000pt;}
.ws4e{word-spacing:3.792000pt;}
.ws51{word-spacing:3.840000pt;}
.ws48{word-spacing:3.888000pt;}
.ws50{word-spacing:3.936000pt;}
.wsc4{word-spacing:4.032000pt;}
.wsd{word-spacing:4.080000pt;}
.ws3b{word-spacing:4.127995pt;}
.wsbf{word-spacing:4.175995pt;}
.wse{word-spacing:4.224000pt;}
.ws91{word-spacing:4.320000pt;}
.ws35{word-spacing:4.368000pt;}
.ws2c{word-spacing:4.416000pt;}
.wsda{word-spacing:4.442667pt;}
.ws67{word-spacing:4.464000pt;}
.ws72{word-spacing:4.512000pt;}
.ws70{word-spacing:4.560000pt;}
.ws7c{word-spacing:4.608000pt;}
.ws73{word-spacing:4.656000pt;}
.ws4b{word-spacing:4.704000pt;}
.wsd7{word-spacing:4.741333pt;}
.wsa5{word-spacing:4.752000pt;}
.ws20{word-spacing:4.800000pt;}
.ws11{word-spacing:4.944000pt;}
.ws43{word-spacing:5.088000pt;}
.ws8b{word-spacing:5.184000pt;}
.wsa6{word-spacing:5.328000pt;}
.wsa4{word-spacing:5.472000pt;}
.ws94{word-spacing:5.520000pt;}
.ws90{word-spacing:5.568000pt;}
.ws60{word-spacing:5.712000pt;}
.ws34{word-spacing:5.760000pt;}
.ws1d{word-spacing:5.808000pt;}
.ws68{word-spacing:6.048000pt;}
.wsa0{word-spacing:6.336000pt;}
.wsa7{word-spacing:6.624000pt;}
.ws8e{word-spacing:6.720000pt;}
.wsa3{word-spacing:6.816000pt;}
.ws29{word-spacing:6.912000pt;}
.wsa1{word-spacing:7.008000pt;}
.ws3d{word-spacing:7.296000pt;}
.ws6b{word-spacing:7.440000pt;}
.ws8d{word-spacing:7.824000pt;}
.ws3e{word-spacing:7.938253pt;}
.wsa9{word-spacing:7.968000pt;}
.wsc3{word-spacing:8.016000pt;}
.wsba{word-spacing:8.208000pt;}
.wsc9{word-spacing:8.960000pt;}
.ws6a{word-spacing:10.128000pt;}
.ws3f{word-spacing:10.329293pt;}
.ws5a{word-spacing:10.568397pt;}
.wsd4{word-spacing:11.536000pt;}
.wsc2{word-spacing:12.432000pt;}
.ws14{word-spacing:13.246362pt;}
.ws75{word-spacing:13.247309pt;}
.ws7{word-spacing:14.666667pt;}
.ws78{word-spacing:15.894048pt;}
.ws5f{word-spacing:16.992000pt;}
.wsb3{word-spacing:155.989333pt;}
.ws95{word-spacing:274.858667pt;}
.ws96{word-spacing:296.192000pt;}
.ws7e{word-spacing:2060.016000pt;}
.ws38{word-spacing:2084.016000pt;}
._16{margin-left:-95.641600pt;}
._13{margin-left:-82.347418pt;}
._12{margin-left:-80.434586pt;}
._18{margin-left:-19.296000pt;}
._19{margin-left:-15.456000pt;}
._11{margin-left:-13.294182pt;}
._1a{margin-left:-11.616000pt;}
._14{margin-left:-10.616218pt;}
._9{margin-left:-9.333333pt;}
._15{margin-left:-7.173120pt;}
._6{margin-left:-6.216000pt;}
._5{margin-left:-4.185600pt;}
._3{margin-left:-3.268800pt;}
._2{margin-left:-1.968000pt;}
._1{margin-left:-1.008000pt;}
._0{width:1.248000pt;}
._a{width:2.348267pt;}
._4{width:3.969600pt;}
._c{width:5.174400pt;}
._b{width:6.638400pt;}
._e{width:8.068800pt;}
._f{width:9.744000pt;}
._d{width:14.112000pt;}
._17{width:15.984000pt;}
._10{width:17.376000pt;}
._8{width:24.490667pt;}
._7{width:45.208000pt;}
._1d{width:103.082667pt;}
._2f{width:107.514667pt;}
._1c{width:163.541333pt;}
._30{width:166.656000pt;}
._29{width:198.016000pt;}
._1b{width:223.232000pt;}
._1f{width:224.981333pt;}
._21{width:235.648000pt;}
._25{width:310.357333pt;}
._26{width:328.192000pt;}
._22{width:336.469333pt;}
._1e{width:338.437333pt;}
._23{width:339.824000pt;}
._24{width:349.525333pt;}
._27{width:350.634667pt;}
._20{width:386.261333pt;}
._2d{width:473.386667pt;}
._2b{width:478.165333pt;}
._2e{width:492.330667pt;}
._28{width:501.466667pt;}
._2c{width:502.853333pt;}
._2a{width:527.957333pt;}
.fsc{font-size:26.566933pt;}
.fs6{font-size:27.733333pt;}
.fsb{font-size:31.083733pt;}
.fs2{font-size:31.200000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsa{font-size:47.820800pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.y1b0{bottom:-0.007867pt;}
.ya0{bottom:-0.007733pt;}
.y0{bottom:0.000000pt;}
.y106{bottom:0.008133pt;}
.y10b{bottom:0.040267pt;}
.yb0{bottom:0.062800pt;}
.y13d{bottom:0.082277pt;}
.y129{bottom:0.085600pt;}
.yd5{bottom:0.086800pt;}
.y138{bottom:0.088133pt;}
.y122{bottom:0.104000pt;}
.y133{bottom:0.110800pt;}
.y19b{bottom:0.118800pt;}
.y148{bottom:0.159733pt;}
.yad{bottom:0.160133pt;}
.y179{bottom:0.160267pt;}
.y136{bottom:0.184133pt;}
.y175{bottom:0.256267pt;}
.y15c{bottom:0.546944pt;}
.y156{bottom:0.547078pt;}
.y154{bottom:0.547211pt;}
.ya7{bottom:0.896000pt;}
.y274{bottom:1.236133pt;}
.y100{bottom:1.326800pt;}
.y105{bottom:1.336267pt;}
.y10f{bottom:1.429600pt;}
.yd1{bottom:1.430800pt;}
.y121{bottom:1.432133pt;}
.ya4{bottom:1.448133pt;}
.yaa{bottom:1.456133pt;}
.y18e{bottom:1.646800pt;}
.y14b{bottom:2.175733pt;}
.ya6{bottom:2.224133pt;}
.y9c{bottom:2.234800pt;}
.y142{bottom:2.238533pt;}
.y102{bottom:2.659999pt;}
.y108{bottom:2.669575pt;}
.y111{bottom:2.764273pt;}
.ya3{bottom:2.776267pt;}
.y1a8{bottom:3.070773pt;}
.yb2{bottom:3.531865pt;}
.y144{bottom:3.571855pt;}
.y126{bottom:3.712133pt;}
.y158{bottom:4.222000pt;}
.y152{bottom:4.222133pt;}
.y1a0{bottom:4.273467pt;}
.y1ba{bottom:4.302800pt;}
.y15e{bottom:4.305733pt;}
.y157{bottom:4.306000pt;}
.y14f{bottom:4.306133pt;}
.y15d{bottom:4.308392pt;}
.y15a{bottom:4.309859pt;}
.y155{bottom:4.309992pt;}
.y151{bottom:4.310126pt;}
.yee{bottom:4.593473pt;}
.yc8{bottom:4.593486pt;}
.y19c{bottom:4.740297pt;}
.y13f{bottom:5.045470pt;}
.y12a{bottom:5.045478pt;}
.y16f{bottom:5.097742pt;}
.y1dc{bottom:5.277083pt;}
.y1bc{bottom:5.636123pt;}
.y1d2{bottom:5.636138pt;}
.yaf{bottom:5.800133pt;}
.yd4{bottom:5.824133pt;}
.y12e{bottom:5.848133pt;}
.y130{bottom:5.853323pt;}
.y10e{bottom:7.166933pt;}
.yd0{bottom:7.168133pt;}
.y1d7{bottom:7.985600pt;}
.y1d9{bottom:7.989732pt;}
.y13c{bottom:8.016400pt;}
.y1ca{bottom:8.373204pt;}
.y194{bottom:8.564133pt;}
.y1bd{bottom:9.084133pt;}
.y1db{bottom:9.318932pt;}
.y128{bottom:9.349745pt;}
.y26b{bottom:9.604133pt;}
.y196{bottom:9.897497pt;}
.y188{bottom:10.014800pt;}
.y1a7{bottom:10.530907pt;}
.y97{bottom:10.604133pt;}
.y9a{bottom:10.608267pt;}
.y16c{bottom:10.836409pt;}
.y18a{bottom:11.348126pt;}
.y132{bottom:11.354923pt;}
.yc2{bottom:11.628133pt;}
.yc5{bottom:11.633352pt;}
.y99{bottom:11.937467pt;}
.y131{bottom:11.964267pt;}
.yeb{bottom:12.961473pt;}
.yc4{bottom:12.961486pt;}
.yca{bottom:12.961619pt;}
.y1be{bottom:13.860133pt;}
.y15b{bottom:13.863200pt;}
.y159{bottom:13.863333pt;}
.y153{bottom:13.863467pt;}
.y1a3{bottom:15.293467pt;}
.y1a6{bottom:15.520267pt;}
.y19a{bottom:16.454667pt;}
.y199{bottom:16.542830pt;}
.y1c9{bottom:16.719187pt;}
.y16e{bottom:16.950942pt;}
.y271{bottom:17.431939pt;}
.y26e{bottom:17.525821pt;}
.y9b{bottom:17.537467pt;}
.y198{bottom:17.788030pt;}
.y18b{bottom:17.905333pt;}
.y18d{bottom:17.989200pt;}
.y18c{bottom:17.994926pt;}
.yc7{bottom:19.895752pt;}
.yed{bottom:19.895873pt;}
.ycc{bottom:19.896019pt;}
.y197{bottom:20.722400pt;}
.y270{bottom:21.057333pt;}
.y1da{bottom:21.249600pt;}
.y171{bottom:21.970009pt;}
.y1cc{bottom:22.057720pt;}
.y1a5{bottom:22.365840pt;}
.y16d{bottom:22.760000pt;}
.y170{bottom:22.760400pt;}
.ycb{bottom:24.886667pt;}
.y26d{bottom:27.262800pt;}
.y69{bottom:27.287600pt;}
.y27{bottom:27.328933pt;}
.y273{bottom:28.490533pt;}
.y16b{bottom:28.529733pt;}
.yc6{bottom:28.533200pt;}
.yec{bottom:28.533333pt;}
.yc9{bottom:28.533467pt;}
.yef{bottom:28.533600pt;}
.y272{bottom:29.282533pt;}
.y26f{bottom:29.282800pt;}
.y167{bottom:29.880400pt;}
.y1cb{bottom:30.282800pt;}
.y169{bottom:31.215075pt;}
.y1a9{bottom:35.873467pt;}
.y16a{bottom:36.813733pt;}
.y101{bottom:65.098801pt;}
.y1ee{bottom:66.320267pt;}
.yff{bottom:66.432000pt;}
.y103{bottom:67.188133pt;}
.y239{bottom:67.532133pt;}
.y292{bottom:68.020133pt;}
.y2bb{bottom:68.052133pt;}
.y25d{bottom:68.111600pt;}
.y20d{bottom:68.112133pt;}
.y182{bottom:71.948133pt;}
.yb8{bottom:72.513600pt;}
.y353{bottom:77.014800pt;}
.y30e{bottom:77.145467pt;}
.y281{bottom:79.418800pt;}
.y291{bottom:81.353467pt;}
.y1ed{bottom:82.316267pt;}
.y238{bottom:83.528133pt;}
.y2ba{bottom:84.048133pt;}
.y25c{bottom:84.107600pt;}
.y20c{bottom:84.108133pt;}
.y181{bottom:87.944133pt;}
.yb7{bottom:88.509600pt;}
.y352{bottom:89.017467pt;}
.y30d{bottom:89.148133pt;}
.yfe{bottom:93.234800pt;}
.y2e{bottom:94.426400pt;}
.y2c1{bottom:94.686800pt;}
.y280{bottom:95.414800pt;}
.yd{bottom:97.103600pt;}
.y1ec{bottom:98.312267pt;}
.y2b9{bottom:100.044133pt;}
.y25b{bottom:100.103600pt;}
.y20b{bottom:100.104133pt;}
.y351{bottom:101.020133pt;}
.ye{bottom:101.083600pt;}
.y30c{bottom:101.150800pt;}
.yb4{bottom:101.721333pt;}
.y180{bottom:103.940133pt;}
.yb6{bottom:104.337333pt;}
.yb5{bottom:104.505600pt;}
.yb3{bottom:104.509600pt;}
.y2d{bottom:106.429067pt;}
.y237{bottom:107.528133pt;}
.y2c0{bottom:108.020133pt;}
.y350{bottom:113.022800pt;}
.yc{bottom:113.099600pt;}
.y30b{bottom:113.153467pt;}
.yb1{bottom:113.364268pt;}
.y1eb{bottom:114.308267pt;}
.yae{bottom:114.697333pt;}
.y2b8{bottom:116.040133pt;}
.y2d0{bottom:116.099600pt;}
.yfd{bottom:117.234800pt;}
.yab{bottom:118.273333pt;}
.y2c{bottom:118.431733pt;}
.ya9{bottom:119.041333pt;}
.y27f{bottom:119.414800pt;}
.y17f{bottom:119.936133pt;}
.yac{bottom:120.337333pt;}
.ya8{bottom:120.505600pt;}
.y2bf{bottom:121.353467pt;}
.y236{bottom:123.524133pt;}
.y25a{bottom:124.103600pt;}
.y20a{bottom:124.104133pt;}
.y34f{bottom:125.025467pt;}
.y30a{bottom:125.156133pt;}
.yb{bottom:129.095600pt;}
.y1ea{bottom:130.304267pt;}
.y2b{bottom:130.434400pt;}
.y2b7{bottom:132.036133pt;}
.yfc{bottom:133.230800pt;}
.y2be{bottom:134.686800pt;}
.y27e{bottom:135.410800pt;}
.ya2{bottom:135.721333pt;}
.y17e{bottom:135.932133pt;}
.ya5{bottom:136.273333pt;}
.y34e{bottom:137.028133pt;}
.y309{bottom:137.158800pt;}
.y9f{bottom:138.505333pt;}
.ya1{bottom:138.505600pt;}
.y9e{bottom:138.506800pt;}
.y234{bottom:139.424000pt;}
.y235{bottom:139.520133pt;}
.y233{bottom:139.655600pt;}
.y259{bottom:140.099600pt;}
.y209{bottom:140.100133pt;}
.y2a{bottom:142.437067pt;}
.ya{bottom:145.091600pt;}
.y1e9{bottom:146.300267pt;}
.y2b6{bottom:148.032133pt;}
.y34d{bottom:149.030800pt;}
.y308{bottom:149.161467pt;}
.yfb{bottom:149.226800pt;}
.y27d{bottom:151.406800pt;}
.y17d{bottom:151.928133pt;}
.y29{bottom:154.439733pt;}
.y232{bottom:155.651600pt;}
.y258{bottom:156.095600pt;}
.y208{bottom:156.096133pt;}
.y34c{bottom:161.033467pt;}
.y8{bottom:161.091600pt;}
.y307{bottom:161.164133pt;}
.y1e8{bottom:162.296267pt;}
.y98{bottom:163.537333pt;}
.y2b5{bottom:164.028133pt;}
.y96{bottom:164.870667pt;}
.y9{bottom:165.083600pt;}
.y28{bottom:166.442400pt;}
.y27c{bottom:167.402800pt;}
.y231{bottom:171.647600pt;}
.y257{bottom:172.091600pt;}
.y207{bottom:172.092133pt;}
.y34b{bottom:173.036133pt;}
.y306{bottom:173.166800pt;}
.yfa{bottom:173.226800pt;}
.y9d{bottom:173.762800pt;}
.y17c{bottom:175.928133pt;}
.y6{bottom:177.103600pt;}
.y1e7{bottom:178.292267pt;}
.y2b4{bottom:180.024133pt;}
.y7{bottom:181.083600pt;}
.y27b{bottom:183.398800pt;}
.y34a{bottom:185.038800pt;}
.y305{bottom:185.169467pt;}
.y230{bottom:187.643600pt;}
.y256{bottom:188.087600pt;}
.y206{bottom:188.088133pt;}
.y17b{bottom:191.924133pt;}
.y5{bottom:193.099600pt;}
.y1e6{bottom:194.288267pt;}
.y2b3{bottom:196.020133pt;}
.y66{bottom:196.998400pt;}
.y349{bottom:197.041467pt;}
.y304{bottom:197.172133pt;}
.y27a{bottom:199.394800pt;}
.y22f{bottom:203.639600pt;}
.y255{bottom:204.083600pt;}
.y205{bottom:204.084133pt;}
.y95{bottom:207.044133pt;}
.y17a{bottom:207.920133pt;}
.y65{bottom:209.001067pt;}
.y348{bottom:209.044133pt;}
.y4{bottom:209.095600pt;}
.y303{bottom:209.174800pt;}
.yf9{bottom:211.890800pt;}
.y279{bottom:215.390800pt;}
.y1e5{bottom:218.288267pt;}
.y2b2{bottom:220.020133pt;}
.y254{bottom:220.079600pt;}
.y204{bottom:220.080133pt;}
.y64{bottom:221.003733pt;}
.y347{bottom:221.046800pt;}
.y302{bottom:221.177467pt;}
.y177{bottom:222.572000pt;}
.y94{bottom:223.040133pt;}
.y174{bottom:223.652000pt;}
.y178{bottom:223.748000pt;}
.y173{bottom:223.912400pt;}
.y176{bottom:223.916133pt;}
.y3{bottom:225.091600pt;}
.y22e{bottom:227.639600pt;}
.yf8{bottom:227.886800pt;}
.y278{bottom:231.386800pt;}
.y63{bottom:233.006400pt;}
.y346{bottom:233.049467pt;}
.y301{bottom:233.180133pt;}
.y1e4{bottom:234.284267pt;}
.y2cf{bottom:236.075600pt;}
.y203{bottom:236.076133pt;}
.y93{bottom:239.036133pt;}
.y2{bottom:241.087600pt;}
.y22d{bottom:243.635600pt;}
.yf7{bottom:243.882800pt;}
.y253{bottom:244.079600pt;}
.y62{bottom:245.009067pt;}
.y345{bottom:245.052133pt;}
.y300{bottom:245.182800pt;}
.y277{bottom:247.382800pt;}
.y1e3{bottom:250.280267pt;}
.y168{bottom:250.478658pt;}
.y166{bottom:251.813333pt;}
.y92{bottom:255.032133pt;}
.y61{bottom:257.011733pt;}
.y344{bottom:257.054800pt;}
.y2ff{bottom:257.185467pt;}
.y22c{bottom:259.631600pt;}
.yf6{bottom:259.878800pt;}
.y2b1{bottom:260.063600pt;}
.y252{bottom:260.075600pt;}
.y202{bottom:260.076133pt;}
.y276{bottom:263.378800pt;}
.y1{bottom:265.087600pt;}
.y1e2{bottom:266.276267pt;}
.y60{bottom:269.014400pt;}
.y343{bottom:269.057467pt;}
.y2fe{bottom:269.188133pt;}
.y172{bottom:270.280400pt;}
.y91{bottom:271.028133pt;}
.y22b{bottom:275.627600pt;}
.yf5{bottom:275.874800pt;}
.y2b0{bottom:276.059600pt;}
.y251{bottom:276.071600pt;}
.y201{bottom:276.072133pt;}
.y5f{bottom:281.017067pt;}
.y342{bottom:281.060133pt;}
.y2fd{bottom:281.190800pt;}
.y26c{bottom:283.870667pt;}
.y26a{bottom:285.204000pt;}
.y90{bottom:287.024133pt;}
.y1e1{bottom:290.276267pt;}
.y22a{bottom:291.623600pt;}
.yf4{bottom:291.870800pt;}
.y2af{bottom:292.055600pt;}
.y2ce{bottom:292.067600pt;}
.y200{bottom:292.068133pt;}
.y5e{bottom:293.019733pt;}
.y341{bottom:293.062800pt;}
.y2fc{bottom:293.193467pt;}
.y250{bottom:300.071600pt;}
.y8f{bottom:303.020133pt;}
.y5d{bottom:305.022400pt;}
.y340{bottom:305.065467pt;}
.y2fb{bottom:305.196133pt;}
.y26{bottom:307.456933pt;}
.y229{bottom:307.619600pt;}
.yf3{bottom:307.866800pt;}
.y275{bottom:307.910800pt;}
.y2ae{bottom:308.051600pt;}
.y2cd{bottom:308.063600pt;}
.y1ff{bottom:308.064133pt;}
.y165{bottom:314.660667pt;}
.y24f{bottom:316.067600pt;}
.y5c{bottom:317.025067pt;}
.y33f{bottom:317.068133pt;}
.y2fa{bottom:317.198800pt;}
.y25{bottom:323.452933pt;}
.y228{bottom:323.615600pt;}
.yf2{bottom:323.862800pt;}
.y2ad{bottom:324.047600pt;}
.y2cc{bottom:324.059600pt;}
.y1fe{bottom:324.060133pt;}
.y8e{bottom:327.020133pt;}
.y5b{bottom:329.027733pt;}
.y33e{bottom:329.070800pt;}
.y2f9{bottom:329.201467pt;}
.y1e0{bottom:330.289467pt;}
.y164{bottom:330.656667pt;}
.y24e{bottom:332.063600pt;}
.y269{bottom:339.119600pt;}
.y24{bottom:339.448933pt;}
.y227{bottom:339.611600pt;}
.yf1{bottom:339.858800pt;}
.y2ac{bottom:340.043600pt;}
.y2cb{bottom:340.055600pt;}
.y1fd{bottom:340.056133pt;}
.y5a{bottom:341.030400pt;}
.y33d{bottom:341.073467pt;}
.y2f8{bottom:341.204133pt;}
.y1df{bottom:346.285467pt;}
.y163{bottom:346.652667pt;}
.y24d{bottom:348.059600pt;}
.y8d{bottom:349.686800pt;}
.y59{bottom:353.033067pt;}
.y33c{bottom:353.076133pt;}
.y2f7{bottom:353.206800pt;}
.y268{bottom:355.115600pt;}
.y23{bottom:355.444933pt;}
.y226{bottom:355.607600pt;}
.y2ca{bottom:356.051600pt;}
.y1fc{bottom:356.052133pt;}
.y1de{bottom:362.281467pt;}
.y162{bottom:362.648667pt;}
.y2ab{bottom:364.043600pt;}
.y24c{bottom:364.055600pt;}
.yea{bottom:364.493327pt;}
.y33b{bottom:365.078800pt;}
.y2f6{bottom:365.209467pt;}
.ye9{bottom:365.826667pt;}
.y58{bottom:367.695733pt;}
.y267{bottom:371.111600pt;}
.y22{bottom:371.440933pt;}
.y225{bottom:371.603600pt;}
.y2c9{bottom:372.047600pt;}
.y1fb{bottom:372.048133pt;}
.yf0{bottom:376.518800pt;}
.y33a{bottom:377.081467pt;}
.y2f5{bottom:377.212133pt;}
.y1d8{bottom:378.276001pt;}
.y161{bottom:378.648667pt;}
.y1d6{bottom:379.609333pt;}
.y2aa{bottom:380.039600pt;}
.y24b{bottom:380.051600pt;}
.y21{bottom:387.436933pt;}
.y224{bottom:387.599600pt;}
.y1d5{bottom:387.600267pt;}
.y1dd{bottom:387.601467pt;}
.y2c8{bottom:388.043600pt;}
.y1fa{bottom:388.044133pt;}
.y339{bottom:389.084133pt;}
.y2f4{bottom:389.214800pt;}
.y266{bottom:392.447600pt;}
.y160{bottom:394.640800pt;}
.y8c{bottom:395.135600pt;}
.y2a9{bottom:396.035600pt;}
.y24a{bottom:396.047600pt;}
.y57{bottom:401.025067pt;}
.y338{bottom:401.086800pt;}
.y2f3{bottom:401.217467pt;}
.y20{bottom:403.432933pt;}
.y223{bottom:403.595600pt;}
.y2c7{bottom:404.039600pt;}
.y1f9{bottom:404.040133pt;}
.y1d4{bottom:408.336267pt;}
.y265{bottom:408.443600pt;}
.y8b{bottom:411.131600pt;}
.ye8{bottom:411.244267pt;}
.y2a8{bottom:412.031600pt;}
.y249{bottom:412.043600pt;}
.y56{bottom:413.027733pt;}
.y337{bottom:413.089467pt;}
.y2f2{bottom:413.220133pt;}
.y1f{bottom:419.428933pt;}
.y222{bottom:419.591600pt;}
.y1f8{bottom:420.036133pt;}
.y150{bottom:421.208008pt;}
.y14e{bottom:422.540000pt;}
.y264{bottom:424.439600pt;}
.y336{bottom:425.092133pt;}
.y2f1{bottom:425.222800pt;}
.y15f{bottom:425.900800pt;}
.y8a{bottom:427.127600pt;}
.y2a7{bottom:428.027600pt;}
.y2c6{bottom:428.039600pt;}
.y1d1{bottom:432.970662pt;}
.y1d0{bottom:434.304000pt;}
.ye7{bottom:435.244267pt;}
.y1e{bottom:435.424933pt;}
.y221{bottom:435.587600pt;}
.y1f7{bottom:436.032133pt;}
.y248{bottom:436.043600pt;}
.y335{bottom:437.094800pt;}
.y2f0{bottom:437.225467pt;}
.y1d3{bottom:438.816267pt;}
.y55{bottom:440.365067pt;}
.y263{bottom:440.435600pt;}
.y89{bottom:443.123600pt;}
.y2a6{bottom:444.023600pt;}
.y2c5{bottom:444.035600pt;}
.y334{bottom:449.097467pt;}
.y2ef{bottom:449.228133pt;}
.ye6{bottom:451.240267pt;}
.y1d{bottom:451.420933pt;}
.y220{bottom:451.583600pt;}
.y1f6{bottom:452.028133pt;}
.y247{bottom:452.039600pt;}
.y54{bottom:452.367733pt;}
.y14d{bottom:455.165067pt;}
.y262{bottom:456.431600pt;}
.y88{bottom:459.119600pt;}
.y2a5{bottom:460.019600pt;}
.y2c4{bottom:460.031600pt;}
.y333{bottom:461.100133pt;}
.y2ee{bottom:461.230800pt;}
.y290{bottom:463.055600pt;}
.y53{bottom:464.370400pt;}
.ye5{bottom:467.236267pt;}
.y1cf{bottom:467.308267pt;}
.y21f{bottom:467.579600pt;}
.y1f5{bottom:468.024133pt;}
.y246{bottom:468.035600pt;}
.y14c{bottom:471.161067pt;}
.y261{bottom:472.427600pt;}
.y332{bottom:473.102800pt;}
.y2ed{bottom:473.233467pt;}
.y2a1{bottom:475.079600pt;}
.y87{bottom:475.115600pt;}
.y2a4{bottom:476.015600pt;}
.y2c3{bottom:476.027600pt;}
.y52{bottom:476.373067pt;}
.y28f{bottom:479.051600pt;}
.y1c{bottom:480.539600pt;}
.ye4{bottom:483.232267pt;}
.y1ce{bottom:483.304267pt;}
.y21e{bottom:483.575600pt;}
.y1f4{bottom:484.020133pt;}
.y245{bottom:484.031600pt;}
.y14a{bottom:484.973333pt;}
.y331{bottom:485.105467pt;}
.y2ec{bottom:485.236133pt;}
.y147{bottom:486.989333pt;}
.y146{bottom:487.153333pt;}
.y149{bottom:487.157067pt;}
.y51{bottom:488.375733pt;}
.y260{bottom:488.423600pt;}
.y2a0{bottom:491.075600pt;}
.y86{bottom:491.111600pt;}
.y2c2{bottom:492.023600pt;}
.y28e{bottom:495.047600pt;}
.y1b{bottom:496.535600pt;}
.y330{bottom:497.108133pt;}
.y2eb{bottom:497.238800pt;}
.ye3{bottom:499.228267pt;}
.y21d{bottom:499.571600pt;}
.y244{bottom:500.027600pt;}
.y50{bottom:500.378400pt;}
.y85{bottom:507.107600pt;}
.y1c8{bottom:507.938680pt;}
.y1f3{bottom:508.020133pt;}
.y32f{bottom:509.110800pt;}
.y2ea{bottom:509.241467pt;}
.y1c7{bottom:509.272000pt;}
.y28d{bottom:511.043600pt;}
.y4f{bottom:512.381067pt;}
.y1a{bottom:512.531600pt;}
.y143{bottom:513.720011pt;}
.y141{bottom:515.053333pt;}
.y29f{bottom:515.075600pt;}
.ye2{bottom:515.224267pt;}
.y21c{bottom:515.567600pt;}
.y243{bottom:516.023600pt;}
.y145{bottom:516.709333pt;}
.y283{bottom:518.473467pt;}
.y2bd{bottom:518.793467pt;}
.y1cd{bottom:520.840267pt;}
.y32e{bottom:521.113467pt;}
.y2e9{bottom:521.244133pt;}
.y84{bottom:523.103600pt;}
.y4e{bottom:524.383733pt;}
.y28c{bottom:527.039600pt;}
.y19{bottom:528.527600pt;}
.y29e{bottom:531.071600pt;}
.ye1{bottom:531.220267pt;}
.y21b{bottom:531.563600pt;}
.y282{bottom:531.806800pt;}
.y2bc{bottom:532.126800pt;}
.y32d{bottom:533.116133pt;}
.y2e8{bottom:533.246800pt;}
.y2d1{bottom:534.366800pt;}
.y4d{bottom:539.046400pt;}
.y83{bottom:539.099600pt;}
.y13e{bottom:539.579997pt;}
.y13b{bottom:540.913333pt;}
.y28b{bottom:543.035600pt;}
.y18{bottom:544.523600pt;}
.y140{bottom:544.633467pt;}
.y13a{bottom:544.642800pt;}
.y32c{bottom:545.118800pt;}
.y2e7{bottom:545.249467pt;}
.ye0{bottom:547.216267pt;}
.y21a{bottom:547.559600pt;}
.y1f2{bottom:548.027600pt;}
.y82{bottom:555.095600pt;}
.y1c6{bottom:556.384267pt;}
.y32b{bottom:557.121467pt;}
.y2e6{bottom:557.252133pt;}
.y28a{bottom:559.031600pt;}
.y2a3{bottom:560.073467pt;}
.y17{bottom:560.519600pt;}
.y139{bottom:560.638800pt;}
.y25f{bottom:561.353467pt;}
.y219{bottom:563.555600pt;}
.y1f1{bottom:564.023600pt;}
.y32a{bottom:569.124133pt;}
.y2e5{bottom:569.254800pt;}
.y12f{bottom:570.777344pt;}
.y81{bottom:571.091600pt;}
.ydf{bottom:571.216267pt;}
.y12d{bottom:572.110667pt;}
.y4c{bottom:572.375733pt;}
.y1c4{bottom:572.380000pt;}
.y1c5{bottom:572.380267pt;}
.y1c3{bottom:572.384267pt;}
.y2a2{bottom:573.406800pt;}
.y25e{bottom:574.686800pt;}
.y289{bottom:575.027600pt;}
.y16{bottom:576.515600pt;}
.y135{bottom:577.774667pt;}
.y137{bottom:577.870667pt;}
.y12c{bottom:577.965467pt;}
.y134{bottom:577.966800pt;}
.y218{bottom:579.551600pt;}
.y1f0{bottom:580.019600pt;}
.y329{bottom:581.126800pt;}
.y2e4{bottom:581.257467pt;}
.y4b{bottom:584.378400pt;}
.y80{bottom:587.087600pt;}
.yde{bottom:587.212267pt;}
.y1c1{bottom:588.284000pt;}
.y1c2{bottom:588.380267pt;}
.y1c0{bottom:588.384133pt;}
.y127{bottom:590.779989pt;}
.y288{bottom:591.023600pt;}
.y125{bottom:592.113333pt;}
.y15{bottom:592.511600pt;}
.y328{bottom:593.129467pt;}
.y2e3{bottom:593.260133pt;}
.y217{bottom:595.547600pt;}
.y124{bottom:595.832133pt;}
.y12b{bottom:595.833467pt;}
.y1ef{bottom:596.015600pt;}
.y4a{bottom:599.041067pt;}
.y7f{bottom:603.083600pt;}
.ydd{bottom:603.208267pt;}
.y327{bottom:605.132133pt;}
.y2e2{bottom:605.262800pt;}
.y287{bottom:607.019600pt;}
.y14{bottom:608.507600pt;}
.y216{bottom:611.543600pt;}
.y120{bottom:612.260000pt;}
.y1bb{bottom:613.018677pt;}
.y123{bottom:613.700133pt;}
.y11f{bottom:613.729467pt;}
.y1b9{bottom:614.352000pt;}
.y326{bottom:617.134800pt;}
.y2e1{bottom:617.265467pt;}
.y1bf{bottom:617.712133pt;}
.ydc{bottom:619.204267pt;}
.y185{bottom:623.220133pt;}
.y13{bottom:624.503600pt;}
.y7e{bottom:627.083600pt;}
.y215{bottom:627.539600pt;}
.y325{bottom:629.137467pt;}
.y2e0{bottom:629.268133pt;}
.y11e{bottom:629.725467pt;}
.y286{bottom:631.019600pt;}
.y49{bottom:634.377067pt;}
.ydb{bottom:635.200267pt;}
.y184{bottom:636.553467pt;}
.y12{bottom:640.499600pt;}
.y20e{bottom:640.926800pt;}
.y324{bottom:641.140133pt;}
.y2df{bottom:641.270800pt;}
.y7d{bottom:643.079600pt;}
.y214{bottom:643.535600pt;}
.y1b7{bottom:644.948000pt;}
.y1b8{bottom:645.044133pt;}
.y1b6{bottom:645.048133pt;}
.y48{bottom:646.379733pt;}
.y285{bottom:647.015600pt;}
.y183{bottom:649.886800pt;}
.yda{bottom:651.196267pt;}
.y323{bottom:653.142800pt;}
.y2de{bottom:653.273467pt;}
.y11d{bottom:653.725467pt;}
.y11{bottom:656.495600pt;}
.y47{bottom:658.382400pt;}
.y7c{bottom:659.075600pt;}
.y213{bottom:659.531600pt;}
.y1b4{bottom:660.948000pt;}
.y1b5{bottom:661.044133pt;}
.y1b3{bottom:661.048133pt;}
.y284{bottom:663.011600pt;}
.y322{bottom:665.145467pt;}
.y2dd{bottom:665.276133pt;}
.yd9{bottom:667.192267pt;}
.y11c{bottom:669.721467pt;}
.y46{bottom:670.385067pt;}
.y10{bottom:672.491600pt;}
.y7b{bottom:675.071600pt;}
.y212{bottom:675.527600pt;}
.y1b2{bottom:676.948000pt;}
.y1af{bottom:677.044000pt;}
.y1b1{bottom:677.044133pt;}
.y1ae{bottom:677.048133pt;}
.y321{bottom:677.148133pt;}
.y2dc{bottom:677.278800pt;}
.y45{bottom:682.387733pt;}
.yd8{bottom:683.188267pt;}
.y11b{bottom:685.717467pt;}
.yf{bottom:688.487600pt;}
.y320{bottom:689.150800pt;}
.y2db{bottom:689.281467pt;}
.y7a{bottom:691.067600pt;}
.y211{bottom:691.523600pt;}
.y1ab{bottom:692.948000pt;}
.y1ad{bottom:693.044000pt;}
.y1ac{bottom:693.044133pt;}
.y1aa{bottom:693.049467pt;}
.y44{bottom:694.390400pt;}
.yd7{bottom:699.184267pt;}
.y31f{bottom:701.153467pt;}
.y2da{bottom:701.284133pt;}
.y11a{bottom:701.713467pt;}
.y43{bottom:706.393067pt;}
.y79{bottom:707.063600pt;}
.y1a4{bottom:709.044027pt;}
.y1a2{bottom:710.377333pt;}
.y29c{bottom:711.690800pt;}
.y31e{bottom:713.156133pt;}
.y2d9{bottom:713.286800pt;}
.yd6{bottom:715.180267pt;}
.y210{bottom:715.523600pt;}
.y119{bottom:717.709467pt;}
.y42{bottom:718.395733pt;}
.y78{bottom:723.059600pt;}
.ycf{bottom:724.516000pt;}
.y31d{bottom:725.158800pt;}
.y19f{bottom:725.569333pt;}
.y19e{bottom:725.660133pt;}
.y1a1{bottom:725.665467pt;}
.yd3{bottom:725.860000pt;}
.y37{bottom:728.087600pt;}
.y29b{bottom:730.357467pt;}
.y41{bottom:730.398400pt;}
.y20f{bottom:731.519600pt;}
.yd2{bottom:731.692267pt;}
.yce{bottom:731.696267pt;}
.y2d8{bottom:733.286800pt;}
.y118{bottom:733.705467pt;}
.y31c{bottom:737.161467pt;}
.y77{bottom:739.055600pt;}
.y40{bottom:742.401067pt;}
.y36{bottom:742.754267pt;}
.y29a{bottom:749.024133pt;}
.y31b{bottom:749.164133pt;}
.y117{bottom:749.701467pt;}
.y3f{bottom:754.403733pt;}
.y76{bottom:755.051600pt;}
.yc3{bottom:756.330648pt;}
.y35{bottom:757.420933pt;}
.yc1{bottom:757.664000pt;}
.y31a{bottom:761.166800pt;}
.y195{bottom:764.202637pt;}
.y193{bottom:765.536000pt;}
.y116{bottom:765.697467pt;}
.y3e{bottom:766.406400pt;}
.y299{bottom:767.690800pt;}
.ycd{bottom:768.356267pt;}
.y240{bottom:770.357467pt;}
.y75{bottom:771.047600pt;}
.y319{bottom:773.169467pt;}
.y19d{bottom:774.308133pt;}
.y114{bottom:775.033333pt;}
.y34{bottom:775.639600pt;}
.y3d{bottom:778.409067pt;}
.y2d7{bottom:778.636133pt;}
.y115{bottom:782.209467pt;}
.y113{bottom:782.212133pt;}
.y318{bottom:785.172133pt;}
.y298{bottom:786.357467pt;}
.y74{bottom:787.043600pt;}
.y23f{bottom:789.024133pt;}
.y3c{bottom:790.411733pt;}
.y110{bottom:794.510661pt;}
.y2d6{bottom:794.632133pt;}
.y10d{bottom:795.845333pt;}
.y33{bottom:796.887733pt;}
.y317{bottom:797.174800pt;}
.y3b{bottom:802.414400pt;}
.y112{bottom:803.020133pt;}
.y10c{bottom:803.024133pt;}
.y73{bottom:803.039600pt;}
.y297{bottom:805.024133pt;}
.y192{bottom:807.056133pt;}
.y23e{bottom:807.690800pt;}
.y316{bottom:809.177467pt;}
.y2d5{bottom:810.628133pt;}
.y32{bottom:811.287733pt;}
.y3a{bottom:814.417067pt;}
.y107{bottom:816.342692pt;}
.y104{bottom:817.676000pt;}
.y10a{bottom:818.972000pt;}
.y109{bottom:819.020133pt;}
.y72{bottom:819.035600pt;}
.y315{bottom:821.180133pt;}
.y191{bottom:823.060267pt;}
.y296{bottom:823.690800pt;}
.y23d{bottom:826.357467pt;}
.y39{bottom:826.419733pt;}
.y2d4{bottom:826.624133pt;}
.yc0{bottom:827.039600pt;}
.y359{bottom:828.998800pt;}
.y314{bottom:833.182800pt;}
.y71{bottom:835.031600pt;}
.y31{bottom:836.354267pt;}
.y190{bottom:839.056267pt;}
.y358{bottom:841.001467pt;}
.y38{bottom:841.082400pt;}
.y2d3{bottom:842.620133pt;}
.ybf{bottom:843.035600pt;}
.y293{bottom:844.853467pt;}
.y23c{bottom:845.024133pt;}
.y313{bottom:845.185467pt;}
.y70{bottom:851.027600pt;}
.y357{bottom:853.004133pt;}
.y312{bottom:857.188133pt;}
.y295{bottom:858.186800pt;}
.ybe{bottom:859.031600pt;}
.y30{bottom:860.354267pt;}
.y189{bottom:863.690674pt;}
.y23b{bottom:863.690800pt;}
.y356{bottom:865.006800pt;}
.y2d2{bottom:865.020133pt;}
.y187{bottom:865.024000pt;}
.y6f{bottom:867.023600pt;}
.y67{bottom:868.082400pt;}
.y311{bottom:869.190800pt;}
.y294{bottom:871.520133pt;}
.y35e{bottom:873.658800pt;}
.y18f{bottom:874.036267pt;}
.ybd{bottom:875.027600pt;}
.y355{bottom:877.009467pt;}
.y310{bottom:881.193467pt;}
.y6e{bottom:883.019600pt;}
.y2f{bottom:884.354267pt;}
.y23a{bottom:884.853467pt;}
.y68{bottom:885.420933pt;}
.y35d{bottom:885.661467pt;}
.y354{bottom:889.012133pt;}
.ybc{bottom:891.023600pt;}
.y29d{bottom:892.020133pt;}
.y30f{bottom:893.196133pt;}
.y35c{bottom:897.664133pt;}
.ybb{bottom:901.014800pt;}
.y242{bottom:905.353467pt;}
.y6d{bottom:907.019600pt;}
.y186{bottom:907.024133pt;}
.y35b{bottom:909.666800pt;}
.yba{bottom:913.017467pt;}
.y241{bottom:918.686800pt;}
.y35a{bottom:921.669467pt;}
.y6c{bottom:923.015600pt;}
.yb9{bottom:925.020133pt;}
.y6a{bottom:974.776533pt;}
.y6b{bottom:975.798800pt;}
.h22{height:3.156173pt;}
.h13{height:7.944000pt;}
.h2d{height:7.992000pt;}
.h3c{height:8.040000pt;}
.h52{height:8.112000pt;}
.h60{height:8.136000pt;}
.h3b{height:8.160000pt;}
.h42{height:8.232000pt;}
.h19{height:8.304000pt;}
.h51{height:8.328000pt;}
.h5a{height:9.048000pt;}
.h2b{height:9.288000pt;}
.h61{height:9.336000pt;}
.h34{height:9.384000pt;}
.h18{height:9.408000pt;}
.h6e{height:9.432000pt;}
.h28{height:9.456000pt;}
.h37{height:9.729209pt;}
.h16{height:10.200000pt;}
.h45{height:10.224000pt;}
.h14{height:10.728000pt;}
.h3e{height:11.256000pt;}
.h35{height:11.688000pt;}
.h2a{height:11.955200pt;}
.h5f{height:12.268467pt;}
.h69{height:12.889609pt;}
.h46{height:14.664000pt;}
.h41{height:14.967910pt;}
.h26{height:16.752000pt;}
.h66{height:16.968000pt;}
.h38{height:17.184000pt;}
.h24{height:18.096000pt;}
.h2e{height:18.142667pt;}
.h32{height:18.144000pt;}
.h1e{height:18.171782pt;}
.h3a{height:18.278050pt;}
.h1b{height:18.960000pt;}
.h2c{height:19.954671pt;}
.h29{height:20.122665pt;}
.h15{height:20.763934pt;}
.h49{height:21.230190pt;}
.h17{height:21.261274pt;}
.h31{height:21.385609pt;}
.h40{height:21.922648pt;}
.h6a{height:22.056000pt;}
.h3d{height:22.354655pt;}
.h36{height:22.354696pt;}
.h48{height:25.330648pt;}
.h57{height:25.488000pt;}
.he{height:25.728000pt;}
.ha{height:25.834667pt;}
.h54{height:25.968000pt;}
.h8{height:26.794667pt;}
.h67{height:27.634684pt;}
.h39{height:27.850667pt;}
.h30{height:28.810710pt;}
.h70{height:29.269333pt;}
.h1f{height:29.328000pt;}
.h6f{height:29.525333pt;}
.h1d{height:29.626394pt;}
.h4{height:30.144000pt;}
.h62{height:31.080000pt;}
.h12{height:31.944294pt;}
.h1a{height:32.661606pt;}
.h44{height:32.709427pt;}
.h6b{height:32.722656pt;}
.hf{height:32.900710pt;}
.h4a{height:32.996352pt;}
.hd{height:33.216000pt;}
.h56{height:33.235456pt;}
.h5{height:35.877333pt;}
.h58{height:36.154704pt;}
.h10{height:36.394674pt;}
.h55{height:36.634684pt;}
.h71{height:36.669333pt;}
.h65{height:37.499401pt;}
.h7{height:37.574400pt;}
.h6c{height:38.026227pt;}
.h43{height:38.127475pt;}
.h21{height:38.213244pt;}
.h11{height:38.217510pt;}
.h6d{height:38.477807pt;}
.h5b{height:38.520000pt;}
.h74{height:38.744857pt;}
.h68{height:39.888734pt;}
.h27{height:39.994670pt;}
.h20{height:39.994710pt;}
.h2{height:40.597333pt;}
.h9{height:41.002667pt;}
.h47{height:41.364992pt;}
.h63{height:41.746663pt;}
.h3f{height:42.869342pt;}
.h33{height:44.215407pt;}
.h2f{height:44.339209pt;}
.h25{height:44.339742pt;}
.h4e{height:44.880000pt;}
.h3{height:46.128000pt;}
.h4d{height:46.143467pt;}
.h53{height:46.146133pt;}
.h64{height:46.966423pt;}
.h73{height:47.335999pt;}
.h5d{height:49.186605pt;}
.hc{height:51.253333pt;}
.hb{height:51.669333pt;}
.h5e{height:51.750982pt;}
.h1c{height:52.705116pt;}
.h75{height:53.246435pt;}
.h6{height:55.360000pt;}
.h4f{height:55.546672pt;}
.h50{height:55.856444pt;}
.h4c{height:56.420662pt;}
.h4b{height:56.421196pt;}
.h59{height:63.840768pt;}
.h23{height:66.375270pt;}
.h5c{height:85.455770pt;}
.h72{height:108.266291pt;}
.h1{height:1050.666667pt;}
.h0{height:1050.708008pt;}
.w21{width:3.528000pt;}
.w3f{width:4.968000pt;}
.w2f{width:5.208000pt;}
.w17{width:5.256000pt;}
.w20{width:5.545333pt;}
.w1b{width:7.600000pt;}
.w38{width:7.800000pt;}
.w3b{width:8.040000pt;}
.w4{width:8.328000pt;}
.w5{width:8.736000pt;}
.we{width:9.928000pt;}
.wf{width:9.930667pt;}
.w6{width:9.976000pt;}
.w16{width:11.201333pt;}
.w34{width:11.417333pt;}
.w7{width:12.456000pt;}
.w48{width:12.600000pt;}
.w1a{width:13.625333pt;}
.w37{width:14.081333pt;}
.w2e{width:14.176000pt;}
.w9{width:15.112000pt;}
.w28{width:15.472000pt;}
.w18{width:15.545333pt;}
.w41{width:16.272000pt;}
.w39{width:16.288000pt;}
.w40{width:23.032000pt;}
.w3c{width:26.088000pt;}
.w8{width:27.952000pt;}
.wb{width:27.960000pt;}
.w27{width:30.712000pt;}
.w1c{width:30.953333pt;}
.w14{width:31.313333pt;}
.w26{width:34.696000pt;}
.w22{width:35.280000pt;}
.wa{width:39.119954pt;}
.w19{width:39.552002pt;}
.w1e{width:39.641333pt;}
.w2d{width:53.752000pt;}
.w1d{width:54.960002pt;}
.w15{width:55.320028pt;}
.w23{width:59.279989pt;}
.w1f{width:63.647990pt;}
.w46{width:69.088000pt;}
.w42{width:72.077333pt;}
.w32{width:74.352000pt;}
.w3a{width:74.544000pt;}
.w44{width:75.408000pt;}
.w47{width:93.096008pt;}
.w43{width:96.076009pt;}
.w33{width:98.352010pt;}
.w45{width:99.408000pt;}
.w12{width:118.824000pt;}
.w35{width:123.497333pt;}
.w24{width:126.480000pt;}
.w10{width:133.488000pt;}
.w13{width:142.824015pt;}
.w36{width:147.504028pt;}
.w25{width:150.480021pt;}
.w2b{width:155.664000pt;}
.w11{width:157.487996pt;}
.w2c{width:179.664022pt;}
.wc{width:194.040000pt;}
.w30{width:206.093333pt;}
.w49{width:215.198667pt;}
.wd{width:218.039998pt;}
.w2{width:219.936000pt;}
.w31{width:230.093302pt;}
.w4a{width:239.198649pt;}
.w3{width:243.935994pt;}
.w3d{width:299.160000pt;}
.w3e{width:323.160014pt;}
.w29{width:474.072000pt;}
.w2a{width:498.072021pt;}
.w0{width:801.260010pt;}
.w1{width:801.333333pt;}
.x21{left:-34.055867pt;}
.x12{left:-32.832133pt;}
.x0{left:0.000000pt;}
.x38{left:1.769067pt;}
.x22{left:2.808000pt;}
.x15{left:4.928133pt;}
.x18{left:6.285733pt;}
.x63{left:7.355333pt;}
.x8a{left:8.497067pt;}
.x4e{left:10.287467pt;}
.x5a{left:15.391468pt;}
.x4d{left:16.929061pt;}
.x54{left:17.919743pt;}
.x23{left:20.325187pt;}
.x56{left:22.504133pt;}
.x55{left:23.657209pt;}
.xd{left:24.737064pt;}
.x46{left:25.700533pt;}
.x45{left:26.854010pt;}
.x5c{left:29.582000pt;}
.x2b{left:33.184132pt;}
.x97{left:34.217333pt;}
.x81{left:39.107733pt;}
.x6{left:40.633867pt;}
.xac{left:42.657330pt;}
.x99{left:43.861200pt;}
.xbd{left:45.307200pt;}
.x8f{left:47.131984pt;}
.x5b{left:49.118135pt;}
.xbb{left:51.293342pt;}
.x98{left:52.362538pt;}
.x7{left:53.967333pt;}
.x3b{left:58.203865pt;}
.x90{left:59.280000pt;}
.xbe{left:61.440933pt;}
.x9a{left:62.878405pt;}
.x82{left:64.545077pt;}
.xbc{left:66.468267pt;}
.x9d{left:69.709216pt;}
.x6e{left:70.665200pt;}
.x83{left:72.024800pt;}
.x2c{left:77.910666pt;}
.x91{left:79.002918pt;}
.xad{left:81.026533pt;}
.x9e{left:82.749749pt;}
.x2d{left:83.962800pt;}
.x3c{left:85.997200pt;}
.x42{left:90.778674pt;}
.x85{left:92.661077pt;}
.x80{left:94.388800pt;}
.xc3{left:97.265862pt;}
.xae{left:98.621197pt;}
.x84{left:100.359744pt;}
.xaf{left:101.935867pt;}
.x2e{left:106.523732pt;}
.x3d{left:108.557065pt;}
.x9f{left:110.960667pt;}
.x95{left:112.706533pt;}
.xb0{left:116.689467pt;}
.x3e{left:118.802398pt;}
.x68{left:120.625333pt;}
.x70{left:125.401200pt;}
.x3f{left:126.711733pt;}
.x2f{left:128.049067pt;}
.x92{left:133.053451pt;}
.x6f{left:134.843857pt;}
.xe{left:137.940264pt;}
.x86{left:143.828667pt;}
.xf{left:145.586533pt;}
.x31{left:150.518400pt;}
.x30{left:151.673066pt;}
.x87{left:163.098011pt;}
.x72{left:167.002533pt;}
.x93{left:169.274800pt;}
.x32{left:171.154399pt;}
.x33{left:173.843866pt;}
.x71{left:176.445190pt;}
.x10{left:178.717067pt;}
.xb1{left:183.704133pt;}
.x34{left:188.353333pt;}
.xc4{left:193.939196pt;}
.xb2{left:201.885330pt;}
.x94{left:203.997184pt;}
.x74{left:220.449200pt;}
.x1{left:222.818933pt;}
.x73{left:227.899857pt;}
.xcb{left:233.297067pt;}
.x4{left:237.310533pt;}
.xc0{left:238.626933pt;}
.x6d{left:242.593343pt;}
.x11{left:254.413333pt;}
.x35{left:255.858667pt;}
.xa4{left:260.212000pt;}
.x13{left:262.741067pt;}
.x36{left:265.794800pt;}
.x64{left:267.389343pt;}
.x76{left:270.045067pt;}
.xa5{left:276.507200pt;}
.x75{left:277.495724pt;}
.x62{left:279.389333pt;}
.xb3{left:280.830797pt;}
.x69{left:290.021733pt;}
.xb4{left:295.252133pt;}
.x9{left:303.795733pt;}
.x88{left:309.176133pt;}
.x65{left:314.668800pt;}
.xbf{left:321.905333pt;}
.x78{left:324.781067pt;}
.xab{left:330.049337pt;}
.x77{left:334.223724pt;}
.xaa{left:342.049333pt;}
.x59{left:345.706665pt;}
.xb8{left:346.931733pt;}
.x58{left:357.705333pt;}
.x1a{left:360.340000pt;}
.x7a{left:366.382400pt;}
.xc{left:369.661336pt;}
.x1b{left:372.795867pt;}
.x79{left:375.825057pt;}
.xb{left:381.661333pt;}
.x2a{left:382.609334pt;}
.xc2{left:384.029333pt;}
.x8e{left:388.582667pt;}
.xb5{left:390.570667pt;}
.x6a{left:393.586667pt;}
.x29{left:394.609333pt;}
.xb6{left:395.538667pt;}
.x5d{left:397.354133pt;}
.x7f{left:401.797323pt;}
.x3a{left:412.885335pt;}
.x7e{left:413.797333pt;}
.x67{left:416.389323pt;}
.x41{left:420.217326pt;}
.x37{left:425.133333pt;}
.x7b{left:427.279724pt;}
.x66{left:428.389333pt;}
.x40{left:432.217333pt;}
.x39{left:435.069333pt;}
.x96{left:442.453328pt;}
.xba{left:443.590658pt;}
.x14{left:447.901333pt;}
.x44{left:451.555990pt;}
.x7d{left:454.633067pt;}
.xb9{left:455.590667pt;}
.x16{left:456.637733pt;}
.x7c{left:459.427724pt;}
.x43{left:463.554667pt;}
.x5e{left:475.661333pt;}
.x5f{left:481.206667pt;}
.x89{left:491.944000pt;}
.x47{left:494.875600pt;}
.x1c{left:501.017333pt;}
.x8b{left:506.127733pt;}
.x1d{left:511.000533pt;}
.xc6{left:511.898533pt;}
.xc7{left:516.335867pt;}
.x25{left:521.318667pt;}
.x26{left:530.053867pt;}
.x48{left:532.710667pt;}
.xa9{left:535.058667pt;}
.x1e{left:539.893333pt;}
.x53{left:542.498667pt;}
.x49{left:543.919600pt;}
.x60{left:549.264000pt;}
.x61{left:553.263867pt;}
.x27{left:557.034667pt;}
.x1f{left:567.853067pt;}
.xc8{left:571.503867pt;}
.x57{left:573.458800pt;}
.xc9{left:576.677200pt;}
.x6b{left:581.465333pt;}
.x28{left:584.995067pt;}
.x9c{left:586.991984pt;}
.x5{left:587.941733pt;}
.x6c{left:596.945867pt;}
.x9b{left:598.992000pt;}
.xa{left:615.282800pt;}
.xa1{left:620.272000pt;}
.xa6{left:623.623200pt;}
.x8c{left:625.860000pt;}
.x50{left:629.106667pt;}
.x8d{left:631.068400pt;}
.xa7{left:633.254667pt;}
.xa2{left:634.360000pt;}
.x52{left:635.854267pt;}
.xca{left:637.018533pt;}
.x51{left:642.739067pt;}
.xa8{left:659.342400pt;}
.xc1{left:677.440000pt;}
.x17{left:689.732000pt;}
.x4a{left:695.042667pt;}
.x19{left:699.716533pt;}
.xa3{left:705.470667pt;}
.x4c{left:712.972005pt;}
.x2{left:717.269067pt;}
.xc5{left:720.822933pt;}
.xa0{left:722.496400pt;}
.x4b{left:724.972000pt;}
.x8{left:726.822933pt;}
.x20{left:738.013333pt;}
.x4f{left:740.523733pt;}
.x3{left:751.575867pt;}
.x24{left:753.133333pt;}
.xb7{left:760.629200pt;}
}


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