
/* 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_d5e85a1918ab.woff")format("woff");}.ff1{font-family:ff1;line-height:1.202000;font-style:normal;font-weight: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_c3f74e5bd5b6.woff")format("woff");}.ff2{font-family:ff2;line-height:1.203000;font-style:normal;font-weight: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_dc95ed900b46.woff")format("woff");}.ff3{font-family:ff3;line-height:1.239000;font-style:normal;font-weight: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_eb84cc9227fc.woff")format("woff");}.ff4{font-family:ff4;line-height:1.133000;font-style:normal;font-weight: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_d1e8a98df439.woff")format("woff");}.ff5{font-family:ff5;line-height:1.223000;font-style:normal;font-weight: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_68954e6250c2.woff")format("woff");}.ff6{font-family:ff6;line-height:1.113000;font-style:normal;font-weight: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_ffa0025446ae.woff")format("woff");}.ff7{font-family:ff7;line-height:0.668000;font-style:normal;font-weight: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_6b34606da7c5.woff")format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_8bc8d94564e0.woff")format("woff");}.ff9{font-family:ff9;line-height:1.483000;font-style:normal;font-weight: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_25c243313753.woff")format("woff");}.ffa{font-family:ffa;line-height:1.483000;font-style:normal;font-weight: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_7adf98202d0b.woff")format("woff");}.ffb{font-family:ffb;line-height:1.202000;font-style:normal;font-weight: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_3bf8e0b93d46.woff")format("woff");}.ffc{font-family:ffc;line-height:1.222000;font-style:normal;font-weight: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_e12a3992e37f.woff")format("woff");}.ffd{font-family:ffd;line-height:0.452000;font-style:normal;font-weight: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_73d1160e64ba.woff")format("woff");}.ffe{font-family:ffe;line-height:0.258000;font-style:normal;font-weight: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_842b88895213.woff")format("woff");}.fff{font-family:fff;line-height:0.701000;font-style:normal;font-weight: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_6a900ca8939c.woff")format("woff");}.ff10{font-family:ff10;line-height:0.881000;font-style:normal;font-weight: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_3c6a4f43b35a.woff")format("woff");}.ff11{font-family:ff11;line-height:0.879000;font-style:normal;font-weight: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_eeb021c8f2c5.woff")format("woff");}.ff12{font-family:ff12;line-height:0.258000;font-style:normal;font-weight: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_a4f0cf96ec5e.woff")format("woff");}.ff13{font-family:ff13;line-height:0.704000;font-style:normal;font-weight: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_9b881900bb4b.woff")format("woff");}.ff14{font-family:ff14;line-height:0.881000;font-style:normal;font-weight: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_acf004f66168.woff")format("woff");}.ff15{font-family:ff15;line-height:0.724000;font-style:normal;font-weight: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_a571eca2f3b7.woff")format("woff");}.ff16{font-family:ff16;line-height:0.713000;font-style:normal;font-weight: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_4738053bd54f.woff")format("woff");}.ff17{font-family:ff17;line-height:0.713000;font-style:normal;font-weight: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_0645ae1a2391.woff")format("woff");}.ff18{font-family:ff18;line-height:0.721000;font-style:normal;font-weight: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_dfaf9c23824c.woff")format("woff");}.ff19{font-family:ff19;line-height:0.717000;font-style:normal;font-weight: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_d78e26dab55d.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.713000;font-style:normal;font-weight: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_51e100fe01c6.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.712000;font-style:normal;font-weight: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_9b8b1d879867.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.717000;font-style:normal;font-weight: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_51e100fe01c6.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.712000;font-style:normal;font-weight: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_73d1160e64ba.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.258000;font-style:normal;font-weight: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_de8615f1f33f.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.722000;font-style:normal;font-weight: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_621900c5199a.woff")format("woff");}.ff20{font-family:ff20;line-height:0.853000;font-style:normal;font-weight: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_d554d25ee912.woff")format("woff");}.ff21{font-family:ff21;line-height:0.720000;font-style:normal;font-weight: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_22576ac7b660.woff")format("woff");}.ff22{font-family:ff22;line-height:0.666000;font-style:normal;font-weight: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_794df2f26fcc.woff")format("woff");}.ff23{font-family:ff23;line-height:1.799000;font-style:normal;font-weight: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_9c4a85f7524e.woff")format("woff");}.ff24{font-family:ff24;line-height:0.726000;font-style:normal;font-weight: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_3f6dd07a4b6b.woff")format("woff");}.ff25{font-family:ff25;line-height:0.724000;font-style:normal;font-weight: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_af6c6fbbc449.woff")format("woff");}.ff26{font-family:ff26;line-height:0.719000;font-style:normal;font-weight: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_56ea13225445.woff")format("woff");}.ff27{font-family:ff27;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url("fonts/font_0039_34c26ebaaa17.woff")format("woff");}.ff28{font-family:ff28;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url("fonts/font_0040_16fa543f01d2.woff")format("woff");}.ff29{font-family:ff29;line-height:0.853000;font-style:normal;font-weight: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_9e176f379e62.woff")format("woff");}.ff2a{font-family:ff2a;line-height:0.729000;font-style:normal;font-weight: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_34dcb5db49b9.woff")format("woff");}.ff2b{font-family:ff2b;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url("fonts/font_0043_63152ec73e18.woff")format("woff");}.ff2c{font-family:ff2c;line-height:0.725000;font-style:normal;font-weight: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_dd96fadbd222.woff")format("woff");}.ff2d{font-family:ff2d;line-height:0.824000;font-style:normal;font-weight: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_a725856d1b69.woff")format("woff");}.ff2e{font-family:ff2e;line-height:0.875000;font-style:normal;font-weight: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_22576ac7b660.woff")format("woff");}.ff2f{font-family:ff2f;line-height:0.666000;font-style:normal;font-weight: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_4793803b6979.woff")format("woff");}.ff30{font-family:ff30;line-height:2.399000;font-style:normal;font-weight: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_83b2d3e2dad2.woff")format("woff");}.ff31{font-family:ff31;line-height:0.721000;font-style:normal;font-weight: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_a725856d1b69.woff")format("woff");}.ff32{font-family:ff32;line-height:0.875000;font-style:normal;font-weight: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_58081da35396.woff")format("woff");}.ff33{font-family:ff33;line-height:0.721000;font-style:normal;font-weight: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_64a3bd3c43b7.woff")format("woff");}.ff34{font-family:ff34;line-height:2.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url("fonts/font_0052_ce18a89cdb89.woff")format("woff");}.ff35{font-family:ff35;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url("fonts/font_0053_7adf98202d0b.woff")format("woff");}.ff36{font-family:ff36;line-height:1.202000;font-style:normal;font-weight: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_4b88c0bf6ad8.woff")format("woff");}.ff37{font-family:ff37;line-height:0.714000;font-style:normal;font-weight: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_9b9a515723a2.woff")format("woff");}.ff38{font-family:ff38;line-height:1.005000;font-style:normal;font-weight: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_fd3ba286859f.woff")format("woff");}.ff39{font-family:ff39;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url("fonts/font_0057_ca33d2e28855.woff")format("woff");}.ff3a{font-family:ff3a;line-height:1.027000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-ms-transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-webkit-transform:matrix(0.250004,0.000000,-0.051977,0.244537,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);}
.v10{vertical-align:-82.935918px;}
.v3{vertical-align:-18.000000px;}
.v4{vertical-align:-14.700077px;}
.v5{vertical-align:-12.000000px;}
.v6{vertical-align:-8.800781px;}
.v7{vertical-align:-1.727417px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v13{vertical-align:3.402000px;}
.ve{vertical-align:8.423401px;}
.vd{vertical-align:10.476563px;}
.va{vertical-align:14.138891px;}
.vf{vertical-align:16.954834px;}
.v12{vertical-align:18.000000px;}
.v9{vertical-align:21.761353px;}
.v8{vertical-align:23.462479px;}
.v2{vertical-align:26.399780px;}
.vb{vertical-align:35.900244px;}
.vc{vertical-align:41.232680px;}
.v11{vertical-align:107.052036px;}
.ls30{letter-spacing:-6.350400px;}
.ls8{letter-spacing:-5.997600px;}
.ls5{letter-spacing:-4.667933px;}
.ls32{letter-spacing:-1.293600px;}
.ls4{letter-spacing:-1.050000px;}
.ls31{letter-spacing:-0.823200px;}
.ls9{letter-spacing:-0.470400px;}
.ls6{letter-spacing:-0.411600px;}
.ls7{letter-spacing:-0.352800px;}
.ls2f{letter-spacing:-0.294000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000002px;}
.ls38{letter-spacing:0.000066px;}
.ls1b{letter-spacing:0.017303px;}
.ls36{letter-spacing:0.018262px;}
.ls24{letter-spacing:0.018961px;}
.lsb{letter-spacing:0.020642px;}
.ls26{letter-spacing:0.020825px;}
.lsd{letter-spacing:0.024896px;}
.ls33{letter-spacing:0.044702px;}
.lse{letter-spacing:0.105205px;}
.ls3a{letter-spacing:0.150130px;}
.ls3b{letter-spacing:0.225194px;}
.ls14{letter-spacing:0.928960px;}
.ls11{letter-spacing:0.932786px;}
.ls3c{letter-spacing:1.125972px;}
.lsc{letter-spacing:1.489152px;}
.ls29{letter-spacing:1.525237px;}
.ls39{letter-spacing:1.876621px;}
.ls1a{letter-spacing:2.735335px;}
.ls17{letter-spacing:2.988417px;}
.ls1c{letter-spacing:2.988966px;}
.ls18{letter-spacing:3.042982px;}
.lsa{letter-spacing:3.101327px;}
.lsf{letter-spacing:3.525765px;}
.ls20{letter-spacing:4.705584px;}
.ls2d{letter-spacing:5.293782px;}
.ls0{letter-spacing:5.460000px;}
.ls23{letter-spacing:6.294615px;}
.ls2e{letter-spacing:7.176016px;}
.ls1f{letter-spacing:9.058249px;}
.ls2c{letter-spacing:10.234645px;}
.ls19{letter-spacing:11.625175px;}
.ls13{letter-spacing:11.677777px;}
.ls16{letter-spacing:11.730380px;}
.ls2a{letter-spacing:13.057996px;}
.ls28{letter-spacing:13.116815px;}
.ls35{letter-spacing:13.175635px;}
.ls10{letter-spacing:14.623523px;}
.ls1d{letter-spacing:14.653700px;}
.ls12{letter-spacing:15.573011px;}
.ls15{letter-spacing:15.573194px;}
.ls37{letter-spacing:16.062630px;}
.ls34{letter-spacing:16.293085px;}
.ls1e{letter-spacing:16.351904px;}
.ls22{letter-spacing:16.410724px;}
.ls27{letter-spacing:16.736377px;}
.ls21{letter-spacing:28.292324px;}
.ls25{letter-spacing:28.586423px;}
.ls2b{letter-spacing:32.821448px;}
.ls1{letter-spacing:38.305644px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-30.528000px;}
.ws6{word-spacing:-25.284635px;}
.ws1{word-spacing:-21.216000px;}
.wsc{word-spacing:-13.818000px;}
.ws8c{word-spacing:-13.465200px;}
.wsd{word-spacing:-13.406400px;}
.ws5f{word-spacing:-13.347600px;}
.ws125{word-spacing:-12.994800px;}
.ws4{word-spacing:-12.483600px;}
.ws5{word-spacing:-12.420000px;}
.ws135{word-spacing:-12.310630px;}
.ws134{word-spacing:-11.559982px;}
.wsd1{word-spacing:-11.426400px;}
.ws12b{word-spacing:-11.348400px;}
.ws133{word-spacing:-10.659204px;}
.ws132{word-spacing:-10.584140px;}
.wsd2{word-spacing:-10.512000px;}
.ws0{word-spacing:-10.176000px;}
.ws3{word-spacing:-10.117800px;}
.ws12d{word-spacing:-9.855000px;}
.wsc7{word-spacing:-9.672600px;}
.ws12e{word-spacing:-9.315000px;}
.wsa{word-spacing:-8.148000px;}
.ws136{word-spacing:-8.100000px;}
.wsc8{word-spacing:-7.358400px;}
.ws7{word-spacing:-6.898500px;}
.ws97{word-spacing:-6.468000px;}
.ws9b{word-spacing:-4.512000px;}
.ws9{word-spacing:-2.310000px;}
.ws138{word-spacing:-1.890000px;}
.ws137{word-spacing:-1.876621px;}
.ws5c{word-spacing:-1.705200px;}
.ws7c{word-spacing:-1.646400px;}
.ws96{word-spacing:-1.411200px;}
.ws115{word-spacing:-1.293600px;}
.ws35{word-spacing:-1.234800px;}
.ws12c{word-spacing:-1.176000px;}
.ws11e{word-spacing:-1.117200px;}
.wsbc{word-spacing:-0.882000px;}
.ws2b{word-spacing:-0.823200px;}
.wsdc{word-spacing:-0.764400px;}
.ws7b{word-spacing:-0.646800px;}
.wsbf{word-spacing:-0.588000px;}
.wse3{word-spacing:-0.529200px;}
.ws83{word-spacing:-0.470400px;}
.wsfd{word-spacing:-0.294000px;}
.ws80{word-spacing:-0.235200px;}
.ws15{word-spacing:-0.176400px;}
.ws27{word-spacing:-0.117600px;}
.ws111{word-spacing:-0.089405px;}
.ws110{word-spacing:-0.058820px;}
.wsfa{word-spacing:-0.058800px;}
.ws112{word-spacing:-0.052603px;}
.ws131{word-spacing:-0.045000px;}
.ws8{word-spacing:0.000000px;}
.ws8b{word-spacing:0.058800px;}
.ws56{word-spacing:0.117600px;}
.wsde{word-spacing:0.176400px;}
.ws40{word-spacing:0.235200px;}
.ws6d{word-spacing:0.294000px;}
.ws3b{word-spacing:0.352800px;}
.ws11d{word-spacing:0.470400px;}
.ws51{word-spacing:0.529200px;}
.ws5a{word-spacing:0.588000px;}
.ws68{word-spacing:0.646800px;}
.wsf{word-spacing:0.705600px;}
.ws2c{word-spacing:0.764400px;}
.ws6e{word-spacing:0.823200px;}
.wse1{word-spacing:0.940800px;}
.wsa8{word-spacing:0.999600px;}
.ws9f{word-spacing:1.058400px;}
.wsc3{word-spacing:1.117200px;}
.ws33{word-spacing:1.176000px;}
.ws58{word-spacing:1.234800px;}
.wscb{word-spacing:1.293600px;}
.ws43{word-spacing:1.352400px;}
.ws41{word-spacing:1.470000px;}
.ws8a{word-spacing:1.528800px;}
.wsb3{word-spacing:1.646400px;}
.ws7e{word-spacing:1.705200px;}
.ws48{word-spacing:1.764000px;}
.ws59{word-spacing:1.822800px;}
.ws81{word-spacing:1.881600px;}
.ws82{word-spacing:1.940400px;}
.ws67{word-spacing:1.999200px;}
.ws71{word-spacing:2.058000px;}
.ws70{word-spacing:2.116800px;}
.wsa7{word-spacing:2.175600px;}
.ws93{word-spacing:2.234400px;}
.ws84{word-spacing:2.293200px;}
.ws20{word-spacing:2.410800px;}
.wse{word-spacing:2.469600px;}
.wsd6{word-spacing:2.528400px;}
.wsd8{word-spacing:2.587200px;}
.ws8e{word-spacing:2.704800px;}
.ws29{word-spacing:2.763600px;}
.ws3c{word-spacing:2.822400px;}
.ws1d{word-spacing:2.881200px;}
.ws91{word-spacing:2.940000px;}
.wsd9{word-spacing:2.998800px;}
.ws1a{word-spacing:3.057600px;}
.wsba{word-spacing:3.175200px;}
.ws21{word-spacing:3.234000px;}
.ws10{word-spacing:3.292800px;}
.ws4a{word-spacing:3.351600px;}
.ws73{word-spacing:3.469200px;}
.ws2a{word-spacing:3.528000px;}
.wsbb{word-spacing:3.586800px;}
.wsae{word-spacing:3.704400px;}
.ws6a{word-spacing:3.763200px;}
.ws90{word-spacing:3.880800px;}
.ws32{word-spacing:3.939600px;}
.ws79{word-spacing:3.998400px;}
.ws2f{word-spacing:4.057200px;}
.wsf9{word-spacing:4.174800px;}
.ws76{word-spacing:4.233600px;}
.ws10e{word-spacing:4.292400px;}
.wsea{word-spacing:4.351200px;}
.ws2d{word-spacing:4.410000px;}
.wscd{word-spacing:4.468800px;}
.ws13{word-spacing:4.586400px;}
.wsf7{word-spacing:4.645200px;}
.wsb{word-spacing:4.667933px;}
.ws16{word-spacing:4.704000px;}
.wsf1{word-spacing:4.762800px;}
.ws6b{word-spacing:4.821600px;}
.ws49{word-spacing:4.880400px;}
.ws36{word-spacing:4.998000px;}
.ws45{word-spacing:5.056800px;}
.ws30{word-spacing:5.115600px;}
.ws1f{word-spacing:5.233200px;}
.ws127{word-spacing:5.292000px;}
.ws26{word-spacing:5.409600px;}
.ws12{word-spacing:5.468400px;}
.ws78{word-spacing:5.527200px;}
.ws86{word-spacing:5.586000px;}
.wsc6{word-spacing:5.644800px;}
.wsff{word-spacing:5.703600px;}
.ws1c{word-spacing:5.762400px;}
.ws99{word-spacing:5.821200px;}
.ws19{word-spacing:5.880000px;}
.ws11{word-spacing:5.938800px;}
.ws5b{word-spacing:5.997600px;}
.ws34{word-spacing:6.056400px;}
.ws4c{word-spacing:6.115200px;}
.ws10c{word-spacing:6.174000px;}
.ws25{word-spacing:6.291600px;}
.ws9a{word-spacing:6.350400px;}
.ws88{word-spacing:6.409200px;}
.wsfb{word-spacing:6.468000px;}
.ws69{word-spacing:6.526800px;}
.ws3a{word-spacing:6.585600px;}
.wsaf{word-spacing:6.644400px;}
.ws5d{word-spacing:6.703200px;}
.ws95{word-spacing:6.762000px;}
.wsf5{word-spacing:6.820800px;}
.wsa6{word-spacing:6.879600px;}
.ws102{word-spacing:6.938400px;}
.ws8f{word-spacing:6.997200px;}
.ws10d{word-spacing:7.056000px;}
.ws6f{word-spacing:7.114800px;}
.ws117{word-spacing:7.173600px;}
.ws17{word-spacing:7.232400px;}
.ws46{word-spacing:7.291200px;}
.ws18{word-spacing:7.350000px;}
.ws9c{word-spacing:7.408800px;}
.ws87{word-spacing:7.467600px;}
.wsb6{word-spacing:7.526400px;}
.wsec{word-spacing:7.585200px;}
.ws64{word-spacing:7.644000px;}
.ws1e{word-spacing:7.702800px;}
.wsa3{word-spacing:7.761600px;}
.wsbd{word-spacing:7.820400px;}
.ws23{word-spacing:7.879200px;}
.wse0{word-spacing:7.996800px;}
.ws54{word-spacing:8.055600px;}
.ws74{word-spacing:8.114400px;}
.ws11c{word-spacing:8.173200px;}
.ws22{word-spacing:8.290800px;}
.ws128{word-spacing:8.349600px;}
.ws31{word-spacing:8.408400px;}
.wse4{word-spacing:8.467200px;}
.wsda{word-spacing:8.526000px;}
.wsef{word-spacing:8.584800px;}
.ws124{word-spacing:8.643600px;}
.ws113{word-spacing:8.695210px;}
.wsf4{word-spacing:8.702400px;}
.ws100{word-spacing:8.761200px;}
.wsc2{word-spacing:8.820000px;}
.ws129{word-spacing:8.937600px;}
.ws7d{word-spacing:9.055200px;}
.ws6c{word-spacing:9.114000px;}
.ws47{word-spacing:9.408000px;}
.wsaa{word-spacing:9.466800px;}
.ws9e{word-spacing:9.525600px;}
.wsfc{word-spacing:9.584400px;}
.wsb2{word-spacing:9.643200px;}
.ws9d{word-spacing:9.819600px;}
.ws4b{word-spacing:9.937200px;}
.ws3d{word-spacing:10.054800px;}
.ws63{word-spacing:10.172400px;}
.ws37{word-spacing:10.231200px;}
.ws130{word-spacing:10.290000px;}
.ws94{word-spacing:10.348800px;}
.wsb8{word-spacing:10.525200px;}
.ws114{word-spacing:10.584000px;}
.ws61{word-spacing:10.642800px;}
.wsa5{word-spacing:10.701600px;}
.ws77{word-spacing:10.760400px;}
.wsf2{word-spacing:10.878000px;}
.wse9{word-spacing:10.936800px;}
.ws120{word-spacing:10.995600px;}
.ws65{word-spacing:11.054400px;}
.ws55{word-spacing:11.113200px;}
.wsed{word-spacing:11.172000px;}
.wsf8{word-spacing:11.230800px;}
.wsb0{word-spacing:11.289600px;}
.ws85{word-spacing:11.348400px;}
.wsc4{word-spacing:11.407200px;}
.ws8d{word-spacing:11.466000px;}
.ws118{word-spacing:11.524800px;}
.wscf{word-spacing:11.583600px;}
.ws105{word-spacing:11.701200px;}
.ws89{word-spacing:11.818800px;}
.wsc9{word-spacing:11.936400px;}
.ws50{word-spacing:11.995200px;}
.wsf3{word-spacing:12.112800px;}
.wsc0{word-spacing:12.171600px;}
.wsb5{word-spacing:12.230400px;}
.ws5e{word-spacing:12.289200px;}
.ws123{word-spacing:12.348000px;}
.wsad{word-spacing:12.406800px;}
.ws62{word-spacing:12.465600px;}
.wsab{word-spacing:12.524400px;}
.wsca{word-spacing:12.642000px;}
.wsa1{word-spacing:12.700800px;}
.ws44{word-spacing:12.877200px;}
.ws109{word-spacing:12.936000px;}
.wsbe{word-spacing:13.053600px;}
.ws116{word-spacing:13.171200px;}
.ws24{word-spacing:13.288800px;}
.wsa4{word-spacing:13.347600px;}
.ws39{word-spacing:13.406400px;}
.ws11b{word-spacing:13.524000px;}
.wsc1{word-spacing:13.759200px;}
.ws4f{word-spacing:13.876800px;}
.wse6{word-spacing:13.935600px;}
.ws7a{word-spacing:13.994400px;}
.ws104{word-spacing:14.053200px;}
.ws10f{word-spacing:14.112000px;}
.ws10a{word-spacing:14.288400px;}
.wsdd{word-spacing:14.347200px;}
.ws121{word-spacing:14.582400px;}
.wse7{word-spacing:14.641200px;}
.wseb{word-spacing:14.700000px;}
.ws72{word-spacing:14.935200px;}
.ws75{word-spacing:14.994000px;}
.wsa2{word-spacing:15.052800px;}
.wse5{word-spacing:15.111600px;}
.wsc5{word-spacing:15.288000px;}
.ws101{word-spacing:15.346800px;}
.wsd0{word-spacing:15.523200px;}
.ws106{word-spacing:15.640800px;}
.ws108{word-spacing:15.758400px;}
.wsa0{word-spacing:15.817200px;}
.wscc{word-spacing:15.876000px;}
.ws1b{word-spacing:16.228800px;}
.wsd4{word-spacing:16.287600px;}
.ws60{word-spacing:16.346400px;}
.wsfe{word-spacing:16.464000px;}
.wsb7{word-spacing:16.522800px;}
.wsdb{word-spacing:16.699200px;}
.ws66{word-spacing:16.758000px;}
.ws103{word-spacing:16.934400px;}
.ws4e{word-spacing:17.052000px;}
.ws14{word-spacing:17.346000px;}
.ws52{word-spacing:17.463600px;}
.ws12a{word-spacing:17.581200px;}
.wse2{word-spacing:17.640000px;}
.ws11f{word-spacing:17.757600px;}
.ws119{word-spacing:17.875200px;}
.ws38{word-spacing:17.992800px;}
.ws53{word-spacing:18.110400px;}
.wsdf{word-spacing:18.286800px;}
.ws7f{word-spacing:18.522000px;}
.wsee{word-spacing:18.757200px;}
.wsf6{word-spacing:19.110000px;}
.ws126{word-spacing:19.345200px;}
.ws107{word-spacing:19.462800px;}
.ws122{word-spacing:19.756800px;}
.wsf0{word-spacing:19.815600px;}
.wse8{word-spacing:19.933200px;}
.ws92{word-spacing:19.992000px;}
.ws2e{word-spacing:20.286000px;}
.ws3e{word-spacing:20.403600px;}
.ws12f{word-spacing:20.462400px;}
.ws10b{word-spacing:20.580000px;}
.ws4d{word-spacing:20.874000px;}
.ws28{word-spacing:21.344400px;}
.wsd7{word-spacing:21.579600px;}
.ws42{word-spacing:22.226400px;}
.wsb9{word-spacing:23.461200px;}
.ws98{word-spacing:24.696000px;}
.wsac{word-spacing:24.754800px;}
.ws3f{word-spacing:24.813600px;}
.ws57{word-spacing:25.048800px;}
.wsb1{word-spacing:25.107600px;}
.wsb4{word-spacing:26.166000px;}
.wsd3{word-spacing:26.930400px;}
.wsce{word-spacing:28.224000px;}
.ws11a{word-spacing:28.576800px;}
.wsd5{word-spacing:40.278000px;}
.wsa9{word-spacing:50.097600px;}
._15{margin-left:-33.751222px;}
._1a{margin-left:-26.740800px;}
._1c{margin-left:-22.050000px;}
._13{margin-left:-19.000800px;}
._f{margin-left:-13.171208px;}
._19{margin-left:-11.547620px;}
._18{margin-left:-8.299200px;}
._8{margin-left:-6.636000px;}
._2{margin-left:-4.944000px;}
._9{margin-left:-3.600000px;}
._1{margin-left:-2.476800px;}
._0{margin-left:-1.200000px;}
._3{width:1.022400px;}
._6{width:2.289646px;}
._11{width:4.327320px;}
._a{width:5.433600px;}
._e{width:6.647979px;}
._c{width:8.055600px;}
._b{width:9.679191px;}
._d{width:10.711080px;}
._12{width:12.105680px;}
._14{width:13.304320px;}
._10{width:15.004800px;}
._7{width:17.039990px;}
._1d{width:19.117320px;}
._1b{width:20.284561px;}
._20{width:22.140000px;}
._16{width:26.924520px;}
._17{width:33.098521px;}
._5{width:37.354160px;}
._4{width:38.401799px;}
._1e{width:40.997039px;}
._1f{width:44.100000px;}
.fc5{color:transparent;}
.fc4{color:rgb(78,78,77);}
.fc3{color:rgb(85,85,84);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:14.074549px;}
.fsa{font-size:31.500000px;}
.fse{font-size:33.600000px;}
.fs13{font-size:36.000000px;}
.fs15{font-size:37.532410px;}
.fs14{font-size:39.900000px;}
.fs12{font-size:39.978000px;}
.fsd{font-size:41.160000px;}
.fs7{font-size:42.000000px;}
.fs10{font-size:44.702399px;}
.fs9{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fs11{font-size:52.602600px;}
.fsc{font-size:55.199999px;}
.fsb{font-size:58.800000px;}
.fsf{font-size:58.819800px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs8{font-size:97.248596px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y211{bottom:0.075302px;}
.y241{bottom:0.120003px;}
.y220{bottom:0.193817px;}
.y25c{bottom:0.194000px;}
.y227{bottom:0.195282px;}
.y28a{bottom:1.018799px;}
.y21d{bottom:2.293625px;}
.y232{bottom:2.295148px;}
.y22e{bottom:2.295159px;}
.y217{bottom:2.613464px;}
.y215{bottom:3.045319px;}
.y213{bottom:4.867630px;}
.y20e{bottom:5.295319px;}
.y2c{bottom:6.594408px;}
.y236{bottom:8.503969px;}
.y210{bottom:11.235580px;}
.y291{bottom:11.454254px;}
.y287{bottom:11.458923px;}
.y24c{bottom:13.980297px;}
.y24a{bottom:18.250809px;}
.y23c{bottom:18.255157px;}
.y238{bottom:23.111253px;}
.y28e{bottom:27.776367px;}
.y243{bottom:28.564957px;}
.y247{bottom:28.565117px;}
.y23e{bottom:28.569603px;}
.y240{bottom:32.223015px;}
.y2b{bottom:32.486847px;}
.y24e{bottom:34.716591px;}
.y251{bottom:34.726650px;}
.y28c{bottom:34.728241px;}
.y28{bottom:79.008299px;}
.y27{bottom:91.009799px;}
.y2e8{bottom:99.461998px;}
.y1fc{bottom:100.669203px;}
.y26{bottom:103.011299px;}
.yfe{bottom:107.584499px;}
.y1df{bottom:107.752353px;}
.y1c8{bottom:107.773953px;}
.ydd{bottom:107.944496px;}
.y155{bottom:108.124500px;}
.y16b{bottom:108.964497px;}
.y107{bottom:111.447145px;}
.y197{bottom:111.471155px;}
.y110{bottom:111.505938px;}
.y1a1{bottom:112.189945px;}
.y2d0{bottom:112.842728px;}
.y25{bottom:115.012799px;}
.y2e6{bottom:115.974000px;}
.y64{bottom:116.092503px;}
.y93{bottom:116.882845px;}
.y1fb{bottom:118.662003px;}
.yfd{bottom:122.584499px;}
.y154{bottom:123.124500px;}
.y16a{bottom:123.964497px;}
.y1de{bottom:125.745153px;}
.y1c7{bottom:125.766753px;}
.y2cf{bottom:126.342728px;}
.y24{bottom:127.014299px;}
.y31f{bottom:127.842773px;}
.y106{bottom:129.439945px;}
.y196{bottom:129.463955px;}
.y10f{bottom:129.498738px;}
.y1a0{bottom:130.211545px;}
.y285{bottom:132.337955px;}
.y2e4{bottom:133.764149px;}
.y63{bottom:134.085303px;}
.y92{bottom:134.875645px;}
.y24b{bottom:135.637505px;}
.y1fa{bottom:136.662003px;}
.yfc{bottom:137.584499px;}
.y153{bottom:138.124500px;}
.y23{bottom:139.015799px;}
.y250{bottom:139.192795px;}
.y2ce{bottom:139.842728px;}
.y2e5{bottom:139.914000px;}
.y18d{bottom:140.854350px;}
.y31e{bottom:141.342773px;}
.y1dd{bottom:143.737953px;}
.y1c6{bottom:143.759553px;}
.y284{bottom:145.837955px;}
.y24d{bottom:147.417595px;}
.y195{bottom:147.471155px;}
.y105{bottom:147.483157px;}
.y10e{bottom:147.491538px;}
.y19f{bottom:148.204345px;}
.y24f{bottom:149.617802px;}
.y252{bottom:149.627850px;}
.y22{bottom:151.017299px;}
.y2e1{bottom:151.773148px;}
.y62{bottom:152.078103px;}
.yfb{bottom:152.584499px;}
.y91{bottom:152.868445px;}
.y2cd{bottom:153.342728px;}
.y31d{bottom:154.842773px;}
.y18c{bottom:155.854350px;}
.y253{bottom:159.942146px;}
.y1dc{bottom:161.737953px;}
.y1c5{bottom:161.752353px;}
.y21{bottom:163.018799px;}
.y194{bottom:165.463955px;}
.y104{bottom:165.475957px;}
.y10d{bottom:165.484338px;}
.y19e{bottom:166.197145px;}
.y2cc{bottom:166.842728px;}
.y2e3{bottom:167.479649px;}
.yfa{bottom:167.584499px;}
.y2e2{bottom:168.058205px;}
.y31c{bottom:168.342773px;}
.y2df{bottom:168.927749px;}
.y61{bottom:170.070903px;}
.y90{bottom:170.861245px;}
.y283{bottom:172.837955px;}
.y1f9{bottom:176.221498px;}
.y1c4{bottom:179.745153px;}
.y2cb{bottom:180.342728px;}
.y31b{bottom:181.842773px;}
.y2e9{bottom:182.881943px;}
.y103{bottom:183.468757px;}
.y10c{bottom:183.477138px;}
.y193{bottom:183.478343px;}
.y19d{bottom:184.189945px;}
.y2de{bottom:184.824749px;}
.y2e0{bottom:185.888248px;}
.y231{bottom:186.769500px;}
.y2dc{bottom:187.776139px;}
.y60{bottom:188.063703px;}
.y8f{bottom:188.854045px;}
.y233{bottom:189.037800px;}
.y234{bottom:189.064648px;}
.y2ca{bottom:193.842728px;}
.y1f8{bottom:194.214298px;}
.y31a{bottom:195.342773px;}
.y1c3{bottom:197.737953px;}
.y1db{bottom:197.745153px;}
.y33{bottom:200.893799px;}
.y102{bottom:201.461557px;}
.y10b{bottom:201.469938px;}
.y192{bottom:201.471143px;}
.y19c{bottom:202.228950px;}
.y2db{bottom:202.539139px;}
.y2dd{bottom:204.131400px;}
.y2d9{bottom:205.759204px;}
.y5f{bottom:206.056503px;}
.y8e{bottom:206.846845px;}
.y230{bottom:207.045011px;}
.y2c9{bottom:207.342728px;}
.y319{bottom:208.842773px;}
.y282{bottom:208.856717px;}
.y1f7{bottom:212.207098px;}
.y32{bottom:214.393799px;}
.y1c2{bottom:215.737953px;}
.y101{bottom:219.454357px;}
.y10a{bottom:219.462738px;}
.y191{bottom:219.463943px;}
.y2d8{bottom:220.060204px;}
.y19b{bottom:220.221750px;}
.y2c8{bottom:220.842728px;}
.y2da{bottom:221.440041px;}
.y318{bottom:222.342773px;}
.y281{bottom:222.356717px;}
.y22d{bottom:222.769500px;}
.y2d6{bottom:223.765945px;}
.y5e{bottom:224.056503px;}
.y8d{bottom:224.839645px;}
.y22f{bottom:225.037811px;}
.y22c{bottom:225.056411px;}
.y1f6{bottom:230.199898px;}
.y31{bottom:232.393799px;}
.y1c1{bottom:233.737953px;}
.y1da{bottom:233.781153px;}
.y2c7{bottom:234.342728px;}
.y317{bottom:235.842773px;}
.y280{bottom:235.856717px;}
.y100{bottom:237.447157px;}
.y109{bottom:237.455538px;}
.y190{bottom:237.471143px;}
.y2d5{bottom:237.636445px;}
.y19a{bottom:238.214550px;}
.y2d7{bottom:238.801346px;}
.y30{bottom:241.393799px;}
.y2d2{bottom:241.768497px;}
.y2d4{bottom:241.773445px;}
.y5d{bottom:242.063703px;}
.y8c{bottom:242.861245px;}
.y22b{bottom:243.049211px;}
.y2c6{bottom:247.842728px;}
.y1f5{bottom:248.221498px;}
.y316{bottom:249.342773px;}
.y1d9{bottom:251.773953px;}
.yff{bottom:255.439957px;}
.y108{bottom:255.448338px;}
.y18f{bottom:255.463943px;}
.y2d1{bottom:255.859497px;}
.y199{bottom:256.207350px;}
.y2d3{bottom:256.813042px;}
.y2f{bottom:259.393799px;}
.y5c{bottom:260.056503px;}
.y8b{bottom:260.854045px;}
.y2c5{bottom:261.342728px;}
.y315{bottom:262.842773px;}
.y27f{bottom:262.856717px;}
.y1f4{bottom:266.214298px;}
.y1c0{bottom:269.745153px;}
.y1d8{bottom:269.766753px;}
.y23b{bottom:270.037491px;}
.y2e{bottom:272.893799px;}
.y18e{bottom:273.463943px;}
.y198{bottom:274.200150px;}
.y2c4{bottom:274.842728px;}
.y314{bottom:276.342773px;}
.y27e{bottom:276.356717px;}
.y23f{bottom:277.852798px;}
.y5b{bottom:278.063543px;}
.y8a{bottom:278.846845px;}
.y2d{bottom:281.893799px;}
.y2e7{bottom:282.343941px;}
.y1f3{bottom:284.207098px;}
.y1bf{bottom:287.737953px;}
.y1d7{bottom:287.759553px;}
.y249{bottom:288.288300px;}
.y23d{bottom:288.292648px;}
.y2c3{bottom:288.342728px;}
.y313{bottom:289.842773px;}
.y27d{bottom:289.856717px;}
.y245{bottom:295.888504px;}
.y5a{bottom:296.056343px;}
.y248{bottom:296.401955px;}
.y89{bottom:296.839645px;}
.y244{bottom:298.507645px;}
.y242{bottom:298.602448px;}
.y246{bottom:298.602608px;}
.y2c2{bottom:301.842728px;}
.y1f2{bottom:302.199898px;}
.y312{bottom:303.342773px;}
.y27c{bottom:303.356717px;}
.y1be{bottom:305.752353px;}
.y117{bottom:305.817764px;}
.y59{bottom:314.121166px;}
.y88{bottom:314.890045px;}
.y2c1{bottom:315.342728px;}
.y311{bottom:316.842773px;}
.y1f1{bottom:320.199898px;}
.y116{bottom:320.817764px;}
.y1bd{bottom:323.745153px;}
.y22a{bottom:327.045011px;}
.y2c0{bottom:328.842728px;}
.y310{bottom:330.342773px;}
.y27b{bottom:330.356717px;}
.y58{bottom:332.113966px;}
.y87{bottom:332.882845px;}
.y1a3{bottom:333.837753px;}
.y115{bottom:335.817764px;}
.y20{bottom:340.715103px;}
.y1bc{bottom:341.737953px;}
.y2bf{bottom:342.342728px;}
.y30f{bottom:343.842773px;}
.y27a{bottom:343.856717px;}
.y229{bottom:345.037811px;}
.y1a2{bottom:348.837753px;}
.y57{bottom:350.106766px;}
.y114{bottom:350.817764px;}
.y86{bottom:350.875645px;}
.y2be{bottom:355.842728px;}
.y30e{bottom:357.342773px;}
.y279{bottom:357.356717px;}
.y1f{bottom:358.715103px;}
.y1d6{bottom:359.737953px;}
.y1bb{bottom:359.773930px;}
.y226{bottom:362.875511px;}
.y228{bottom:363.037811px;}
.y225{bottom:363.045011px;}
.y113{bottom:365.817764px;}
.y56{bottom:368.099566px;}
.y85{bottom:368.868445px;}
.y2bd{bottom:369.342728px;}
.y30d{bottom:370.842773px;}
.y278{bottom:370.856717px;}
.ydc{bottom:376.620895px;}
.ybf{bottom:376.642495px;}
.y1e{bottom:376.715103px;}
.y1d5{bottom:377.745130px;}
.y1ba{bottom:377.766730px;}
.y1f0{bottom:377.809930px;}
.y112{bottom:380.817764px;}
.y224{bottom:381.037811px;}
.y2bc{bottom:382.842728px;}
.y30c{bottom:384.342773px;}
.y277{bottom:384.356717px;}
.y55{bottom:386.092366px;}
.y84{bottom:386.861245px;}
.ybe{bottom:394.635295px;}
.y1d{bottom:394.715103px;}
.ydb{bottom:394.721695px;}
.y1d4{bottom:395.737930px;}
.y1b9{bottom:395.759530px;}
.y1ef{bottom:395.802730px;}
.y111{bottom:395.817764px;}
.y2bb{bottom:396.342728px;}
.y30b{bottom:397.842773px;}
.y276{bottom:397.856717px;}
.y223{bottom:399.037811px;}
.y54{bottom:404.085166px;}
.y83{bottom:404.854045px;}
.y2ba{bottom:409.842728px;}
.y30a{bottom:411.342773px;}
.y275{bottom:411.356717px;}
.ybd{bottom:412.628095px;}
.yda{bottom:412.714495px;}
.y1c{bottom:412.715103px;}
.y1b8{bottom:413.752330px;}
.y1d3{bottom:413.766730px;}
.y1ee{bottom:413.795530px;}
.y222{bottom:417.052211px;}
.y53{bottom:422.077966px;}
.y82{bottom:422.846845px;}
.y2b9{bottom:423.342728px;}
.y309{bottom:424.842773px;}
.y274{bottom:424.856717px;}
.ybc{bottom:430.620895px;}
.yd9{bottom:430.707295px;}
.y165{bottom:430.939819px;}
.y15f{bottom:430.968619px;}
.y1b7{bottom:431.745130px;}
.y1d2{bottom:431.759530px;}
.y1ed{bottom:431.788330px;}
.y221{bottom:435.045011px;}
.y1b{bottom:435.215103px;}
.y2b8{bottom:436.842728px;}
.y308{bottom:438.342773px;}
.y273{bottom:438.356717px;}
.y52{bottom:440.070766px;}
.y81{bottom:440.839645px;}
.ybb{bottom:448.635295px;}
.yd8{bottom:448.700095px;}
.y15e{bottom:448.961419px;}
.y152{bottom:449.737930px;}
.y177{bottom:449.745130px;}
.y1d1{bottom:449.752330px;}
.y1ec{bottom:449.781130px;}
.y133{bottom:449.788330px;}
.y2b7{bottom:450.342728px;}
.y21c{bottom:450.771011px;}
.y307{bottom:451.842773px;}
.y21f{bottom:452.876999px;}
.y21e{bottom:453.037811px;}
.y21b{bottom:453.052032px;}
.y1a{bottom:453.215103px;}
.y51{bottom:458.063566px;}
.y80{bottom:458.839645px;}
.y2b6{bottom:463.842728px;}
.y306{bottom:465.342773px;}
.y272{bottom:465.356717px;}
.yba{bottom:466.628095px;}
.yd7{bottom:466.692895px;}
.y15d{bottom:466.954219px;}
.y176{bottom:467.737930px;}
.y1d0{bottom:467.745130px;}
.y151{bottom:467.766730px;}
.y1eb{bottom:467.773930px;}
.y132{bottom:467.781130px;}
.y19{bottom:471.215103px;}
.y50{bottom:476.056366px;}
.y7f{bottom:476.846845px;}
.y2b5{bottom:477.342728px;}
.y305{bottom:478.842773px;}
.y271{bottom:478.856717px;}
.y235{bottom:480.039000px;}
.yb9{bottom:484.620895px;}
.yd6{bottom:484.685695px;}
.y15c{bottom:484.947019px;}
.y23a{bottom:485.008246px;}
.y18b{bottom:485.737930px;}
.y175{bottom:485.745130px;}
.y150{bottom:485.759530px;}
.y1ea{bottom:485.766730px;}
.y131{bottom:485.773930px;}
.y237{bottom:488.461945px;}
.y239{bottom:488.542969px;}
.y18{bottom:489.215103px;}
.y2b4{bottom:490.842728px;}
.y304{bottom:492.342773px;}
.y270{bottom:492.356717px;}
.y4f{bottom:494.077966px;}
.y7e{bottom:494.839645px;}
.yb8{bottom:502.628095px;}
.yd5{bottom:502.678495px;}
.y15b{bottom:502.939819px;}
.y174{bottom:503.737930px;}
.y14f{bottom:503.752330px;}
.y18a{bottom:503.759530px;}
.y130{bottom:503.766730px;}
.y2b3{bottom:504.342728px;}
.y303{bottom:505.842773px;}
.y26f{bottom:505.856717px;}
.y17{bottom:507.215103px;}
.y4e{bottom:512.070766px;}
.y7d{bottom:512.854045px;}
.y2b2{bottom:517.842728px;}
.y302{bottom:519.342773px;}
.yf9{bottom:520.125000px;}
.yb7{bottom:520.620895px;}
.yd4{bottom:520.671295px;}
.y15a{bottom:520.939819px;}
.y164{bottom:520.991419px;}
.y14e{bottom:521.745130px;}
.y189{bottom:521.752330px;}
.y12f{bottom:521.759530px;}
.y16{bottom:525.215103px;}
.y4d{bottom:530.063566px;}
.y7c{bottom:530.846845px;}
.y2b1{bottom:531.342728px;}
.y301{bottom:532.842773px;}
.yb6{bottom:538.664095px;}
.y159{bottom:538.954219px;}
.y163{bottom:538.984219px;}
.y14d{bottom:539.737930px;}
.y188{bottom:539.745130px;}
.y12e{bottom:539.752330px;}
.y15{bottom:543.215103px;}
.y2b0{bottom:544.842728px;}
.y26e{bottom:544.860467px;}
.y300{bottom:546.342773px;}
.y4c{bottom:548.056366px;}
.y7b{bottom:548.839645px;}
.yb5{bottom:556.656895px;}
.y158{bottom:556.947019px;}
.y162{bottom:556.977019px;}
.y187{bottom:557.737930px;}
.y173{bottom:557.742731px;}
.y12d{bottom:557.745130px;}
.y21a{bottom:557.752330px;}
.y14c{bottom:557.788330px;}
.y2af{bottom:558.342728px;}
.y26d{bottom:558.360467px;}
.y2ff{bottom:559.842773px;}
.y14{bottom:561.215103px;}
.y4b{bottom:566.070766px;}
.y7a{bottom:566.846845px;}
.y2ae{bottom:571.842728px;}
.y2fe{bottom:573.342773px;}
.yb4{bottom:574.649695px;}
.y157{bottom:574.939819px;}
.y161{bottom:574.969819px;}
.y12c{bottom:575.737930px;}
.y219{bottom:575.745130px;}
.y186{bottom:575.752330px;}
.y14b{bottom:575.781130px;}
.y26c{bottom:577.856717px;}
.y13{bottom:579.215103px;}
.y4a{bottom:584.063566px;}
.y79{bottom:584.839645px;}
.y2ad{bottom:585.342728px;}
.y2fd{bottom:586.842773px;}
.yb3{bottom:592.642495px;}
.y156{bottom:592.939819px;}
.y160{bottom:592.962619px;}
.y1b6{bottom:593.737930px;}
.y185{bottom:593.745130px;}
.y12b{bottom:593.752330px;}
.y14a{bottom:593.773930px;}
.y1e9{bottom:593.809976px;}
.y12{bottom:597.215103px;}
.y26b{bottom:597.352967px;}
.y2ac{bottom:598.842728px;}
.y2fc{bottom:600.342773px;}
.y49{bottom:602.056366px;}
.y78{bottom:602.854045px;}
.y33f{bottom:604.842728px;}
.yb2{bottom:610.635295px;}
.y26a{bottom:610.852967px;}
.y172{bottom:611.737930px;}
.y12a{bottom:611.745130px;}
.y149{bottom:611.766730px;}
.y1b5{bottom:611.795530px;}
.y1e8{bottom:611.802776px;}
.y2ab{bottom:612.342728px;}
.y2fb{bottom:613.842773px;}
.y11{bottom:615.215103px;}
.y33e{bottom:618.342728px;}
.y48{bottom:620.063566px;}
.y77{bottom:620.846845px;}
.y2aa{bottom:625.842728px;}
.y2fa{bottom:627.342773px;}
.yb1{bottom:628.628095px;}
.y129{bottom:629.737930px;}
.y148{bottom:629.759530px;}
.y184{bottom:629.766730px;}
.y171{bottom:629.773930px;}
.y1b4{bottom:629.788330px;}
.y1e7{bottom:629.795576px;}
.y269{bottom:630.349217px;}
.y33d{bottom:631.842728px;}
.y10{bottom:633.215103px;}
.y47{bottom:638.056366px;}
.y76{bottom:638.839645px;}
.y2a9{bottom:639.342728px;}
.y2f9{bottom:640.842773px;}
.yb0{bottom:646.620895px;}
.y218{bottom:647.737930px;}
.y147{bottom:647.752330px;}
.y128{bottom:647.759530px;}
.y170{bottom:647.766730px;}
.y1b3{bottom:647.781130px;}
.y1e6{bottom:647.788376px;}
.y169{bottom:648.537735px;}
.y268{bottom:649.845467px;}
.y2a8{bottom:652.842728px;}
.y2f8{bottom:654.342773px;}
.yf{bottom:655.715103px;}
.y46{bottom:656.106858px;}
.y75{bottom:656.846845px;}
.y168{bottom:663.537735px;}
.yaf{bottom:664.628095px;}
.yd3{bottom:664.642495px;}
.y146{bottom:665.745130px;}
.y127{bottom:665.752330px;}
.y16f{bottom:665.759530px;}
.y1b2{bottom:665.773930px;}
.y1e5{bottom:665.781176px;}
.y2a7{bottom:666.342728px;}
.y33c{bottom:667.842756px;}
.y2f7{bottom:667.842773px;}
.y267{bottom:669.341717px;}
.ye{bottom:673.715103px;}
.y45{bottom:674.099658px;}
.y74{bottom:674.839645px;}
.y167{bottom:678.537735px;}
.y2a6{bottom:679.842728px;}
.y33b{bottom:681.342756px;}
.y2f6{bottom:681.342773px;}
.yae{bottom:682.620895px;}
.yd2{bottom:682.635295px;}
.y145{bottom:683.737930px;}
.y126{bottom:683.745130px;}
.y16e{bottom:683.752330px;}
.y1b1{bottom:683.766730px;}
.y1e4{bottom:683.773976px;}
.yd{bottom:691.715103px;}
.y44{bottom:692.092458px;}
.y73{bottom:692.854045px;}
.y2a5{bottom:693.342728px;}
.y166{bottom:693.537735px;}
.y33a{bottom:694.842756px;}
.y2f5{bottom:694.842773px;}
.y214{bottom:698.713486px;}
.yd1{bottom:700.628095px;}
.yad{bottom:700.642495px;}
.y125{bottom:701.737930px;}
.y16d{bottom:701.745130px;}
.y216{bottom:701.758804px;}
.y1b0{bottom:701.759530px;}
.y1e3{bottom:701.766776px;}
.y144{bottom:701.831576px;}
.y266{bottom:706.837967px;}
.y2a4{bottom:706.842728px;}
.y339{bottom:708.342756px;}
.y2f4{bottom:708.342773px;}
.yc{bottom:709.715103px;}
.y43{bottom:710.085258px;}
.y72{bottom:710.846845px;}
.y20d{bottom:714.472504px;}
.yd0{bottom:718.620895px;}
.yac{bottom:718.635295px;}
.y212{bottom:719.340134px;}
.y124{bottom:719.737930px;}
.y183{bottom:719.745130px;}
.y1af{bottom:719.752330px;}
.y1e2{bottom:719.759576px;}
.y20f{bottom:719.767822px;}
.y143{bottom:719.824376px;}
.y265{bottom:720.337967px;}
.y2a3{bottom:720.342728px;}
.y338{bottom:721.842756px;}
.y2f3{bottom:721.842773px;}
.yb{bottom:727.715103px;}
.y42{bottom:728.078058px;}
.y71{bottom:728.839645px;}
.y2a2{bottom:733.842728px;}
.y337{bottom:735.342756px;}
.y2f2{bottom:735.342773px;}
.ycf{bottom:736.620895px;}
.yab{bottom:736.628095px;}
.y16c{bottom:737.737930px;}
.y1ae{bottom:737.745130px;}
.y1e1{bottom:737.752376px;}
.y142{bottom:737.817176px;}
.y20c{bottom:737.831576px;}
.y264{bottom:738.337967px;}
.y41{bottom:746.070858px;}
.y70{bottom:746.957719px;}
.y336{bottom:748.842756px;}
.y2f1{bottom:748.842773px;}
.ya{bottom:750.215103px;}
.yaa{bottom:754.620895px;}
.y182{bottom:755.737930px;}
.y1e0{bottom:755.745176px;}
.y141{bottom:755.809976px;}
.y20b{bottom:755.824376px;}
.y335{bottom:762.342756px;}
.y2f0{bottom:762.342773px;}
.y40{bottom:764.063658px;}
.y6f{bottom:764.950519px;}
.ya9{bottom:772.642541px;}
.y1ad{bottom:773.737976px;}
.y123{bottom:773.752376px;}
.y181{bottom:773.759576px;}
.y140{bottom:773.802776px;}
.y20a{bottom:773.817176px;}
.y263{bottom:774.366721px;}
.y334{bottom:775.842756px;}
.y2ef{bottom:775.842773px;}
.y3f{bottom:782.056458px;}
.y6e{bottom:782.943319px;}
.y333{bottom:789.342756px;}
.y2ee{bottom:789.342773px;}
.ya8{bottom:790.635341px;}
.yce{bottom:790.671341px;}
.y1cf{bottom:791.737976px;}
.y122{bottom:791.745176px;}
.y180{bottom:791.752376px;}
.y1ac{bottom:791.773976px;}
.y13f{bottom:791.795576px;}
.y209{bottom:791.809976px;}
.y262{bottom:792.359521px;}
.y3e{bottom:800.056458px;}
.y6d{bottom:800.936119px;}
.y332{bottom:802.842756px;}
.y2a1{bottom:802.842773px;}
.ya7{bottom:808.628141px;}
.ycd{bottom:808.664141px;}
.yeb{bottom:809.737976px;}
.y17f{bottom:809.745176px;}
.y1ab{bottom:809.766776px;}
.yf8{bottom:809.773976px;}
.y13e{bottom:809.788376px;}
.y208{bottom:809.802776px;}
.y261{bottom:810.352321px;}
.y331{bottom:816.342756px;}
.y2ed{bottom:816.342773px;}
.y3d{bottom:818.085258px;}
.y6c{bottom:818.928919px;}
.y9{bottom:822.548112px;}
.ya6{bottom:826.620941px;}
.ycc{bottom:826.656941px;}
.y17e{bottom:827.737976px;}
.y121{bottom:827.752376px;}
.y1aa{bottom:827.759576px;}
.yf7{bottom:827.766776px;}
.yea{bottom:827.773976px;}
.y13d{bottom:827.781176px;}
.y1ce{bottom:827.788376px;}
.y207{bottom:827.795576px;}
.y260{bottom:828.345121px;}
.y330{bottom:829.842756px;}
.y2a0{bottom:829.842773px;}
.y3c{bottom:836.078058px;}
.y6b{bottom:836.921719px;}
.y32f{bottom:843.342756px;}
.y29f{bottom:843.342773px;}
.y8{bottom:843.548112px;}
.ycb{bottom:844.649741px;}
.ya5{bottom:844.700141px;}
.y120{bottom:845.745176px;}
.y1a9{bottom:845.752376px;}
.yf6{bottom:845.759576px;}
.ye9{bottom:845.766776px;}
.y13c{bottom:845.773976px;}
.y1cd{bottom:845.781176px;}
.y206{bottom:845.788376px;}
.y25f{bottom:846.337921px;}
.y3b{bottom:854.070858px;}
.y6a{bottom:854.914519px;}
.y32e{bottom:856.842756px;}
.y29e{bottom:856.842773px;}
.yca{bottom:862.642541px;}
.ya4{bottom:862.692941px;}
.y11f{bottom:863.737976px;}
.y1a8{bottom:863.745176px;}
.yf5{bottom:863.752376px;}
.ye8{bottom:863.759576px;}
.y13b{bottom:863.766776px;}
.y1cc{bottom:863.773976px;}
.y205{bottom:863.781176px;}
.y25e{bottom:864.345121px;}
.y7{bottom:864.552612px;}
.y32d{bottom:870.342756px;}
.y29d{bottom:870.342773px;}
.y3a{bottom:872.063658px;}
.y69{bottom:872.907319px;}
.yc9{bottom:880.635341px;}
.ya3{bottom:880.685741px;}
.y11e{bottom:881.737976px;}
.yf4{bottom:881.745176px;}
.ye7{bottom:881.752376px;}
.y13a{bottom:881.759576px;}
.y1cb{bottom:881.766776px;}
.y204{bottom:881.773976px;}
.y25b{bottom:882.176971px;}
.y25d{bottom:882.337921px;}
.y25a{bottom:882.381121px;}
.y32c{bottom:883.842756px;}
.y29c{bottom:883.842773px;}
.y39{bottom:890.056458px;}
.y68{bottom:890.900119px;}
.y32b{bottom:897.342756px;}
.y29b{bottom:897.342773px;}
.yc8{bottom:898.628141px;}
.ya2{bottom:898.678541px;}
.yf3{bottom:899.737976px;}
.ye6{bottom:899.745176px;}
.y139{bottom:899.752376px;}
.y1a7{bottom:899.759576px;}
.y203{bottom:899.766776px;}
.y259{bottom:900.373921px;}
.y6{bottom:900.577528px;}
.y38{bottom:908.056458px;}
.y67{bottom:908.892919px;}
.y32a{bottom:910.842756px;}
.y29a{bottom:910.842773px;}
.yc7{bottom:916.620941px;}
.ya1{bottom:916.671341px;}
.ye5{bottom:917.737976px;}
.yf2{bottom:917.745176px;}
.y1a6{bottom:917.752376px;}
.y202{bottom:917.759576px;}
.y258{bottom:918.366721px;}
.y329{bottom:924.342756px;}
.y299{bottom:924.342773px;}
.y37{bottom:926.056458px;}
.y66{bottom:926.885719px;}
.yc6{bottom:934.635341px;}
.ya0{bottom:934.664141px;}
.yf1{bottom:935.737976px;}
.y1a5{bottom:935.745176px;}
.y201{bottom:935.752376px;}
.y11d{bottom:935.759576px;}
.ye4{bottom:935.781176px;}
.y257{bottom:936.359521px;}
.y328{bottom:937.842756px;}
.y298{bottom:937.842773px;}
.y5{bottom:939.565528px;}
.y36{bottom:944.056458px;}
.y65{bottom:944.878519px;}
.y327{bottom:951.342756px;}
.y2ec{bottom:951.342773px;}
.yc5{bottom:952.628141px;}
.y9f{bottom:952.656941px;}
.y1a4{bottom:953.737976px;}
.yf0{bottom:953.742776px;}
.y138{bottom:953.745176px;}
.y11c{bottom:953.752376px;}
.ye3{bottom:953.773976px;}
.y17d{bottom:953.778730px;}
.y256{bottom:954.352321px;}
.y297{bottom:955.842773px;}
.y326{bottom:964.842756px;}
.y296{bottom:964.842773px;}
.yc4{bottom:970.620941px;}
.y9e{bottom:970.649741px;}
.yef{bottom:971.737976px;}
.y11b{bottom:971.745176px;}
.ye2{bottom:971.766776px;}
.y17c{bottom:971.771530px;}
.y255{bottom:972.345121px;}
.y325{bottom:978.342756px;}
.y2eb{bottom:978.342773px;}
.y4{bottom:978.553528px;}
.y9d{bottom:988.642541px;}
.yc3{bottom:988.662292px;}
.y11a{bottom:989.737976px;}
.y1ca{bottom:989.752376px;}
.ye1{bottom:989.759576px;}
.y17b{bottom:989.764330px;}
.y200{bottom:989.769285px;}
.y137{bottom:989.807530px;}
.y254{bottom:990.337921px;}
.y324{bottom:991.842756px;}
.y295{bottom:991.842773px;}
.y96{bottom:996.425079px;}
.y323{bottom:1005.342756px;}
.y294{bottom:1005.342773px;}
.y9c{bottom:1006.635341px;}
.yc2{bottom:1006.655092px;}
.y119{bottom:1007.745176px;}
.yee{bottom:1007.746976px;}
.ye0{bottom:1007.752376px;}
.y17a{bottom:1007.757130px;}
.y1ff{bottom:1007.762085px;}
.y136{bottom:1007.800330px;}
.y95{bottom:1014.425079px;}
.y286{bottom:1017.339020px;}
.y322{bottom:1018.842756px;}
.y2ea{bottom:1018.842773px;}
.y9b{bottom:1024.628141px;}
.yc1{bottom:1024.647892px;}
.y118{bottom:1025.737976px;}
.yed{bottom:1025.739776px;}
.ydf{bottom:1025.745176px;}
.y179{bottom:1025.749930px;}
.y1fe{bottom:1025.754885px;}
.y135{bottom:1025.793130px;}
.y288{bottom:1028.703644px;}
.y28b{bottom:1028.793274px;}
.y28d{bottom:1028.797943px;}
.y321{bottom:1032.342756px;}
.y293{bottom:1032.342773px;}
.y94{bottom:1032.425079px;}
.y3{bottom:1033.362579px;}
.y29{bottom:1035.750183px;}
.y289{bottom:1039.100043px;}
.y28f{bottom:1039.101444px;}
.y290{bottom:1041.429565px;}
.y9a{bottom:1042.620941px;}
.yc0{bottom:1042.640692px;}
.yec{bottom:1043.732576px;}
.yde{bottom:1043.737976px;}
.y178{bottom:1043.742730px;}
.y1fd{bottom:1043.747685px;}
.y1c9{bottom:1043.767053px;}
.y134{bottom:1043.785930px;}
.y320{bottom:1045.842756px;}
.y292{bottom:1045.842773px;}
.y2a{bottom:1083.656982px;}
.y2{bottom:1112.297079px;}
.y97{bottom:1126.524628px;}
.y34{bottom:1126.524719px;}
.y99{bottom:1126.756989px;}
.y1{bottom:1126.925079px;}
.y98{bottom:1127.300079px;}
.y35{bottom:1127.304719px;}
.h36{height:0.000000px;}
.h2d{height:2.104104px;}
.h3d{height:2.352792px;}
.h24{height:6.900000px;}
.h28{height:8.998500px;}
.h27{height:10.198500px;}
.h53{height:10.640359px;}
.h25{height:10.650000px;}
.h29{height:12.300000px;}
.h22{height:12.750000px;}
.h1e{height:13.048500px;}
.h18{height:18.750000px;}
.h1a{height:21.351587px;}
.h2a{height:23.698500px;}
.h19{height:26.351270px;}
.h4d{height:27.540000px;}
.h11{height:27.814500px;}
.h51{height:28.374502px;}
.h30{height:28.384380px;}
.h4b{height:29.988000px;}
.h4f{height:30.324000px;}
.h50{height:30.523500px;}
.h1b{height:31.291679px;}
.h37{height:31.649299px;}
.h4c{height:32.130000px;}
.h45{height:34.291943px;}
.h43{height:35.400000px;}
.h3b{height:35.401500px;}
.h4e{height:35.532000px;}
.hd{height:37.086000px;}
.h2b{height:37.242641px;}
.h32{height:37.347846px;}
.h2c{height:37.926475px;}
.h33{height:39.000000px;}
.h1f{height:39.526906px;}
.h10{height:39.735000px;}
.h38{height:39.762185px;}
.h20{height:41.173860px;}
.hc{height:41.538000px;}
.h26{height:41.644418px;}
.h1d{height:41.879698px;}
.h23{height:41.938517px;}
.h44{height:42.291436px;}
.h16{height:42.384000px;}
.h4a{height:42.840000px;}
.h1c{height:43.585472px;}
.h42{height:43.785000px;}
.h3{height:45.696000px;}
.h12{height:45.744000px;}
.h49{height:45.814500px;}
.h17{height:46.704000px;}
.h2{height:47.232000px;}
.h15{height:47.472000px;}
.h3f{height:48.246513px;}
.h47{height:48.302910px;}
.h2e{height:50.145733px;}
.h39{height:50.238747px;}
.h31{height:50.524944px;}
.h3c{height:50.714837px;}
.hb{height:52.980000px;}
.he{height:53.320500px;}
.h14{height:53.709599px;}
.h13{height:55.860000px;}
.ha{height:58.380000px;}
.h9{height:61.120200px;}
.h21{height:62.564479px;}
.h2f{height:64.284624px;}
.h7{height:67.194379px;}
.h8{height:67.212379px;}
.hf{height:73.908933px;}
.h3a{height:76.701019px;}
.h4{height:77.142000px;}
.h34{height:80.994865px;}
.h3e{height:82.406540px;}
.h46{height:82.877098px;}
.h35{height:82.935918px;}
.h40{height:83.171197px;}
.h41{height:83.700575px;}
.h48{height:109.404828px;}
.h6{height:137.088000px;}
.h5{height:137.232000px;}
.h52{height:204.143990px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.wf{width:5.430000px;}
.w6{width:5.431500px;}
.w8{width:8.010000px;}
.w7{width:8.011500px;}
.w5{width:9.975000px;}
.w9{width:11.820000px;}
.wa{width:18.000000px;}
.wb{width:39.045000px;}
.w3{width:76.860003px;}
.w4{width:86.939999px;}
.w2{width:196.100990px;}
.w10{width:235.035004px;}
.we{width:293.490005px;}
.wd{width:306.195007px;}
.w11{width:344.762993px;}
.wc{width:349.634995px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x56{left:-1.003646px;}
.x0{left:0.000000px;}
.x7{left:1.594482px;}
.x6a{left:12.796051px;}
.x17{left:26.245056px;}
.x11{left:31.062927px;}
.x34{left:45.623383px;}
.x8{left:48.784364px;}
.x2a{left:52.818741px;}
.x48{left:70.856551px;}
.x13{left:73.750351px;}
.x59{left:75.784345px;}
.x19{left:83.836212px;}
.x1{left:84.933002px;}
.x36{left:87.770233px;}
.x2{left:92.734348px;}
.x3{left:94.683150px;}
.xd{left:95.880900px;}
.xa{left:97.034552px;}
.x5b{left:104.337148px;}
.x6f{left:107.539352px;}
.x55{left:115.039500px;}
.x38{left:121.155304px;}
.x4b{left:124.356583px;}
.x57{left:125.713050px;}
.x5d{left:128.528859px;}
.x2f{left:132.630478px;}
.x3a{left:137.018417px;}
.x6c{left:139.550400px;}
.x6e{left:140.704651px;}
.x3d{left:168.162460px;}
.x5f{left:170.784292px;}
.x58{left:192.032375px;}
.x4e{left:195.541946px;}
.x3f{left:201.102768px;}
.x5a{left:204.648010px;}
.x61{left:206.720845px;}
.x40{left:210.012589px;}
.x41{left:228.642288px;}
.x63{left:232.411344px;}
.x5c{left:234.091347px;}
.x44{left:250.148117px;}
.x5e{left:254.112305px;}
.x4{left:270.817497px;}
.x50{left:280.065445px;}
.x60{left:294.612305px;}
.x46{left:303.580994px;}
.x51{left:322.980011px;}
.x52{left:328.410759px;}
.x62{left:341.105690px;}
.x31{left:347.293808px;}
.x53{left:368.345993px;}
.x54{left:376.355690px;}
.x28{left:455.197495px;}
.xb{left:457.081652px;}
.x29{left:463.925079px;}
.xc{left:469.076849px;}
.x25{left:475.086594px;}
.x69{left:476.938660px;}
.x64{left:479.586594px;}
.x65{left:483.529633px;}
.x15{left:484.678482px;}
.x32{left:487.085999px;}
.x66{left:490.386133px;}
.x67{left:493.103989px;}
.x47{left:494.316605px;}
.x16{left:495.371567px;}
.x33{left:499.593292px;}
.x1b{left:509.111984px;}
.x2b{left:515.873108px;}
.x1c{left:519.086838px;}
.x2c{left:523.135590px;}
.x35{left:524.325623px;}
.x2d{left:552.484558px;}
.x18{left:557.039703px;}
.x49{left:568.769394px;}
.x1a{left:571.412384px;}
.x2e{left:581.833573px;}
.x4a{left:595.944580px;}
.x30{left:598.600937px;}
.x37{left:600.330597px;}
.x6b{left:602.660385px;}
.x6d{left:603.814636px;}
.x6{left:611.659515px;}
.x39{left:618.623566px;}
.x4c{left:625.536758px;}
.x3b{left:631.462050px;}
.x26{left:642.714020px;}
.x21{left:645.218994px;}
.x3c{left:647.337753px;}
.x22{left:653.228989px;}
.x4d{left:658.976120px;}
.x68{left:660.952332px;}
.x3e{left:662.606094px;}
.x27{left:681.758698px;}
.x5{left:694.929886px;}
.x4f{left:698.922318px;}
.x42{left:713.663086px;}
.x43{left:729.323410px;}
.xf{left:731.014481px;}
.x1d{left:733.113007px;}
.x1e{left:738.544052px;}
.xe{left:741.068390px;}
.x10{left:744.500381px;}
.x9{left:747.224258px;}
.x45{left:749.978119px;}
.x12{left:771.217072px;}
.x1f{left:774.420044px;}
.x20{left:782.431091px;}
.x23{left:790.648499px;}
.x24{left:802.469421px;}
.x14{left:807.873871px;}
@media print{
.v10{vertical-align:-73.720816pt;}
.v3{vertical-align:-16.000000pt;}
.v4{vertical-align:-13.066735pt;}
.v5{vertical-align:-10.666667pt;}
.v6{vertical-align:-7.822917pt;}
.v7{vertical-align:-1.535482pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v13{vertical-align:3.024000pt;}
.ve{vertical-align:7.487467pt;}
.vd{vertical-align:9.312500pt;}
.va{vertical-align:12.567904pt;}
.vf{vertical-align:15.070964pt;}
.v12{vertical-align:16.000000pt;}
.v9{vertical-align:19.343424pt;}
.v8{vertical-align:20.855537pt;}
.v2{vertical-align:23.466471pt;}
.vb{vertical-align:31.911328pt;}
.vc{vertical-align:36.651271pt;}
.v11{vertical-align:95.157365pt;}
.ls30{letter-spacing:-5.644800pt;}
.ls8{letter-spacing:-5.331200pt;}
.ls5{letter-spacing:-4.149273pt;}
.ls32{letter-spacing:-1.149867pt;}
.ls4{letter-spacing:-0.933333pt;}
.ls31{letter-spacing:-0.731733pt;}
.ls9{letter-spacing:-0.418133pt;}
.ls6{letter-spacing:-0.365867pt;}
.ls7{letter-spacing:-0.313600pt;}
.ls2f{letter-spacing:-0.261333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000001pt;}
.ls38{letter-spacing:0.000059pt;}
.ls1b{letter-spacing:0.015381pt;}
.ls36{letter-spacing:0.016233pt;}
.ls24{letter-spacing:0.016854pt;}
.lsb{letter-spacing:0.018348pt;}
.ls26{letter-spacing:0.018511pt;}
.lsd{letter-spacing:0.022130pt;}
.ls33{letter-spacing:0.039735pt;}
.lse{letter-spacing:0.093516pt;}
.ls3a{letter-spacing:0.133449pt;}
.ls3b{letter-spacing:0.200173pt;}
.ls14{letter-spacing:0.825743pt;}
.ls11{letter-spacing:0.829143pt;}
.ls3c{letter-spacing:1.000864pt;}
.lsc{letter-spacing:1.323691pt;}
.ls29{letter-spacing:1.355766pt;}
.ls39{letter-spacing:1.668107pt;}
.ls1a{letter-spacing:2.431409pt;}
.ls17{letter-spacing:2.656371pt;}
.ls1c{letter-spacing:2.656859pt;}
.ls18{letter-spacing:2.704873pt;}
.lsa{letter-spacing:2.756735pt;}
.lsf{letter-spacing:3.134013pt;}
.ls20{letter-spacing:4.182741pt;}
.ls2d{letter-spacing:4.705584pt;}
.ls0{letter-spacing:4.853333pt;}
.ls23{letter-spacing:5.595213pt;}
.ls2e{letter-spacing:6.378681pt;}
.ls1f{letter-spacing:8.051777pt;}
.ls2c{letter-spacing:9.097462pt;}
.ls19{letter-spacing:10.333489pt;}
.ls13{letter-spacing:10.380246pt;}
.ls16{letter-spacing:10.427004pt;}
.ls2a{letter-spacing:11.607107pt;}
.ls28{letter-spacing:11.659391pt;}
.ls35{letter-spacing:11.711676pt;}
.ls10{letter-spacing:12.998687pt;}
.ls1d{letter-spacing:13.025511pt;}
.ls12{letter-spacing:13.842677pt;}
.ls15{letter-spacing:13.842839pt;}
.ls37{letter-spacing:14.277894pt;}
.ls34{letter-spacing:14.482742pt;}
.ls1e{letter-spacing:14.535026pt;}
.ls22{letter-spacing:14.587310pt;}
.ls27{letter-spacing:14.876780pt;}
.ls21{letter-spacing:25.148732pt;}
.ls25{letter-spacing:25.410154pt;}
.ls2b{letter-spacing:29.174621pt;}
.ls1{letter-spacing:34.049461pt;}
.ws2{word-spacing:-27.136000pt;}
.ws6{word-spacing:-22.475231pt;}
.ws1{word-spacing:-18.858667pt;}
.wsc{word-spacing:-12.282667pt;}
.ws8c{word-spacing:-11.969067pt;}
.wsd{word-spacing:-11.916800pt;}
.ws5f{word-spacing:-11.864533pt;}
.ws125{word-spacing:-11.550933pt;}
.ws4{word-spacing:-11.096533pt;}
.ws5{word-spacing:-11.040000pt;}
.ws135{word-spacing:-10.942783pt;}
.ws134{word-spacing:-10.275540pt;}
.wsd1{word-spacing:-10.156800pt;}
.ws12b{word-spacing:-10.087467pt;}
.ws133{word-spacing:-9.474848pt;}
.ws132{word-spacing:-9.408124pt;}
.wsd2{word-spacing:-9.344000pt;}
.ws0{word-spacing:-9.045333pt;}
.ws3{word-spacing:-8.993600pt;}
.ws12d{word-spacing:-8.760000pt;}
.wsc7{word-spacing:-8.597867pt;}
.ws12e{word-spacing:-8.280000pt;}
.wsa{word-spacing:-7.242667pt;}
.ws136{word-spacing:-7.200000pt;}
.wsc8{word-spacing:-6.540800pt;}
.ws7{word-spacing:-6.132000pt;}
.ws97{word-spacing:-5.749333pt;}
.ws9b{word-spacing:-4.010667pt;}
.ws9{word-spacing:-2.053333pt;}
.ws138{word-spacing:-1.680000pt;}
.ws137{word-spacing:-1.668107pt;}
.ws5c{word-spacing:-1.515733pt;}
.ws7c{word-spacing:-1.463467pt;}
.ws96{word-spacing:-1.254400pt;}
.ws115{word-spacing:-1.149867pt;}
.ws35{word-spacing:-1.097600pt;}
.ws12c{word-spacing:-1.045333pt;}
.ws11e{word-spacing:-0.993067pt;}
.wsbc{word-spacing:-0.784000pt;}
.ws2b{word-spacing:-0.731733pt;}
.wsdc{word-spacing:-0.679467pt;}
.ws7b{word-spacing:-0.574933pt;}
.wsbf{word-spacing:-0.522667pt;}
.wse3{word-spacing:-0.470400pt;}
.ws83{word-spacing:-0.418133pt;}
.wsfd{word-spacing:-0.261333pt;}
.ws80{word-spacing:-0.209067pt;}
.ws15{word-spacing:-0.156800pt;}
.ws27{word-spacing:-0.104533pt;}
.ws111{word-spacing:-0.079471pt;}
.ws110{word-spacing:-0.052284pt;}
.wsfa{word-spacing:-0.052267pt;}
.ws112{word-spacing:-0.046758pt;}
.ws131{word-spacing:-0.040000pt;}
.ws8{word-spacing:0.000000pt;}
.ws8b{word-spacing:0.052267pt;}
.ws56{word-spacing:0.104533pt;}
.wsde{word-spacing:0.156800pt;}
.ws40{word-spacing:0.209067pt;}
.ws6d{word-spacing:0.261333pt;}
.ws3b{word-spacing:0.313600pt;}
.ws11d{word-spacing:0.418133pt;}
.ws51{word-spacing:0.470400pt;}
.ws5a{word-spacing:0.522667pt;}
.ws68{word-spacing:0.574933pt;}
.wsf{word-spacing:0.627200pt;}
.ws2c{word-spacing:0.679467pt;}
.ws6e{word-spacing:0.731733pt;}
.wse1{word-spacing:0.836267pt;}
.wsa8{word-spacing:0.888533pt;}
.ws9f{word-spacing:0.940800pt;}
.wsc3{word-spacing:0.993067pt;}
.ws33{word-spacing:1.045333pt;}
.ws58{word-spacing:1.097600pt;}
.wscb{word-spacing:1.149867pt;}
.ws43{word-spacing:1.202133pt;}
.ws41{word-spacing:1.306667pt;}
.ws8a{word-spacing:1.358933pt;}
.wsb3{word-spacing:1.463467pt;}
.ws7e{word-spacing:1.515733pt;}
.ws48{word-spacing:1.568000pt;}
.ws59{word-spacing:1.620267pt;}
.ws81{word-spacing:1.672533pt;}
.ws82{word-spacing:1.724800pt;}
.ws67{word-spacing:1.777067pt;}
.ws71{word-spacing:1.829333pt;}
.ws70{word-spacing:1.881600pt;}
.wsa7{word-spacing:1.933867pt;}
.ws93{word-spacing:1.986133pt;}
.ws84{word-spacing:2.038400pt;}
.ws20{word-spacing:2.142933pt;}
.wse{word-spacing:2.195200pt;}
.wsd6{word-spacing:2.247467pt;}
.wsd8{word-spacing:2.299733pt;}
.ws8e{word-spacing:2.404267pt;}
.ws29{word-spacing:2.456533pt;}
.ws3c{word-spacing:2.508800pt;}
.ws1d{word-spacing:2.561067pt;}
.ws91{word-spacing:2.613333pt;}
.wsd9{word-spacing:2.665600pt;}
.ws1a{word-spacing:2.717867pt;}
.wsba{word-spacing:2.822400pt;}
.ws21{word-spacing:2.874667pt;}
.ws10{word-spacing:2.926933pt;}
.ws4a{word-spacing:2.979200pt;}
.ws73{word-spacing:3.083733pt;}
.ws2a{word-spacing:3.136000pt;}
.wsbb{word-spacing:3.188267pt;}
.wsae{word-spacing:3.292800pt;}
.ws6a{word-spacing:3.345067pt;}
.ws90{word-spacing:3.449600pt;}
.ws32{word-spacing:3.501867pt;}
.ws79{word-spacing:3.554133pt;}
.ws2f{word-spacing:3.606400pt;}
.wsf9{word-spacing:3.710933pt;}
.ws76{word-spacing:3.763200pt;}
.ws10e{word-spacing:3.815467pt;}
.wsea{word-spacing:3.867733pt;}
.ws2d{word-spacing:3.920000pt;}
.wscd{word-spacing:3.972267pt;}
.ws13{word-spacing:4.076800pt;}
.wsf7{word-spacing:4.129067pt;}
.wsb{word-spacing:4.149273pt;}
.ws16{word-spacing:4.181333pt;}
.wsf1{word-spacing:4.233600pt;}
.ws6b{word-spacing:4.285867pt;}
.ws49{word-spacing:4.338133pt;}
.ws36{word-spacing:4.442667pt;}
.ws45{word-spacing:4.494933pt;}
.ws30{word-spacing:4.547200pt;}
.ws1f{word-spacing:4.651733pt;}
.ws127{word-spacing:4.704000pt;}
.ws26{word-spacing:4.808533pt;}
.ws12{word-spacing:4.860800pt;}
.ws78{word-spacing:4.913067pt;}
.ws86{word-spacing:4.965333pt;}
.wsc6{word-spacing:5.017600pt;}
.wsff{word-spacing:5.069867pt;}
.ws1c{word-spacing:5.122133pt;}
.ws99{word-spacing:5.174400pt;}
.ws19{word-spacing:5.226667pt;}
.ws11{word-spacing:5.278933pt;}
.ws5b{word-spacing:5.331200pt;}
.ws34{word-spacing:5.383467pt;}
.ws4c{word-spacing:5.435733pt;}
.ws10c{word-spacing:5.488000pt;}
.ws25{word-spacing:5.592533pt;}
.ws9a{word-spacing:5.644800pt;}
.ws88{word-spacing:5.697067pt;}
.wsfb{word-spacing:5.749333pt;}
.ws69{word-spacing:5.801600pt;}
.ws3a{word-spacing:5.853867pt;}
.wsaf{word-spacing:5.906133pt;}
.ws5d{word-spacing:5.958400pt;}
.ws95{word-spacing:6.010667pt;}
.wsf5{word-spacing:6.062933pt;}
.wsa6{word-spacing:6.115200pt;}
.ws102{word-spacing:6.167467pt;}
.ws8f{word-spacing:6.219733pt;}
.ws10d{word-spacing:6.272000pt;}
.ws6f{word-spacing:6.324267pt;}
.ws117{word-spacing:6.376533pt;}
.ws17{word-spacing:6.428800pt;}
.ws46{word-spacing:6.481067pt;}
.ws18{word-spacing:6.533333pt;}
.ws9c{word-spacing:6.585600pt;}
.ws87{word-spacing:6.637867pt;}
.wsb6{word-spacing:6.690133pt;}
.wsec{word-spacing:6.742400pt;}
.ws64{word-spacing:6.794667pt;}
.ws1e{word-spacing:6.846933pt;}
.wsa3{word-spacing:6.899200pt;}
.wsbd{word-spacing:6.951467pt;}
.ws23{word-spacing:7.003733pt;}
.wse0{word-spacing:7.108267pt;}
.ws54{word-spacing:7.160533pt;}
.ws74{word-spacing:7.212800pt;}
.ws11c{word-spacing:7.265067pt;}
.ws22{word-spacing:7.369600pt;}
.ws128{word-spacing:7.421867pt;}
.ws31{word-spacing:7.474133pt;}
.wse4{word-spacing:7.526400pt;}
.wsda{word-spacing:7.578667pt;}
.wsef{word-spacing:7.630933pt;}
.ws124{word-spacing:7.683200pt;}
.ws113{word-spacing:7.729076pt;}
.wsf4{word-spacing:7.735467pt;}
.ws100{word-spacing:7.787733pt;}
.wsc2{word-spacing:7.840000pt;}
.ws129{word-spacing:7.944533pt;}
.ws7d{word-spacing:8.049067pt;}
.ws6c{word-spacing:8.101333pt;}
.ws47{word-spacing:8.362667pt;}
.wsaa{word-spacing:8.414933pt;}
.ws9e{word-spacing:8.467200pt;}
.wsfc{word-spacing:8.519467pt;}
.wsb2{word-spacing:8.571733pt;}
.ws9d{word-spacing:8.728533pt;}
.ws4b{word-spacing:8.833067pt;}
.ws3d{word-spacing:8.937600pt;}
.ws63{word-spacing:9.042133pt;}
.ws37{word-spacing:9.094400pt;}
.ws130{word-spacing:9.146667pt;}
.ws94{word-spacing:9.198933pt;}
.wsb8{word-spacing:9.355733pt;}
.ws114{word-spacing:9.408000pt;}
.ws61{word-spacing:9.460267pt;}
.wsa5{word-spacing:9.512533pt;}
.ws77{word-spacing:9.564800pt;}
.wsf2{word-spacing:9.669333pt;}
.wse9{word-spacing:9.721600pt;}
.ws120{word-spacing:9.773867pt;}
.ws65{word-spacing:9.826133pt;}
.ws55{word-spacing:9.878400pt;}
.wsed{word-spacing:9.930667pt;}
.wsf8{word-spacing:9.982933pt;}
.wsb0{word-spacing:10.035200pt;}
.ws85{word-spacing:10.087467pt;}
.wsc4{word-spacing:10.139733pt;}
.ws8d{word-spacing:10.192000pt;}
.ws118{word-spacing:10.244267pt;}
.wscf{word-spacing:10.296533pt;}
.ws105{word-spacing:10.401067pt;}
.ws89{word-spacing:10.505600pt;}
.wsc9{word-spacing:10.610133pt;}
.ws50{word-spacing:10.662400pt;}
.wsf3{word-spacing:10.766933pt;}
.wsc0{word-spacing:10.819200pt;}
.wsb5{word-spacing:10.871467pt;}
.ws5e{word-spacing:10.923733pt;}
.ws123{word-spacing:10.976000pt;}
.wsad{word-spacing:11.028267pt;}
.ws62{word-spacing:11.080533pt;}
.wsab{word-spacing:11.132800pt;}
.wsca{word-spacing:11.237333pt;}
.wsa1{word-spacing:11.289600pt;}
.ws44{word-spacing:11.446400pt;}
.ws109{word-spacing:11.498667pt;}
.wsbe{word-spacing:11.603200pt;}
.ws116{word-spacing:11.707733pt;}
.ws24{word-spacing:11.812267pt;}
.wsa4{word-spacing:11.864533pt;}
.ws39{word-spacing:11.916800pt;}
.ws11b{word-spacing:12.021333pt;}
.wsc1{word-spacing:12.230400pt;}
.ws4f{word-spacing:12.334933pt;}
.wse6{word-spacing:12.387200pt;}
.ws7a{word-spacing:12.439467pt;}
.ws104{word-spacing:12.491733pt;}
.ws10f{word-spacing:12.544000pt;}
.ws10a{word-spacing:12.700800pt;}
.wsdd{word-spacing:12.753067pt;}
.ws121{word-spacing:12.962133pt;}
.wse7{word-spacing:13.014400pt;}
.wseb{word-spacing:13.066667pt;}
.ws72{word-spacing:13.275733pt;}
.ws75{word-spacing:13.328000pt;}
.wsa2{word-spacing:13.380267pt;}
.wse5{word-spacing:13.432533pt;}
.wsc5{word-spacing:13.589333pt;}
.ws101{word-spacing:13.641600pt;}
.wsd0{word-spacing:13.798400pt;}
.ws106{word-spacing:13.902933pt;}
.ws108{word-spacing:14.007467pt;}
.wsa0{word-spacing:14.059733pt;}
.wscc{word-spacing:14.112000pt;}
.ws1b{word-spacing:14.425600pt;}
.wsd4{word-spacing:14.477867pt;}
.ws60{word-spacing:14.530133pt;}
.wsfe{word-spacing:14.634667pt;}
.wsb7{word-spacing:14.686933pt;}
.wsdb{word-spacing:14.843733pt;}
.ws66{word-spacing:14.896000pt;}
.ws103{word-spacing:15.052800pt;}
.ws4e{word-spacing:15.157333pt;}
.ws14{word-spacing:15.418667pt;}
.ws52{word-spacing:15.523200pt;}
.ws12a{word-spacing:15.627733pt;}
.wse2{word-spacing:15.680000pt;}
.ws11f{word-spacing:15.784533pt;}
.ws119{word-spacing:15.889067pt;}
.ws38{word-spacing:15.993600pt;}
.ws53{word-spacing:16.098133pt;}
.wsdf{word-spacing:16.254933pt;}
.ws7f{word-spacing:16.464000pt;}
.wsee{word-spacing:16.673067pt;}
.wsf6{word-spacing:16.986667pt;}
.ws126{word-spacing:17.195733pt;}
.ws107{word-spacing:17.300267pt;}
.ws122{word-spacing:17.561600pt;}
.wsf0{word-spacing:17.613867pt;}
.wse8{word-spacing:17.718400pt;}
.ws92{word-spacing:17.770667pt;}
.ws2e{word-spacing:18.032000pt;}
.ws3e{word-spacing:18.136533pt;}
.ws12f{word-spacing:18.188800pt;}
.ws10b{word-spacing:18.293333pt;}
.ws4d{word-spacing:18.554667pt;}
.ws28{word-spacing:18.972800pt;}
.wsd7{word-spacing:19.181867pt;}
.ws42{word-spacing:19.756800pt;}
.wsb9{word-spacing:20.854400pt;}
.ws98{word-spacing:21.952000pt;}
.wsac{word-spacing:22.004267pt;}
.ws3f{word-spacing:22.056533pt;}
.ws57{word-spacing:22.265600pt;}
.wsb1{word-spacing:22.317867pt;}
.wsb4{word-spacing:23.258667pt;}
.wsd3{word-spacing:23.938133pt;}
.wsce{word-spacing:25.088000pt;}
.ws11a{word-spacing:25.401600pt;}
.wsd5{word-spacing:35.802667pt;}
.wsa9{word-spacing:44.531200pt;}
._15{margin-left:-30.001086pt;}
._1a{margin-left:-23.769600pt;}
._1c{margin-left:-19.600000pt;}
._13{margin-left:-16.889600pt;}
._f{margin-left:-11.707740pt;}
._19{margin-left:-10.264551pt;}
._18{margin-left:-7.377067pt;}
._8{margin-left:-5.898667pt;}
._2{margin-left:-4.394667pt;}
._9{margin-left:-3.200000pt;}
._1{margin-left:-2.201600pt;}
._0{margin-left:-1.066667pt;}
._3{width:0.908800pt;}
._6{width:2.035241pt;}
._11{width:3.846507pt;}
._a{width:4.829867pt;}
._e{width:5.909315pt;}
._c{width:7.160533pt;}
._b{width:8.603726pt;}
._d{width:9.520960pt;}
._12{width:10.760604pt;}
._14{width:11.826062pt;}
._10{width:13.337600pt;}
._7{width:15.146658pt;}
._1d{width:16.993173pt;}
._1b{width:18.030721pt;}
._20{width:19.680000pt;}
._16{width:23.932906pt;}
._17{width:29.420908pt;}
._5{width:33.203698pt;}
._4{width:34.134932pt;}
._1e{width:36.441813pt;}
._1f{width:39.200000pt;}
.fs16{font-size:12.510710pt;}
.fsa{font-size:28.000000pt;}
.fse{font-size:29.866667pt;}
.fs13{font-size:32.000000pt;}
.fs15{font-size:33.362142pt;}
.fs14{font-size:35.466667pt;}
.fs12{font-size:35.536000pt;}
.fsd{font-size:36.586667pt;}
.fs7{font-size:37.333333pt;}
.fs10{font-size:39.735466pt;}
.fs9{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fs11{font-size:46.757867pt;}
.fsc{font-size:49.066666pt;}
.fsb{font-size:52.266667pt;}
.fsf{font-size:52.284267pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs8{font-size:86.443197pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y211{bottom:0.066935pt;}
.y241{bottom:0.106669pt;}
.y220{bottom:0.172282pt;}
.y25c{bottom:0.172445pt;}
.y227{bottom:0.173584pt;}
.y28a{bottom:0.905599pt;}
.y21d{bottom:2.038778pt;}
.y232{bottom:2.040131pt;}
.y22e{bottom:2.040141pt;}
.y217{bottom:2.323079pt;}
.y215{bottom:2.706950pt;}
.y213{bottom:4.326782pt;}
.y20e{bottom:4.706950pt;}
.y2c{bottom:5.861696pt;}
.y236{bottom:7.559083pt;}
.y210{bottom:9.987183pt;}
.y291{bottom:10.181559pt;}
.y287{bottom:10.185710pt;}
.y24c{bottom:12.426931pt;}
.y24a{bottom:16.222941pt;}
.y23c{bottom:16.226807pt;}
.y238{bottom:20.543336pt;}
.y28e{bottom:24.690104pt;}
.y243{bottom:25.391073pt;}
.y247{bottom:25.391215pt;}
.y23e{bottom:25.395203pt;}
.y240{bottom:28.642680pt;}
.y2b{bottom:28.877197pt;}
.y24e{bottom:30.859192pt;}
.y251{bottom:30.868134pt;}
.y28c{bottom:30.869548pt;}
.y28{bottom:70.229599pt;}
.y27{bottom:80.897599pt;}
.y2e8{bottom:88.410665pt;}
.y1fc{bottom:89.483736pt;}
.y26{bottom:91.565599pt;}
.yfe{bottom:95.630666pt;}
.y1df{bottom:95.779869pt;}
.y1c8{bottom:95.799069pt;}
.ydd{bottom:95.950663pt;}
.y155{bottom:96.110667pt;}
.y16b{bottom:96.857330pt;}
.y107{bottom:99.064129pt;}
.y197{bottom:99.085471pt;}
.y110{bottom:99.116390pt;}
.y1a1{bottom:99.724396pt;}
.y2d0{bottom:100.304647pt;}
.y25{bottom:102.233599pt;}
.y2e6{bottom:103.088000pt;}
.y64{bottom:103.193336pt;}
.y93{bottom:103.895863pt;}
.y1fb{bottom:105.477336pt;}
.yfd{bottom:108.963999pt;}
.y154{bottom:109.444000pt;}
.y16a{bottom:110.190664pt;}
.y1de{bottom:111.773469pt;}
.y1c7{bottom:111.792669pt;}
.y2cf{bottom:112.304647pt;}
.y24{bottom:112.901599pt;}
.y31f{bottom:113.638021pt;}
.y106{bottom:115.057729pt;}
.y196{bottom:115.079071pt;}
.y10f{bottom:115.109990pt;}
.y1a0{bottom:115.743596pt;}
.y285{bottom:117.633738pt;}
.y2e4{bottom:118.901465pt;}
.y63{bottom:119.186936pt;}
.y92{bottom:119.889463pt;}
.y24b{bottom:120.566671pt;}
.y1fa{bottom:121.477336pt;}
.yfc{bottom:122.297333pt;}
.y153{bottom:122.777333pt;}
.y23{bottom:123.569599pt;}
.y250{bottom:123.726929pt;}
.y2ce{bottom:124.304647pt;}
.y2e5{bottom:124.368000pt;}
.y18d{bottom:125.203867pt;}
.y31e{bottom:125.638021pt;}
.y1dd{bottom:127.767069pt;}
.y1c6{bottom:127.786269pt;}
.y284{bottom:129.633738pt;}
.y24d{bottom:131.037862pt;}
.y195{bottom:131.085471pt;}
.y105{bottom:131.096139pt;}
.y10e{bottom:131.103590pt;}
.y19f{bottom:131.737196pt;}
.y24f{bottom:132.993601pt;}
.y252{bottom:133.002533pt;}
.y22{bottom:134.237599pt;}
.y2e1{bottom:134.909465pt;}
.y62{bottom:135.180536pt;}
.yfb{bottom:135.630666pt;}
.y91{bottom:135.883063pt;}
.y2cd{bottom:136.304647pt;}
.y31d{bottom:137.638021pt;}
.y18c{bottom:138.537200pt;}
.y253{bottom:142.170797pt;}
.y1dc{bottom:143.767069pt;}
.y1c5{bottom:143.779869pt;}
.y21{bottom:144.905599pt;}
.y194{bottom:147.079071pt;}
.y104{bottom:147.089739pt;}
.y10d{bottom:147.097190pt;}
.y19e{bottom:147.730796pt;}
.y2cc{bottom:148.304647pt;}
.y2e3{bottom:148.870799pt;}
.yfa{bottom:148.963999pt;}
.y2e2{bottom:149.385071pt;}
.y31c{bottom:149.638021pt;}
.y2df{bottom:150.157999pt;}
.y61{bottom:151.174136pt;}
.y90{bottom:151.876663pt;}
.y283{bottom:153.633738pt;}
.y1f9{bottom:156.641331pt;}
.y1c4{bottom:159.773469pt;}
.y2cb{bottom:160.304647pt;}
.y31b{bottom:161.638021pt;}
.y2e9{bottom:162.561727pt;}
.y103{bottom:163.083339pt;}
.y10c{bottom:163.090790pt;}
.y193{bottom:163.091861pt;}
.y19d{bottom:163.724396pt;}
.y2de{bottom:164.288666pt;}
.y2e0{bottom:165.233999pt;}
.y231{bottom:166.017333pt;}
.y2dc{bottom:166.912123pt;}
.y60{bottom:167.167736pt;}
.y8f{bottom:167.870263pt;}
.y233{bottom:168.033600pt;}
.y234{bottom:168.057465pt;}
.y2ca{bottom:172.304647pt;}
.y1f8{bottom:172.634931pt;}
.y31a{bottom:173.638021pt;}
.y1c3{bottom:175.767069pt;}
.y1db{bottom:175.773469pt;}
.y33{bottom:178.572266pt;}
.y102{bottom:179.076939pt;}
.y10b{bottom:179.084390pt;}
.y192{bottom:179.085461pt;}
.y19c{bottom:179.759067pt;}
.y2db{bottom:180.034790pt;}
.y2dd{bottom:181.450133pt;}
.y2d9{bottom:182.897070pt;}
.y5f{bottom:183.161336pt;}
.y8e{bottom:183.863863pt;}
.y230{bottom:184.040010pt;}
.y2c9{bottom:184.304647pt;}
.y319{bottom:185.638021pt;}
.y282{bottom:185.650415pt;}
.y1f7{bottom:188.628531pt;}
.y32{bottom:190.572266pt;}
.y1c2{bottom:191.767069pt;}
.y101{bottom:195.070539pt;}
.y10a{bottom:195.077990pt;}
.y191{bottom:195.079061pt;}
.y2d8{bottom:195.609070pt;}
.y19b{bottom:195.752667pt;}
.y2c8{bottom:196.304647pt;}
.y2da{bottom:196.835592pt;}
.y318{bottom:197.638021pt;}
.y281{bottom:197.650415pt;}
.y22d{bottom:198.017333pt;}
.y2d6{bottom:198.903062pt;}
.y5e{bottom:199.161336pt;}
.y8d{bottom:199.857463pt;}
.y22f{bottom:200.033610pt;}
.y22c{bottom:200.050143pt;}
.y1f6{bottom:204.622131pt;}
.y31{bottom:206.572266pt;}
.y1c1{bottom:207.767069pt;}
.y1da{bottom:207.805469pt;}
.y2c7{bottom:208.304647pt;}
.y317{bottom:209.638021pt;}
.y280{bottom:209.650415pt;}
.y100{bottom:211.064139pt;}
.y109{bottom:211.071590pt;}
.y190{bottom:211.085461pt;}
.y2d5{bottom:211.232396pt;}
.y19a{bottom:211.746267pt;}
.y2d7{bottom:212.267863pt;}
.y30{bottom:214.572266pt;}
.y2d2{bottom:214.905331pt;}
.y2d4{bottom:214.909729pt;}
.y5d{bottom:215.167736pt;}
.y8c{bottom:215.876663pt;}
.y22b{bottom:216.043743pt;}
.y2c6{bottom:220.304647pt;}
.y1f5{bottom:220.641331pt;}
.y316{bottom:221.638021pt;}
.y1d9{bottom:223.799069pt;}
.yff{bottom:227.057739pt;}
.y108{bottom:227.065190pt;}
.y18f{bottom:227.079061pt;}
.y2d1{bottom:227.430664pt;}
.y199{bottom:227.739867pt;}
.y2d3{bottom:228.278259pt;}
.y2f{bottom:230.572266pt;}
.y5c{bottom:231.161336pt;}
.y8b{bottom:231.870263pt;}
.y2c5{bottom:232.304647pt;}
.y315{bottom:233.638021pt;}
.y27f{bottom:233.650415pt;}
.y1f4{bottom:236.634931pt;}
.y1c0{bottom:239.773469pt;}
.y1d8{bottom:239.792669pt;}
.y23b{bottom:240.033325pt;}
.y2e{bottom:242.572266pt;}
.y18e{bottom:243.079061pt;}
.y198{bottom:243.733467pt;}
.y2c4{bottom:244.304647pt;}
.y314{bottom:245.638021pt;}
.y27e{bottom:245.650415pt;}
.y23f{bottom:246.980265pt;}
.y5b{bottom:247.167594pt;}
.y8a{bottom:247.863863pt;}
.y2d{bottom:250.572266pt;}
.y2e7{bottom:250.972392pt;}
.y1f3{bottom:252.628531pt;}
.y1bf{bottom:255.767069pt;}
.y1d7{bottom:255.786269pt;}
.y249{bottom:256.256266pt;}
.y23d{bottom:256.260132pt;}
.y2c3{bottom:256.304647pt;}
.y313{bottom:257.638021pt;}
.y27d{bottom:257.650415pt;}
.y245{bottom:263.012004pt;}
.y5a{bottom:263.161194pt;}
.y248{bottom:263.468404pt;}
.y89{bottom:263.857463pt;}
.y244{bottom:265.340129pt;}
.y242{bottom:265.424398pt;}
.y246{bottom:265.424540pt;}
.y2c2{bottom:268.304647pt;}
.y1f2{bottom:268.622131pt;}
.y312{bottom:269.638021pt;}
.y27c{bottom:269.650415pt;}
.y1be{bottom:271.779869pt;}
.y117{bottom:271.838013pt;}
.y59{bottom:279.218814pt;}
.y88{bottom:279.902263pt;}
.y2c1{bottom:280.304647pt;}
.y311{bottom:281.638021pt;}
.y1f1{bottom:284.622131pt;}
.y116{bottom:285.171346pt;}
.y1bd{bottom:287.773469pt;}
.y22a{bottom:290.706677pt;}
.y2c0{bottom:292.304647pt;}
.y310{bottom:293.638021pt;}
.y27b{bottom:293.650415pt;}
.y58{bottom:295.212414pt;}
.y87{bottom:295.895863pt;}
.y1a3{bottom:296.744670pt;}
.y115{bottom:298.504679pt;}
.y20{bottom:302.857869pt;}
.y1bc{bottom:303.767069pt;}
.y2bf{bottom:304.304647pt;}
.y30f{bottom:305.638021pt;}
.y27a{bottom:305.650415pt;}
.y229{bottom:306.700277pt;}
.y1a2{bottom:310.078003pt;}
.y57{bottom:311.206014pt;}
.y114{bottom:311.838013pt;}
.y86{bottom:311.889463pt;}
.y2be{bottom:316.304647pt;}
.y30e{bottom:317.638021pt;}
.y279{bottom:317.650415pt;}
.y1f{bottom:318.857869pt;}
.y1d6{bottom:319.767069pt;}
.y1bb{bottom:319.799049pt;}
.y226{bottom:322.556010pt;}
.y228{bottom:322.700277pt;}
.y225{bottom:322.706677pt;}
.y113{bottom:325.171346pt;}
.y56{bottom:327.199614pt;}
.y85{bottom:327.883063pt;}
.y2bd{bottom:328.304647pt;}
.y30d{bottom:329.638021pt;}
.y278{bottom:329.650415pt;}
.ydc{bottom:334.774129pt;}
.ybf{bottom:334.793329pt;}
.y1e{bottom:334.857869pt;}
.y1d5{bottom:335.773449pt;}
.y1ba{bottom:335.792649pt;}
.y1f0{bottom:335.831049pt;}
.y112{bottom:338.504679pt;}
.y224{bottom:338.700277pt;}
.y2bc{bottom:340.304647pt;}
.y30c{bottom:341.638021pt;}
.y277{bottom:341.650415pt;}
.y55{bottom:343.193214pt;}
.y84{bottom:343.876663pt;}
.ybe{bottom:350.786929pt;}
.y1d{bottom:350.857869pt;}
.ydb{bottom:350.863729pt;}
.y1d4{bottom:351.767049pt;}
.y1b9{bottom:351.786249pt;}
.y1ef{bottom:351.824649pt;}
.y111{bottom:351.838013pt;}
.y2bb{bottom:352.304647pt;}
.y30b{bottom:353.638021pt;}
.y276{bottom:353.650415pt;}
.y223{bottom:354.700277pt;}
.y54{bottom:359.186814pt;}
.y83{bottom:359.870263pt;}
.y2ba{bottom:364.304647pt;}
.y30a{bottom:365.638021pt;}
.y275{bottom:365.650415pt;}
.ybd{bottom:366.780529pt;}
.yda{bottom:366.857329pt;}
.y1c{bottom:366.857869pt;}
.y1b8{bottom:367.779849pt;}
.y1d3{bottom:367.792649pt;}
.y1ee{bottom:367.818249pt;}
.y222{bottom:370.713077pt;}
.y53{bottom:375.180414pt;}
.y82{bottom:375.863863pt;}
.y2b9{bottom:376.304647pt;}
.y309{bottom:377.638021pt;}
.y274{bottom:377.650415pt;}
.ybc{bottom:382.774129pt;}
.yd9{bottom:382.850929pt;}
.y165{bottom:383.057617pt;}
.y15f{bottom:383.083217pt;}
.y1b7{bottom:383.773449pt;}
.y1d2{bottom:383.786249pt;}
.y1ed{bottom:383.811849pt;}
.y221{bottom:386.706677pt;}
.y1b{bottom:386.857869pt;}
.y2b8{bottom:388.304647pt;}
.y308{bottom:389.638021pt;}
.y273{bottom:389.650415pt;}
.y52{bottom:391.174014pt;}
.y81{bottom:391.857463pt;}
.ybb{bottom:398.786929pt;}
.yd8{bottom:398.844529pt;}
.y15e{bottom:399.076817pt;}
.y152{bottom:399.767049pt;}
.y177{bottom:399.773449pt;}
.y1d1{bottom:399.779849pt;}
.y1ec{bottom:399.805449pt;}
.y133{bottom:399.811849pt;}
.y2b7{bottom:400.304647pt;}
.y21c{bottom:400.685343pt;}
.y307{bottom:401.638021pt;}
.y21f{bottom:402.557332pt;}
.y21e{bottom:402.700277pt;}
.y21b{bottom:402.712918pt;}
.y1a{bottom:402.857869pt;}
.y51{bottom:407.167614pt;}
.y80{bottom:407.857463pt;}
.y2b6{bottom:412.304647pt;}
.y306{bottom:413.638021pt;}
.y272{bottom:413.650415pt;}
.yba{bottom:414.780529pt;}
.yd7{bottom:414.838129pt;}
.y15d{bottom:415.070417pt;}
.y176{bottom:415.767049pt;}
.y1d0{bottom:415.773449pt;}
.y151{bottom:415.792649pt;}
.y1eb{bottom:415.799049pt;}
.y132{bottom:415.805449pt;}
.y19{bottom:418.857869pt;}
.y50{bottom:423.161214pt;}
.y7f{bottom:423.863863pt;}
.y2b5{bottom:424.304647pt;}
.y305{bottom:425.638021pt;}
.y271{bottom:425.650415pt;}
.y235{bottom:426.701333pt;}
.yb9{bottom:430.774129pt;}
.yd6{bottom:430.831729pt;}
.y15c{bottom:431.064017pt;}
.y23a{bottom:431.118441pt;}
.y18b{bottom:431.767049pt;}
.y175{bottom:431.773449pt;}
.y150{bottom:431.786249pt;}
.y1ea{bottom:431.792649pt;}
.y131{bottom:431.799049pt;}
.y237{bottom:434.188395pt;}
.y239{bottom:434.260417pt;}
.y18{bottom:434.857869pt;}
.y2b4{bottom:436.304647pt;}
.y304{bottom:437.638021pt;}
.y270{bottom:437.650415pt;}
.y4f{bottom:439.180414pt;}
.y7e{bottom:439.857463pt;}
.yb8{bottom:446.780529pt;}
.yd5{bottom:446.825329pt;}
.y15b{bottom:447.057617pt;}
.y174{bottom:447.767049pt;}
.y14f{bottom:447.779849pt;}
.y18a{bottom:447.786249pt;}
.y130{bottom:447.792649pt;}
.y2b3{bottom:448.304647pt;}
.y303{bottom:449.638021pt;}
.y26f{bottom:449.650415pt;}
.y17{bottom:450.857869pt;}
.y4e{bottom:455.174014pt;}
.y7d{bottom:455.870263pt;}
.y2b2{bottom:460.304647pt;}
.y302{bottom:461.638021pt;}
.yf9{bottom:462.333333pt;}
.yb7{bottom:462.774129pt;}
.yd4{bottom:462.818929pt;}
.y15a{bottom:463.057617pt;}
.y164{bottom:463.103484pt;}
.y14e{bottom:463.773449pt;}
.y189{bottom:463.779849pt;}
.y12f{bottom:463.786249pt;}
.y16{bottom:466.857869pt;}
.y4d{bottom:471.167614pt;}
.y7c{bottom:471.863863pt;}
.y2b1{bottom:472.304647pt;}
.y301{bottom:473.638021pt;}
.yb6{bottom:478.812529pt;}
.y159{bottom:479.070417pt;}
.y163{bottom:479.097084pt;}
.y14d{bottom:479.767049pt;}
.y188{bottom:479.773449pt;}
.y12e{bottom:479.779849pt;}
.y15{bottom:482.857869pt;}
.y2b0{bottom:484.304647pt;}
.y26e{bottom:484.320415pt;}
.y300{bottom:485.638021pt;}
.y4c{bottom:487.161214pt;}
.y7b{bottom:487.857463pt;}
.yb5{bottom:494.806129pt;}
.y158{bottom:495.064017pt;}
.y162{bottom:495.090684pt;}
.y187{bottom:495.767049pt;}
.y173{bottom:495.771316pt;}
.y12d{bottom:495.773449pt;}
.y21a{bottom:495.779849pt;}
.y14c{bottom:495.811849pt;}
.y2af{bottom:496.304647pt;}
.y26d{bottom:496.320415pt;}
.y2ff{bottom:497.638021pt;}
.y14{bottom:498.857869pt;}
.y4b{bottom:503.174014pt;}
.y7a{bottom:503.863863pt;}
.y2ae{bottom:508.304647pt;}
.y2fe{bottom:509.638021pt;}
.yb4{bottom:510.799729pt;}
.y157{bottom:511.057617pt;}
.y161{bottom:511.084284pt;}
.y12c{bottom:511.767049pt;}
.y219{bottom:511.773449pt;}
.y186{bottom:511.779849pt;}
.y14b{bottom:511.805449pt;}
.y26c{bottom:513.650415pt;}
.y13{bottom:514.857869pt;}
.y4a{bottom:519.167614pt;}
.y79{bottom:519.857463pt;}
.y2ad{bottom:520.304647pt;}
.y2fd{bottom:521.638021pt;}
.yb3{bottom:526.793329pt;}
.y156{bottom:527.057617pt;}
.y160{bottom:527.077884pt;}
.y1b6{bottom:527.767049pt;}
.y185{bottom:527.773449pt;}
.y12b{bottom:527.779849pt;}
.y14a{bottom:527.799049pt;}
.y1e9{bottom:527.831090pt;}
.y12{bottom:530.857869pt;}
.y26b{bottom:530.980415pt;}
.y2ac{bottom:532.304647pt;}
.y2fc{bottom:533.638021pt;}
.y49{bottom:535.161214pt;}
.y78{bottom:535.870263pt;}
.y33f{bottom:537.637980pt;}
.yb2{bottom:542.786929pt;}
.y26a{bottom:542.980415pt;}
.y172{bottom:543.767049pt;}
.y12a{bottom:543.773449pt;}
.y149{bottom:543.792649pt;}
.y1b5{bottom:543.818249pt;}
.y1e8{bottom:543.824690pt;}
.y2ab{bottom:544.304647pt;}
.y2fb{bottom:545.638021pt;}
.y11{bottom:546.857869pt;}
.y33e{bottom:549.637980pt;}
.y48{bottom:551.167614pt;}
.y77{bottom:551.863863pt;}
.y2aa{bottom:556.304647pt;}
.y2fa{bottom:557.638021pt;}
.yb1{bottom:558.780529pt;}
.y129{bottom:559.767049pt;}
.y148{bottom:559.786249pt;}
.y184{bottom:559.792649pt;}
.y171{bottom:559.799049pt;}
.y1b4{bottom:559.811849pt;}
.y1e7{bottom:559.818290pt;}
.y269{bottom:560.310415pt;}
.y33d{bottom:561.637980pt;}
.y10{bottom:562.857869pt;}
.y47{bottom:567.161214pt;}
.y76{bottom:567.857463pt;}
.y2a9{bottom:568.304647pt;}
.y2f9{bottom:569.638021pt;}
.yb0{bottom:574.774129pt;}
.y218{bottom:575.767049pt;}
.y147{bottom:575.779849pt;}
.y128{bottom:575.786249pt;}
.y170{bottom:575.792649pt;}
.y1b3{bottom:575.805449pt;}
.y1e6{bottom:575.811890pt;}
.y169{bottom:576.477987pt;}
.y268{bottom:577.640415pt;}
.y2a8{bottom:580.304647pt;}
.y2f8{bottom:581.638021pt;}
.yf{bottom:582.857869pt;}
.y46{bottom:583.206096pt;}
.y75{bottom:583.863863pt;}
.y168{bottom:589.811320pt;}
.yaf{bottom:590.780529pt;}
.yd3{bottom:590.793329pt;}
.y146{bottom:591.773449pt;}
.y127{bottom:591.779849pt;}
.y16f{bottom:591.786249pt;}
.y1b2{bottom:591.799049pt;}
.y1e5{bottom:591.805490pt;}
.y2a7{bottom:592.304647pt;}
.y33c{bottom:593.638006pt;}
.y2f7{bottom:593.638021pt;}
.y267{bottom:594.970415pt;}
.ye{bottom:598.857869pt;}
.y45{bottom:599.199696pt;}
.y74{bottom:599.857463pt;}
.y167{bottom:603.144653pt;}
.y2a6{bottom:604.304647pt;}
.y33b{bottom:605.638006pt;}
.y2f6{bottom:605.638021pt;}
.yae{bottom:606.774129pt;}
.yd2{bottom:606.786929pt;}
.y145{bottom:607.767049pt;}
.y126{bottom:607.773449pt;}
.y16e{bottom:607.779849pt;}
.y1b1{bottom:607.792649pt;}
.y1e4{bottom:607.799090pt;}
.yd{bottom:614.857869pt;}
.y44{bottom:615.193296pt;}
.y73{bottom:615.870263pt;}
.y2a5{bottom:616.304647pt;}
.y166{bottom:616.477987pt;}
.y33a{bottom:617.638006pt;}
.y2f5{bottom:617.638021pt;}
.y214{bottom:621.078654pt;}
.yd1{bottom:622.780529pt;}
.yad{bottom:622.793329pt;}
.y125{bottom:623.767049pt;}
.y16d{bottom:623.773449pt;}
.y216{bottom:623.785604pt;}
.y1b0{bottom:623.786249pt;}
.y1e3{bottom:623.792690pt;}
.y144{bottom:623.850290pt;}
.y266{bottom:628.300415pt;}
.y2a4{bottom:628.304647pt;}
.y339{bottom:629.638006pt;}
.y2f4{bottom:629.638021pt;}
.yc{bottom:630.857869pt;}
.y43{bottom:631.186896pt;}
.y72{bottom:631.863863pt;}
.y20d{bottom:635.086670pt;}
.yd0{bottom:638.774129pt;}
.yac{bottom:638.786929pt;}
.y212{bottom:639.413452pt;}
.y124{bottom:639.767049pt;}
.y183{bottom:639.773449pt;}
.y1af{bottom:639.779849pt;}
.y1e2{bottom:639.786290pt;}
.y20f{bottom:639.793620pt;}
.y143{bottom:639.843890pt;}
.y265{bottom:640.300415pt;}
.y2a3{bottom:640.304647pt;}
.y338{bottom:641.638006pt;}
.y2f3{bottom:641.638021pt;}
.yb{bottom:646.857869pt;}
.y42{bottom:647.180496pt;}
.y71{bottom:647.857463pt;}
.y2a2{bottom:652.304647pt;}
.y337{bottom:653.638006pt;}
.y2f2{bottom:653.638021pt;}
.ycf{bottom:654.774129pt;}
.yab{bottom:654.780529pt;}
.y16c{bottom:655.767049pt;}
.y1ae{bottom:655.773449pt;}
.y1e1{bottom:655.779890pt;}
.y142{bottom:655.837490pt;}
.y20c{bottom:655.850290pt;}
.y264{bottom:656.300415pt;}
.y41{bottom:663.174096pt;}
.y70{bottom:663.962417pt;}
.y336{bottom:665.638006pt;}
.y2f1{bottom:665.638021pt;}
.ya{bottom:666.857869pt;}
.yaa{bottom:670.774129pt;}
.y182{bottom:671.767049pt;}
.y1e0{bottom:671.773490pt;}
.y141{bottom:671.831090pt;}
.y20b{bottom:671.843890pt;}
.y335{bottom:677.638006pt;}
.y2f0{bottom:677.638021pt;}
.y40{bottom:679.167696pt;}
.y6f{bottom:679.956017pt;}
.ya9{bottom:686.793370pt;}
.y1ad{bottom:687.767090pt;}
.y123{bottom:687.779890pt;}
.y181{bottom:687.786290pt;}
.y140{bottom:687.824690pt;}
.y20a{bottom:687.837490pt;}
.y263{bottom:688.325974pt;}
.y334{bottom:689.638006pt;}
.y2ef{bottom:689.638021pt;}
.y3f{bottom:695.161296pt;}
.y6e{bottom:695.949617pt;}
.y333{bottom:701.638006pt;}
.y2ee{bottom:701.638021pt;}
.ya8{bottom:702.786970pt;}
.yce{bottom:702.818970pt;}
.y1cf{bottom:703.767090pt;}
.y122{bottom:703.773490pt;}
.y180{bottom:703.779890pt;}
.y1ac{bottom:703.799090pt;}
.y13f{bottom:703.818290pt;}
.y209{bottom:703.831090pt;}
.y262{bottom:704.319574pt;}
.y3e{bottom:711.161296pt;}
.y6d{bottom:711.943217pt;}
.y332{bottom:713.638006pt;}
.y2a1{bottom:713.638021pt;}
.ya7{bottom:718.780570pt;}
.ycd{bottom:718.812570pt;}
.yeb{bottom:719.767090pt;}
.y17f{bottom:719.773490pt;}
.y1ab{bottom:719.792690pt;}
.yf8{bottom:719.799090pt;}
.y13e{bottom:719.811890pt;}
.y208{bottom:719.824690pt;}
.y261{bottom:720.313174pt;}
.y331{bottom:725.638006pt;}
.y2ed{bottom:725.638021pt;}
.y3d{bottom:727.186896pt;}
.y6c{bottom:727.936817pt;}
.y9{bottom:731.153878pt;}
.ya6{bottom:734.774170pt;}
.ycc{bottom:734.806170pt;}
.y17e{bottom:735.767090pt;}
.y121{bottom:735.779890pt;}
.y1aa{bottom:735.786290pt;}
.yf7{bottom:735.792690pt;}
.yea{bottom:735.799090pt;}
.y13d{bottom:735.805490pt;}
.y1ce{bottom:735.811890pt;}
.y207{bottom:735.818290pt;}
.y260{bottom:736.306774pt;}
.y330{bottom:737.638006pt;}
.y2a0{bottom:737.638021pt;}
.y3c{bottom:743.180496pt;}
.y6b{bottom:743.930417pt;}
.y32f{bottom:749.638006pt;}
.y29f{bottom:749.638021pt;}
.y8{bottom:749.820544pt;}
.ycb{bottom:750.799770pt;}
.ya5{bottom:750.844570pt;}
.y120{bottom:751.773490pt;}
.y1a9{bottom:751.779890pt;}
.yf6{bottom:751.786290pt;}
.ye9{bottom:751.792690pt;}
.y13c{bottom:751.799090pt;}
.y1cd{bottom:751.805490pt;}
.y206{bottom:751.811890pt;}
.y25f{bottom:752.300374pt;}
.y3b{bottom:759.174096pt;}
.y6a{bottom:759.924017pt;}
.y32e{bottom:761.638006pt;}
.y29e{bottom:761.638021pt;}
.yca{bottom:766.793370pt;}
.ya4{bottom:766.838170pt;}
.y11f{bottom:767.767090pt;}
.y1a8{bottom:767.773490pt;}
.yf5{bottom:767.779890pt;}
.ye8{bottom:767.786290pt;}
.y13b{bottom:767.792690pt;}
.y1cc{bottom:767.799090pt;}
.y205{bottom:767.805490pt;}
.y25e{bottom:768.306774pt;}
.y7{bottom:768.491211pt;}
.y32d{bottom:773.638006pt;}
.y29d{bottom:773.638021pt;}
.y3a{bottom:775.167696pt;}
.y69{bottom:775.917617pt;}
.yc9{bottom:782.786970pt;}
.ya3{bottom:782.831770pt;}
.y11e{bottom:783.767090pt;}
.yf4{bottom:783.773490pt;}
.ye7{bottom:783.779890pt;}
.y13a{bottom:783.786290pt;}
.y1cb{bottom:783.792690pt;}
.y204{bottom:783.799090pt;}
.y25b{bottom:784.157308pt;}
.y25d{bottom:784.300374pt;}
.y25a{bottom:784.338774pt;}
.y32c{bottom:785.638006pt;}
.y29c{bottom:785.638021pt;}
.y39{bottom:791.161296pt;}
.y68{bottom:791.911217pt;}
.y32b{bottom:797.638006pt;}
.y29b{bottom:797.638021pt;}
.yc8{bottom:798.780570pt;}
.ya2{bottom:798.825370pt;}
.yf3{bottom:799.767090pt;}
.ye6{bottom:799.773490pt;}
.y139{bottom:799.779890pt;}
.y1a7{bottom:799.786290pt;}
.y203{bottom:799.792690pt;}
.y259{bottom:800.332374pt;}
.y6{bottom:800.513358pt;}
.y38{bottom:807.161296pt;}
.y67{bottom:807.904817pt;}
.y32a{bottom:809.638006pt;}
.y29a{bottom:809.638021pt;}
.yc7{bottom:814.774170pt;}
.ya1{bottom:814.818970pt;}
.ye5{bottom:815.767090pt;}
.yf2{bottom:815.773490pt;}
.y1a6{bottom:815.779890pt;}
.y202{bottom:815.786290pt;}
.y258{bottom:816.325974pt;}
.y329{bottom:821.638006pt;}
.y299{bottom:821.638021pt;}
.y37{bottom:823.161296pt;}
.y66{bottom:823.898417pt;}
.yc6{bottom:830.786970pt;}
.ya0{bottom:830.812570pt;}
.yf1{bottom:831.767090pt;}
.y1a5{bottom:831.773490pt;}
.y201{bottom:831.779890pt;}
.y11d{bottom:831.786290pt;}
.ye4{bottom:831.805490pt;}
.y257{bottom:832.319574pt;}
.y328{bottom:833.638006pt;}
.y298{bottom:833.638021pt;}
.y5{bottom:835.169358pt;}
.y36{bottom:839.161296pt;}
.y65{bottom:839.892017pt;}
.y327{bottom:845.638006pt;}
.y2ec{bottom:845.638021pt;}
.yc5{bottom:846.780570pt;}
.y9f{bottom:846.806170pt;}
.y1a4{bottom:847.767090pt;}
.yf0{bottom:847.771357pt;}
.y138{bottom:847.773490pt;}
.y11c{bottom:847.779890pt;}
.ye3{bottom:847.799090pt;}
.y17d{bottom:847.803316pt;}
.y256{bottom:848.313174pt;}
.y297{bottom:849.638021pt;}
.y326{bottom:857.638006pt;}
.y296{bottom:857.638021pt;}
.yc4{bottom:862.774170pt;}
.y9e{bottom:862.799770pt;}
.yef{bottom:863.767090pt;}
.y11b{bottom:863.773490pt;}
.ye2{bottom:863.792690pt;}
.y17c{bottom:863.796916pt;}
.y255{bottom:864.306774pt;}
.y325{bottom:869.638006pt;}
.y2eb{bottom:869.638021pt;}
.y4{bottom:869.825358pt;}
.y9d{bottom:878.793370pt;}
.yc3{bottom:878.810926pt;}
.y11a{bottom:879.767090pt;}
.y1ca{bottom:879.779890pt;}
.ye1{bottom:879.786290pt;}
.y17b{bottom:879.790516pt;}
.y200{bottom:879.794920pt;}
.y137{bottom:879.828916pt;}
.y254{bottom:880.300374pt;}
.y324{bottom:881.638006pt;}
.y295{bottom:881.638021pt;}
.y96{bottom:885.711182pt;}
.y323{bottom:893.638006pt;}
.y294{bottom:893.638021pt;}
.y9c{bottom:894.786970pt;}
.yc2{bottom:894.804526pt;}
.y119{bottom:895.773490pt;}
.yee{bottom:895.775090pt;}
.ye0{bottom:895.779890pt;}
.y17a{bottom:895.784116pt;}
.y1ff{bottom:895.788520pt;}
.y136{bottom:895.822516pt;}
.y95{bottom:901.711182pt;}
.y286{bottom:904.301351pt;}
.y322{bottom:905.638006pt;}
.y2ea{bottom:905.638021pt;}
.y9b{bottom:910.780570pt;}
.yc1{bottom:910.798126pt;}
.y118{bottom:911.767090pt;}
.yed{bottom:911.768690pt;}
.ydf{bottom:911.773490pt;}
.y179{bottom:911.777716pt;}
.y1fe{bottom:911.782120pt;}
.y135{bottom:911.816116pt;}
.y288{bottom:914.403239pt;}
.y28b{bottom:914.482910pt;}
.y28d{bottom:914.487061pt;}
.y321{bottom:917.638006pt;}
.y293{bottom:917.638021pt;}
.y94{bottom:917.711182pt;}
.y3{bottom:918.544515pt;}
.y29{bottom:920.666829pt;}
.y289{bottom:923.644483pt;}
.y28f{bottom:923.645728pt;}
.y290{bottom:925.715169pt;}
.y9a{bottom:926.774170pt;}
.yc0{bottom:926.791726pt;}
.yec{bottom:927.762290pt;}
.yde{bottom:927.767090pt;}
.y178{bottom:927.771316pt;}
.y1fd{bottom:927.775720pt;}
.y1c9{bottom:927.792936pt;}
.y134{bottom:927.809716pt;}
.y320{bottom:929.638006pt;}
.y292{bottom:929.638021pt;}
.y2a{bottom:963.250651pt;}
.y2{bottom:988.708515pt;}
.y97{bottom:1001.355225pt;}
.y34{bottom:1001.355306pt;}
.y99{bottom:1001.561768pt;}
.y1{bottom:1001.711182pt;}
.y98{bottom:1002.044515pt;}
.y35{bottom:1002.048639pt;}
.h36{height:0.000000pt;}
.h2d{height:1.870315pt;}
.h3d{height:2.091371pt;}
.h24{height:6.133333pt;}
.h28{height:7.998667pt;}
.h27{height:9.065333pt;}
.h53{height:9.458097pt;}
.h25{height:9.466667pt;}
.h29{height:10.933333pt;}
.h22{height:11.333333pt;}
.h1e{height:11.598667pt;}
.h18{height:16.666667pt;}
.h1a{height:18.979189pt;}
.h2a{height:21.065333pt;}
.h19{height:23.423351pt;}
.h4d{height:24.480000pt;}
.h11{height:24.724000pt;}
.h51{height:25.221780pt;}
.h30{height:25.230560pt;}
.h4b{height:26.656000pt;}
.h4f{height:26.954667pt;}
.h50{height:27.132000pt;}
.h1b{height:27.814826pt;}
.h37{height:28.132710pt;}
.h4c{height:28.560000pt;}
.h45{height:30.481727pt;}
.h43{height:31.466667pt;}
.h3b{height:31.468000pt;}
.h4e{height:31.584000pt;}
.hd{height:32.965333pt;}
.h2b{height:33.104570pt;}
.h32{height:33.198085pt;}
.h2c{height:33.712422pt;}
.h33{height:34.666667pt;}
.h1f{height:35.135027pt;}
.h10{height:35.320000pt;}
.h38{height:35.344164pt;}
.h20{height:36.598987pt;}
.hc{height:36.922667pt;}
.h26{height:37.017261pt;}
.h1d{height:37.226398pt;}
.h23{height:37.278682pt;}
.h44{height:37.592388pt;}
.h16{height:37.674667pt;}
.h4a{height:38.080000pt;}
.h1c{height:38.742642pt;}
.h42{height:38.920000pt;}
.h3{height:40.618667pt;}
.h12{height:40.661333pt;}
.h49{height:40.724000pt;}
.h17{height:41.514667pt;}
.h2{height:41.984000pt;}
.h15{height:42.197333pt;}
.h3f{height:42.885790pt;}
.h47{height:42.935920pt;}
.h2e{height:44.573984pt;}
.h39{height:44.656664pt;}
.h31{height:44.911061pt;}
.h3c{height:45.079855pt;}
.hb{height:47.093333pt;}
.he{height:47.396000pt;}
.h14{height:47.741866pt;}
.h13{height:49.653333pt;}
.ha{height:51.893333pt;}
.h9{height:54.329067pt;}
.h21{height:55.612870pt;}
.h2f{height:57.141888pt;}
.h7{height:59.728337pt;}
.h8{height:59.744337pt;}
.hf{height:65.696829pt;}
.h3a{height:68.178684pt;}
.h4{height:68.570667pt;}
.h34{height:71.995435pt;}
.h3e{height:73.250258pt;}
.h46{height:73.668532pt;}
.h35{height:73.720816pt;}
.h40{height:73.929953pt;}
.h41{height:74.400511pt;}
.h48{height:97.248736pt;}
.h6{height:121.856000pt;}
.h5{height:121.984000pt;}
.h52{height:181.461324pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.wf{width:4.826667pt;}
.w6{width:4.828000pt;}
.w8{width:7.120000pt;}
.w7{width:7.121333pt;}
.w5{width:8.866667pt;}
.w9{width:10.506667pt;}
.wa{width:16.000000pt;}
.wb{width:34.706667pt;}
.w3{width:68.320002pt;}
.w4{width:77.279999pt;}
.w2{width:174.311991pt;}
.w10{width:208.920003pt;}
.we{width:260.880005pt;}
.wd{width:272.173340pt;}
.w11{width:306.455994pt;}
.wc{width:310.786662pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x56{left:-0.892129pt;}
.x0{left:0.000000pt;}
.x7{left:1.417318pt;}
.x6a{left:11.374268pt;}
.x17{left:23.328939pt;}
.x11{left:27.611491pt;}
.x34{left:40.554118pt;}
.x8{left:43.363879pt;}
.x2a{left:46.949992pt;}
.x48{left:62.983601pt;}
.x13{left:65.555868pt;}
.x59{left:67.363862pt;}
.x19{left:74.521077pt;}
.x1{left:75.496002pt;}
.x36{left:78.017985pt;}
.x2{left:82.430532pt;}
.x3{left:84.162800pt;}
.xd{left:85.227467pt;}
.xa{left:86.252935pt;}
.x5b{left:92.744132pt;}
.x6f{left:95.590535pt;}
.x55{left:102.257333pt;}
.x38{left:107.693604pt;}
.x4b{left:110.539185pt;}
.x57{left:111.744933pt;}
.x5d{left:114.247875pt;}
.x2f{left:117.893758pt;}
.x3a{left:121.794149pt;}
.x6c{left:124.044800pt;}
.x6e{left:125.070801pt;}
.x3d{left:149.477743pt;}
.x5f{left:151.808259pt;}
.x58{left:170.695444pt;}
.x4e{left:173.815063pt;}
.x3f{left:178.758016pt;}
.x5a{left:181.909342pt;}
.x61{left:183.751863pt;}
.x40{left:186.677856pt;}
.x41{left:203.237590pt;}
.x63{left:206.587861pt;}
.x5c{left:208.081197pt;}
.x44{left:222.353882pt;}
.x5e{left:225.877604pt;}
.x4{left:240.726664pt;}
.x50{left:248.947062pt;}
.x60{left:261.877604pt;}
.x46{left:269.849772pt;}
.x51{left:287.093343pt;}
.x52{left:291.920675pt;}
.x62{left:303.205058pt;}
.x31{left:308.705607pt;}
.x53{left:327.418660pt;}
.x54{left:334.538391pt;}
.x28{left:404.619995pt;}
.xb{left:406.294802pt;}
.x29{left:412.377848pt;}
.xc{left:416.957199pt;}
.x25{left:422.299194pt;}
.x69{left:423.945475pt;}
.x64{left:426.299194pt;}
.x65{left:429.804118pt;}
.x15{left:430.825317pt;}
.x32{left:432.965332pt;}
.x66{left:435.898785pt;}
.x67{left:438.314657pt;}
.x47{left:439.392537pt;}
.x16{left:440.330282pt;}
.x33{left:444.082926pt;}
.x1b{left:452.543986pt;}
.x2b{left:458.553874pt;}
.x1c{left:461.410522pt;}
.x2c{left:465.009413pt;}
.x35{left:466.067220pt;}
.x2d{left:491.097385pt;}
.x18{left:495.146403pt;}
.x49{left:505.572795pt;}
.x1a{left:507.922119pt;}
.x2e{left:517.185398pt;}
.x4a{left:529.728516pt;}
.x30{left:532.089722pt;}
.x37{left:533.627197pt;}
.x6b{left:535.698120pt;}
.x6d{left:536.724121pt;}
.x6{left:543.697347pt;}
.x39{left:549.887614pt;}
.x4c{left:556.032674pt;}
.x3b{left:561.299600pt;}
.x26{left:571.301351pt;}
.x21{left:573.527995pt;}
.x3c{left:575.411336pt;}
.x22{left:580.647990pt;}
.x4d{left:585.756551pt;}
.x68{left:587.513184pt;}
.x3e{left:588.983195pt;}
.x27{left:606.007731pt;}
.x5{left:617.715454pt;}
.x4f{left:621.264282pt;}
.x42{left:634.367188pt;}
.x43{left:648.287476pt;}
.xf{left:649.790649pt;}
.x1d{left:651.656006pt;}
.x1e{left:656.483602pt;}
.xe{left:658.727458pt;}
.x10{left:661.778117pt;}
.x9{left:664.199341pt;}
.x45{left:666.647217pt;}
.x12{left:685.526286pt;}
.x1f{left:688.373372pt;}
.x20{left:695.494303pt;}
.x23{left:702.798665pt;}
.x24{left:713.306152pt;}
.x14{left:718.110107pt;}
}


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