
/* 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_d5f24cc63b39.woff")format("woff");}.ff1{font-family:ff1;line-height:0.683000;font-style:normal;font-weight: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_fd94405a1f4a.woff")format("woff");}.ff2{font-family:ff2;line-height:0.971000;font-style:normal;font-weight: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_ef63ef5e0b49.woff")format("woff");}.ff3{font-family:ff3;line-height:0.871094;font-style:normal;font-weight: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_42fb67661978.woff")format("woff");}.ff4{font-family:ff4;line-height:0.971000;font-style:normal;font-weight: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_f83706331eaa.woff")format("woff");}.ff5{font-family:ff5;line-height:0.990000;font-style:normal;font-weight: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_19ccf2267309.woff")format("woff");}.ff6{font-family:ff6;line-height:0.987000;font-style:normal;font-weight: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_aa6b4ecab1ad.woff")format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_677001bf9603.woff")format("woff");}.ff8{font-family:ff8;line-height:0.625000;font-style:normal;font-weight: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_c6248638de7a.woff")format("woff");}.ff9{font-family:ff9;line-height:1.172852;font-style:normal;font-weight: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_6a36127645f1.woff")format("woff");}.ffa{font-family:ffa;line-height:0.971000;font-style:normal;font-weight: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_9a67b15a28f1.woff")format("woff");}.ffb{font-family:ffb;line-height:0.971000;font-style:normal;font-weight: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_4924b8168b86.woff")format("woff");}.ffc{font-family:ffc;line-height:0.971000;font-style:normal;font-weight: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_41b03ee540d1.woff")format("woff");}.ffd{font-family:ffd;line-height:0.861816;font-style:normal;font-weight: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_f649180fcac4.woff")format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_2db6059af668.woff")format("woff");}.fff{font-family:fff;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:ff10;src:url("fonts/font_0015_e0e4f1271b21.woff")format("woff");}.ff10{font-family:ff10;line-height:0.862000;font-style:normal;font-weight: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_67c1aeddcf2a.woff")format("woff");}.ff11{font-family:ff11;line-height:0.862000;font-style:normal;font-weight: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_ff6099629589.woff")format("woff");}.ff12{font-family:ff12;line-height:0.858000;font-style:normal;font-weight: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_d999ee7423c3.woff")format("woff");}.ff13{font-family:ff13;line-height:0.638000;font-style:normal;font-weight: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_d5f24cc63b39.woff")format("woff");}.ff14{font-family:ff14;line-height:0.683000;font-style:normal;font-weight: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_ef94878ad661.woff")format("woff");}.ff15{font-family:ff15;line-height:0.971000;font-style:normal;font-weight: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_fe616547533c.woff")format("woff");}.ff16{font-family:ff16;line-height:0.632000;font-style:normal;font-weight: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_06c2e40b7891.woff")format("woff");}.ff17{font-family:ff17;line-height:0.935000;font-style:normal;font-weight: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_6b0946b9716f.woff")format("woff");}.ff18{font-family:ff18;line-height:0.971000;font-style:normal;font-weight: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_21024574be39.woff")format("woff");}.ff19{font-family:ff19;line-height:0.861328;font-style:normal;font-weight: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_549bc4aff578.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.966000;font-style:normal;font-weight: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_33dddecc293d.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.862000;font-style:normal;font-weight: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_20af60dafc56.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.899000;font-style:normal;font-weight: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_ef14f3f28640.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.862000;font-style:normal;font-weight: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_fc7452330c83.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.971000;font-style:normal;font-weight: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_9e6141dd71d9.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.966000;font-style:normal;font-weight: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_fe616547533c.woff")format("woff");}.ff20{font-family:ff20;line-height:0.632000;font-style:normal;font-weight: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_178ee638ba85.woff")format("woff");}.ff21{font-family:ff21;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:ff22;src:url("fonts/font_0033_84ddefc0e2ba.woff")format("woff");}.ff22{font-family:ff22;line-height:0.971000;font-style:normal;font-weight: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_fe616547533c.woff")format("woff");}.ff23{font-family:ff23;line-height:0.632000;font-style:normal;font-weight: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_b3ef17e73c54.woff")format("woff");}.ff24{font-family:ff24;line-height:0.966000;font-style:normal;font-weight: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_46aad3c767cd.woff")format("woff");}.ff25{font-family:ff25;line-height:0.861816;font-style:normal;font-weight: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_068fada62c8c.woff")format("woff");}.ff26{font-family:ff26;line-height:0.862000;font-style:normal;font-weight: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_fa915cc257b8.woff")format("woff");}.ff27{font-family:ff27;line-height:0.641000;font-style:normal;font-weight: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_d5f24cc63b39.woff")format("woff");}.ff28{font-family:ff28;line-height:0.683000;font-style:normal;font-weight: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_e4675c9d8ee6.woff")format("woff");}.ff29{font-family:ff29;line-height:0.983398;font-style:normal;font-weight: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_29a77d3e3acf.woff")format("woff");}.ff2a{font-family:ff2a;line-height:1.202148;font-style:normal;font-weight: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_4eb598079892.woff")format("woff");}.ff2b{font-family:ff2b;line-height:0.871000;font-style:normal;font-weight: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_7494be0b81c5.woff")format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url("fonts/font_0044_883f06933eba.woff")format("woff");}.ff2d{font-family:ff2d;line-height:0.871094;font-style:normal;font-weight: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_19efba5c3135.woff")format("woff");}.ff2e{font-family:ff2e;line-height:1.096000;font-style:normal;font-weight: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_bdff7488c752.woff")format("woff");}.ff2f{font-family:ff2f;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-23.759940px;}
.v2{vertical-align:-15.120000px;}
.v3{vertical-align:-5.759949px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760142px;}
.v5{vertical-align:27.360000px;}
.lsf{letter-spacing:-0.852000px;}
.ls1b{letter-spacing:-0.834000px;}
.ls4c{letter-spacing:-0.774000px;}
.ls29{letter-spacing:-0.768000px;}
.lsd{letter-spacing:-0.720000px;}
.ls40{letter-spacing:-0.702000px;}
.ls47{letter-spacing:-0.696000px;}
.ls3d{letter-spacing:-0.587400px;}
.ls8{letter-spacing:-0.463800px;}
.ls11{letter-spacing:-0.348600px;}
.ls39{letter-spacing:-0.310800px;}
.ls33{letter-spacing:-0.291000px;}
.ls2b{letter-spacing:-0.282000px;}
.ls34{letter-spacing:-0.250800px;}
.ls3f{letter-spacing:-0.244800px;}
.ls36{letter-spacing:-0.238800px;}
.ls15{letter-spacing:-0.216000px;}
.ls27{letter-spacing:-0.207600px;}
.ls38{letter-spacing:-0.193200px;}
.ls48{letter-spacing:-0.190200px;}
.ls3c{letter-spacing:-0.164400px;}
.ls30{letter-spacing:-0.144000px;}
.ls49{letter-spacing:-0.135600px;}
.lsa{letter-spacing:-0.132600px;}
.ls16{letter-spacing:-0.115200px;}
.ls4b{letter-spacing:-0.094800px;}
.ls35{letter-spacing:-0.078000px;}
.ls26{letter-spacing:-0.048960px;}
.ls42{letter-spacing:-0.046080px;}
.ls44{letter-spacing:-0.034560px;}
.ls2a{letter-spacing:-0.025920px;}
.ls12{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.008640px;}
.lse{letter-spacing:0.020160px;}
.lsb{letter-spacing:0.054720px;}
.ls13{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.083580px;}
.ls32{letter-spacing:0.108475px;}
.ls3e{letter-spacing:0.115200px;}
.ls37{letter-spacing:0.129600px;}
.ls1a{letter-spacing:0.132414px;}
.ls19{letter-spacing:0.132506px;}
.ls2c{letter-spacing:0.132597px;}
.ls9{letter-spacing:0.132600px;}
.ls3a{letter-spacing:0.141000px;}
.ls4a{letter-spacing:0.144015px;}
.ls22{letter-spacing:0.149694px;}
.ls4{letter-spacing:0.149700px;}
.ls1e{letter-spacing:0.149702px;}
.ls10{letter-spacing:0.149786px;}
.ls41{letter-spacing:0.149877px;}
.ls3{letter-spacing:0.149880px;}
.ls20{letter-spacing:0.153014px;}
.ls0{letter-spacing:0.185170px;}
.lsc{letter-spacing:0.190200px;}
.ls25{letter-spacing:0.210000px;}
.ls2e{letter-spacing:0.216000px;}
.ls3b{letter-spacing:0.247800px;}
.ls1c{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.279533px;}
.ls2d{letter-spacing:0.288007px;}
.ls46{letter-spacing:0.296400px;}
.ls31{letter-spacing:0.313800px;}
.ls2f{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.391728px;}
.ls14{letter-spacing:0.391819px;}
.ls1f{letter-spacing:0.869069px;}
.ls1d{letter-spacing:0.869731px;}
.ls23{letter-spacing:1.589819px;}
.ls28{letter-spacing:4.469885px;}
.ls24{letter-spacing:5.189764px;}
.ls17{letter-spacing:59.321232px;}
.ls6{letter-spacing:59.321242px;}
.ls45{letter-spacing:845.970266px;}
.ls21{letter-spacing:846.006055px;}
.ls18{letter-spacing:849.185760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-66.240000px;}
.ws0{word-spacing:-27.174240px;}
.ws2d{word-spacing:-18.446160px;}
.ws2e{word-spacing:-18.216000px;}
.ws12{word-spacing:-18.149760px;}
.ws2f{word-spacing:-18.054960px;}
.ws2c{word-spacing:-18.014160px;}
.ws2b{word-spacing:-17.959560px;}
.ws30{word-spacing:-17.375760px;}
.ws1a{word-spacing:-16.632000px;}
.ws19{word-spacing:-16.488000px;}
.ws1c{word-spacing:-16.272000px;}
.ws1b{word-spacing:-16.128000px;}
.ws1d{word-spacing:-15.284040px;}
.ws11{word-spacing:-15.226440px;}
.ws14{word-spacing:-15.180240px;}
.ws23{word-spacing:-15.111240px;}
.ws6{word-spacing:-15.102840px;}
.ws21{word-spacing:-15.099840px;}
.ws25{word-spacing:-15.085440px;}
.ws8{word-spacing:-14.990400px;}
.ws29{word-spacing:-14.978880px;}
.ws1{word-spacing:-14.970240px;}
.ws17{word-spacing:-14.944320px;}
.ws2a{word-spacing:-14.935680px;}
.ws28{word-spacing:-14.924160px;}
.ws18{word-spacing:-14.921280px;}
.ws20{word-spacing:-14.892240px;}
.wsc{word-spacing:-14.855040px;}
.ws9{word-spacing:-14.837640px;}
.ws24{word-spacing:-14.805840px;}
.ws15{word-spacing:-14.762640px;}
.wsd{word-spacing:-14.754240px;}
.ws26{word-spacing:-14.725440px;}
.ws1f{word-spacing:-14.719440px;}
.ws1e{word-spacing:-14.679240px;}
.ws22{word-spacing:-14.659440px;}
.wsa{word-spacing:-14.621640px;}
.ws5{word-spacing:-14.506440px;}
.ws27{word-spacing:-14.268240px;}
.ws16{word-spacing:-14.202240px;}
.ws10{word-spacing:-14.136240px;}
.wsb{word-spacing:-12.186000px;}
.ws3{word-spacing:-10.902240px;}
.ws2{word-spacing:-9.437760px;}
.wsf{word-spacing:-8.136000px;}
.wse{word-spacing:-0.066240px;}
.ws13{word-spacing:-0.041760px;}
.ws4{word-spacing:0.000000px;}
._29{margin-left:-14.365458px;}
._e{margin-left:-4.847976px;}
._b{margin-left:-3.591360px;}
._0{margin-left:-2.539469px;}
._1{margin-left:-1.442880px;}
._3{width:1.200269px;}
._7{width:2.997850px;}
._6{width:4.754880px;}
._c{width:5.809568px;}
._8{width:7.286400px;}
._d{width:8.994240px;}
._9{width:10.517760px;}
._a{width:11.604541px;}
._14{width:12.916800px;}
._15{width:13.924339px;}
._26{width:15.900231px;}
._13{width:17.023680px;}
._23{width:18.812160px;}
._20{width:20.733120px;}
._1d{width:24.707520px;}
._19{width:26.893440px;}
._22{width:28.152000px;}
._1c{width:30.934080px;}
._21{width:33.252480px;}
._5{width:34.599802px;}
._4{width:35.967830px;}
._2a{width:37.624320px;}
._1f{width:39.663360px;}
._24{width:46.436690px;}
._18{width:49.017600px;}
._27{width:50.800806px;}
._2{width:53.266320px;}
._1b{width:54.898560px;}
._25{width:60.750180px;}
._16{width:62.795520px;}
._1a{width:63.921600px;}
._1e{width:70.148160px;}
._28{width:79.362305px;}
._12{width:85.776998px;}
._17{width:87.105600px;}
._f{width:128.435558px;}
._10{width:154.202918px;}
._2b{width:164.820741px;}
._11{width:168.444518px;}
.fc5{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(47,84,150);}
.fc3{color:rgb(83,129,53);}
.fc2{color:rgb(5,99,193);}
.fc0{color:rgb(83,129,53);}
.fs4{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs0{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y423{bottom:4.494003px;}
.y29f{bottom:4.500000px;}
.y265{bottom:6.120001px;}
.y231{bottom:6.120003px;}
.y82{bottom:13.680180px;}
.y445{bottom:14.039978px;}
.y41a{bottom:14.220016px;}
.y83{bottom:14.760135px;}
.y1f0{bottom:15.120026px;}
.y1fa{bottom:15.480011px;}
.y20d{bottom:15.659981px;}
.y1f4{bottom:15.660004px;}
.y1fd{bottom:15.660049px;}
.y3ef{bottom:15.839996px;}
.y47e{bottom:15.869980px;}
.y1d{bottom:17.999850px;}
.y1da{bottom:18.000000px;}
.y289{bottom:18.044998px;}
.y1dc{bottom:18.179993px;}
.y22b{bottom:18.180016px;}
.y1eb{bottom:18.180038px;}
.y1e7{bottom:18.210022px;}
.y3b7{bottom:20.700027px;}
.y20{bottom:21.420000px;}
.y1e{bottom:22.319850px;}
.y2e2{bottom:23.759995px;}
.y422{bottom:24.474003px;}
.y330{bottom:24.480000px;}
.y376{bottom:24.480011px;}
.y37e{bottom:24.525009px;}
.y2ca{bottom:24.653996px;}
.y450{bottom:24.654006px;}
.y2ba{bottom:24.659958px;}
.y32b{bottom:24.659981px;}
.y2fa{bottom:24.659992px;}
.y29e{bottom:24.660004px;}
.y467{bottom:24.689987px;}
.y2f6{bottom:24.705002px;}
.y230{bottom:27.894001px;}
.y264{bottom:27.899998px;}
.y1e6{bottom:30.089996px;}
.y444{bottom:34.199982px;}
.y419{bottom:34.380020px;}
.y407{bottom:35.820007px;}
.y3ee{bottom:36.000000px;}
.y47d{bottom:36.029984px;}
.y31c{bottom:36.719994px;}
.y1ef{bottom:36.720062px;}
.y326{bottom:37.619992px;}
.y3a6{bottom:38.339996px;}
.y1f9{bottom:39.239960px;}
.y1fc{bottom:39.240005px;}
.y20c{bottom:39.419998px;}
.y1f3{bottom:39.420044px;}
.y216{bottom:39.779938px;}
.y1e2{bottom:39.779984px;}
.y248{bottom:39.780006px;}
.y1d9{bottom:39.780029px;}
.y212{bottom:39.809967px;}
.y27d{bottom:39.810013px;}
.y288{bottom:39.825005px;}
.y24d{bottom:39.959930px;}
.y22a{bottom:39.959999px;}
.y1ea{bottom:39.960022px;}
.y23d{bottom:39.989960px;}
.y258{bottom:39.990005px;}
.y251{bottom:40.004974px;}
.y3b6{bottom:40.860031px;}
.y43a{bottom:43.919998px;}
.y2e1{bottom:43.964996px;}
.y2c9{bottom:44.633995px;}
.y362{bottom:44.634007px;}
.y348{bottom:44.639969px;}
.y370{bottom:44.639992px;}
.y2be{bottom:44.640015px;}
.y37d{bottom:44.685013px;}
.y2ae{bottom:44.813999px;}
.y3c4{bottom:44.814011px;}
.y2b9{bottom:44.819962px;}
.y32a{bottom:44.819984px;}
.y35f{bottom:44.819996px;}
.y29d{bottom:44.820007px;}
.y2ee{bottom:44.849991px;}
.y3cd{bottom:44.864960px;}
.y2f5{bottom:44.864983px;}
.y308{bottom:44.865005px;}
.y3ff{bottom:45.540024px;}
.y476{bottom:47.154007px;}
.y20a{bottom:48.419998px;}
.y3de{bottom:48.773998px;}
.y24b{bottom:49.494003px;}
.y263{bottom:49.500011px;}
.y22f{bottom:49.673996px;}
.y26c{bottom:51.839996px;}
.y1e5{bottom:51.869980px;}
.y443{bottom:54.359985px;}
.y418{bottom:54.405029px;}
.y406{bottom:55.980011px;}
.y3ed{bottom:56.160004px;}
.y47c{bottom:56.189987px;}
.y31b{bottom:56.879997px;}
.y325{bottom:57.779995px;}
.y3a5{bottom:58.499977px;}
.y41e{bottom:60.479965px;}
.y3b5{bottom:61.065033px;}
.y244{bottom:61.379974px;}
.y24e{bottom:61.380066px;}
.y287{bottom:61.424995px;}
.y215{bottom:61.559967px;}
.y1e1{bottom:61.560013px;}
.y1df{bottom:61.560059px;}
.y23c{bottom:61.589996px;}
.y27c{bottom:61.590042px;}
.y25d{bottom:61.604988px;}
.y21c{bottom:61.605011px;}
.y200{bottom:63.000000px;}
.y1f8{bottom:63.045044px;}
.y1f2{bottom:63.180084px;}
.y439{bottom:64.080001px;}
.y2e0{bottom:64.125000px;}
.y345{bottom:64.793987px;}
.y2c8{bottom:64.793999px;}
.y29c{bottom:64.799973px;}
.y2f0{bottom:64.799995px;}
.y2bd{bottom:64.800018px;}
.y375{bottom:64.830002px;}
.y3cc{bottom:64.844971px;}
.y2d0{bottom:64.845016px;}
.y2f9{bottom:64.973991px;}
.y2ad{bottom:64.974003px;}
.y2b8{bottom:64.979965px;}
.y2a5{bottom:64.979989px;}
.y2d4{bottom:64.980011px;}
.y2ed{bottom:65.009995px;}
.y2f4{bottom:65.024986px;}
.y35e{bottom:65.024998px;}
.y307{bottom:65.025009px;}
.y3fe{bottom:65.700027px;}
.y475{bottom:67.313999px;}
.y18{bottom:67.860285px;}
.y3dd{bottom:68.934002px;}
.y262{bottom:71.279995px;}
.y26e{bottom:71.280029px;}
.y22e{bottom:71.454002px;}
.y209{bottom:72.179993px;}
.y19{bottom:72.180285px;}
.y26b{bottom:73.440033px;}
.y442{bottom:74.519989px;}
.y417{bottom:74.565033px;}
.y405{bottom:76.140015px;}
.y3ec{bottom:76.320007px;}
.y47b{bottom:76.349991px;}
.y31a{bottom:77.040001px;}
.y42e{bottom:77.804993px;}
.y324{bottom:77.984997px;}
.y3a4{bottom:78.659981px;}
.y2f1{bottom:80.459999px;}
.y425{bottom:80.490005px;}
.y373{bottom:80.505020px;}
.y2e5{bottom:80.633995px;}
.y37b{bottom:80.640015px;}
.y3b4{bottom:81.224991px;}
.y243{bottom:83.160004px;}
.y27b{bottom:83.190033px;}
.y25c{bottom:83.205002px;}
.y286{bottom:83.205025px;}
.y254{bottom:83.339951px;}
.y1e9{bottom:83.339996px;}
.y21e{bottom:83.340042px;}
.y23b{bottom:83.369980px;}
.y257{bottom:83.370026px;}
.y21b{bottom:83.384949px;}
.y438{bottom:84.239983px;}
.y464{bottom:84.240005px;}
.y2df{bottom:84.285004px;}
.y344{bottom:84.953991px;}
.y2c7{bottom:84.954002px;}
.y29b{bottom:84.959976px;}
.y329{bottom:84.959999px;}
.y303{bottom:84.960022px;}
.y2bc{bottom:84.990005px;}
.y3cb{bottom:85.004974px;}
.y36f{bottom:85.004997px;}
.y3ab{bottom:85.005009px;}
.y2cf{bottom:85.005020px;}
.y45c{bottom:85.133995px;}
.y2ac{bottom:85.134007px;}
.y2b7{bottom:85.139969px;}
.y2a4{bottom:85.139993px;}
.y2d3{bottom:85.140015px;}
.y44c{bottom:85.169975px;}
.y2ec{bottom:85.169998px;}
.y366{bottom:85.184967px;}
.y2f3{bottom:85.184990px;}
.y35d{bottom:85.185002px;}
.y37a{bottom:85.185013px;}
.y3fd{bottom:85.860031px;}
.y1ff{bottom:86.759995px;}
.y1f7{bottom:86.804993px;}
.y474{bottom:87.474002px;}
.y3dc{bottom:88.913990px;}
.y22d{bottom:93.053993px;}
.y261{bottom:93.060001px;}
.y441{bottom:94.679993px;}
.y416{bottom:94.725037px;}
.y26a{bottom:95.219971px;}
.y208{bottom:95.759995px;}
.y404{bottom:96.330002px;}
.y3eb{bottom:96.480011px;}
.y47a{bottom:96.509995px;}
.y319{bottom:97.229988px;}
.y42d{bottom:97.964996px;}
.y323{bottom:97.965008px;}
.y3a3{bottom:98.819984px;}
.y427{bottom:100.614006px;}
.y382{bottom:100.620003px;}
.y2bf{bottom:100.650009px;}
.y37f{bottom:100.664978px;}
.y371{bottom:100.665000px;}
.y43d{bottom:100.665024px;}
.y2fb{bottom:100.793987px;}
.y2d5{bottom:100.799973px;}
.y40a{bottom:100.799995px;}
.y2fd{bottom:100.800018px;}
.y468{bottom:100.830002px;}
.y2f7{bottom:100.844994px;}
.y3b3{bottom:101.205002px;}
.y437{bottom:104.399986px;}
.y38c{bottom:104.400009px;}
.y2de{bottom:104.444984px;}
.y463{bottom:104.445007px;}
.y214{bottom:104.939941px;}
.y242{bottom:104.939987px;}
.y26d{bottom:104.940033px;}
.y27a{bottom:104.970016px;}
.y21a{bottom:104.984985px;}
.y285{bottom:104.985008px;}
.y44f{bottom:105.113995px;}
.y32f{bottom:105.114006px;}
.y238{bottom:105.119980px;}
.y35b{bottom:105.120003px;}
.y3e2{bottom:105.120026px;}
.y23a{bottom:105.149963px;}
.y3c0{bottom:105.149986px;}
.y256{bottom:105.150009px;}
.y343{bottom:105.158993px;}
.y2c6{bottom:105.159004px;}
.y365{bottom:105.164978px;}
.y229{bottom:105.165001px;}
.y3aa{bottom:105.165012px;}
.y2ce{bottom:105.165024px;}
.y2ab{bottom:105.294010px;}
.y2b6{bottom:105.299973px;}
.y2a3{bottom:105.299996px;}
.y351{bottom:105.300018px;}
.y44b{bottom:105.329979px;}
.y2eb{bottom:105.330002px;}
.y45b{bottom:105.338996px;}
.y3c8{bottom:105.339008px;}
.y306{bottom:105.344994px;}
.y35c{bottom:105.345005px;}
.y3fc{bottom:106.020035px;}
.y473{bottom:107.634006px;}
.y3db{bottom:109.073994px;}
.y1f6{bottom:110.385040px;}
.y2a6{bottom:110.735996px;}
.y361{bottom:113.255997px;}
.y3d0{bottom:113.976002px;}
.y61{bottom:114.516003px;}
.yd2{bottom:114.516045px;}
.y440{bottom:114.839996px;}
.y260{bottom:114.840008px;}
.y415{bottom:114.885040px;}
.y2f8{bottom:115.596005px;}
.y469{bottom:116.315998px;}
.y403{bottom:116.490005px;}
.y32d{bottom:116.496002px;}
.y3ea{bottom:116.505020px;}
.y479{bottom:116.669998px;}
.y269{bottom:117.000000px;}
.y318{bottom:117.209999px;}
.y2e4{bottom:117.215996px;}
.y322{bottom:118.124989px;}
.y42c{bottom:118.125000px;}
.y151{bottom:118.296000px;}
.y3a2{bottom:119.009972px;}
.y207{bottom:119.520035px;}
.y32c{bottom:120.779984px;}
.y420{bottom:120.809990px;}
.y45d{bottom:120.818985px;}
.y3c2{bottom:120.825005px;}
.y3e7{bottom:120.960022px;}
.y327{bottom:120.990005px;}
.y309{bottom:121.004997px;}
.y360{bottom:121.005009px;}
.y3c3{bottom:121.175995px;}
.y3b2{bottom:121.365005px;}
.y24a{bottom:123.875999px;}
.y38b{bottom:124.560013px;}
.y436{bottom:124.590019px;}
.y462{bottom:124.604965px;}
.y2dd{bottom:124.604988px;}
.y29a{bottom:125.279984px;}
.y35a{bottom:125.280006px;}
.y3e1{bottom:125.280029px;}
.y3bf{bottom:125.309990px;}
.y302{bottom:125.310013px;}
.y342{bottom:125.318996px;}
.y2c5{bottom:125.319008px;}
.y364{bottom:125.324982px;}
.y3a9{bottom:125.324993px;}
.y2cd{bottom:125.325027px;}
.y2aa{bottom:125.454014px;}
.y2b5{bottom:125.459976px;}
.y36c{bottom:125.460022px;}
.y2a2{bottom:125.489984px;}
.y2ea{bottom:125.490005px;}
.y3c7{bottom:125.498989px;}
.y449{bottom:125.504974px;}
.y379{bottom:125.504997px;}
.y3fb{bottom:126.225037px;}
.y241{bottom:126.719971px;}
.y253{bottom:126.720016px;}
.y279{bottom:126.750000px;}
.y284{bottom:126.764992px;}
.y219{bottom:126.765015px;}
.y228{bottom:126.945007px;}
.y44d{bottom:127.655994px;}
.y472{bottom:127.839008px;}
.y3da{bottom:129.278996px;}
.y22c{bottom:129.996002px;}
.y446{bottom:130.500000px;}
.y41b{bottom:130.544998px;}
.y60{bottom:130.896000px;}
.y178{bottom:131.795968px;}
.y150{bottom:131.795974px;}
.y33b{bottom:134.136005px;}
.y5f{bottom:134.675995px;}
.yd1{bottom:134.676000px;}
.y3c5{bottom:136.476002px;}
.y25e{bottom:136.484985px;}
.y402{bottom:136.650009px;}
.y3e9{bottom:136.665024px;}
.y317{bottom:137.370003px;}
.y2c0{bottom:137.375999px;}
.ybb{bottom:137.916000px;}
.y42b{bottom:138.284958px;}
.y321{bottom:138.284993px;}
.y454{bottom:138.285004px;}
.y268{bottom:138.780029px;}
.y3a1{bottom:138.989983px;}
.y3f2{bottom:140.970016px;}
.y383{bottom:140.978989px;}
.y3ac{bottom:140.984997px;}
.y426{bottom:140.985008px;}
.y3b1{bottom:141.525009px;}
.y1f{bottom:141.876000px;}
.y139{bottom:142.235996px;}
.y43{bottom:142.595978px;}
.y413{bottom:142.605000px;}
.y206{bottom:143.280029px;}
.y1c7{bottom:143.315998px;}
.y45a{bottom:144.576004px;}
.y461{bottom:144.584976px;}
.y38a{bottom:144.720016px;}
.y435{bottom:144.750023px;}
.y2dc{bottom:144.764992px;}
.y347{bottom:145.439987px;}
.y38f{bottom:145.440010px;}
.y457{bottom:145.440033px;}
.y359{bottom:145.469994px;}
.y301{bottom:145.470016px;}
.y40b{bottom:145.476002px;}
.y32e{bottom:145.478989px;}
.y341{bottom:145.479000px;}
.y2c4{bottom:145.479012px;}
.y299{bottom:145.484985px;}
.y2e8{bottom:145.485031px;}
.y2b4{bottom:145.619980px;}
.y36b{bottom:145.620026px;}
.y2a1{bottom:145.649987px;}
.y2a9{bottom:145.658993px;}
.y448{bottom:145.664978px;}
.y421{bottom:146.375999px;}
.y3fa{bottom:146.384995px;}
.y11f{bottom:147.636041px;}
.y471{bottom:147.999012px;}
.y1a7{bottom:148.355999px;}
.yd0{bottom:148.356070px;}
.y283{bottom:148.364983px;}
.y240{bottom:148.500000px;}
.y278{bottom:148.530029px;}
.y218{bottom:148.544952px;}
.y227{bottom:148.544998px;}
.y3d9{bottom:149.438998px;}
.y5e{bottom:150.509995px;}
.y25f{bottom:150.689999px;}
.y408{bottom:152.310013px;}
.y3f0{bottom:152.325027px;}
.y1ad{bottom:154.290000px;}
.y378{bottom:156.629997px;}
.y10c{bottom:157.349999px;}
.y316{bottom:157.530006px;}
.y1c{bottom:157.530150px;}
.y36e{bottom:158.250000px;}
.y42a{bottom:158.444962px;}
.y320{bottom:158.444996px;}
.y453{bottom:158.445007px;}
.y3a0{bottom:159.149986px;}
.y372{bottom:161.099991px;}
.y331{bottom:161.138992px;}
.y43c{bottom:161.139004px;}
.y2d1{bottom:161.144989px;}
.y3b0{bottom:161.685013px;}
.y4a3{bottom:162.029995px;}
.y412{bottom:162.765003px;}
.y460{bottom:164.744980px;}
.y2db{bottom:164.745003px;}
.y389{bottom:164.880020px;}
.y434{bottom:164.909981px;}
.y1c6{bottom:165.089996px;}
.y38e{bottom:165.599968px;}
.y456{bottom:165.599991px;}
.y3be{bottom:165.629997px;}
.y300{bottom:165.630020px;}
.y2c3{bottom:165.638992px;}
.y2a8{bottom:165.639004px;}
.y298{bottom:165.644989px;}
.y36a{bottom:165.779984px;}
.y3c6{bottom:165.818996px;}
.y3f9{bottom:166.365005px;}
.y205{bottom:166.860031px;}
.y5d{bottom:166.890003px;}
.y470{bottom:168.158993px;}
.y11e{bottom:169.409957px;}
.y3d8{bottom:169.599003px;}
.y33a{bottom:169.769989px;}
.y23f{bottom:170.099991px;}
.y277{bottom:170.130020px;}
.y25b{bottom:170.144989px;}
.y282{bottom:170.145012px;}
.y226{bottom:170.325027px;}
.yba{bottom:171.569996px;}
.y42{bottom:173.190082px;}
.y42f{bottom:174.104965px;}
.y31f{bottom:174.105000px;}
.y31e{bottom:174.270000px;}
.yf8{bottom:175.890003px;}
.y138{bottom:176.069996px;}
.y210{bottom:177.689999px;}
.y315{bottom:177.690010px;}
.y10b{bottom:179.130043px;}
.y39f{bottom:179.309990px;}
.y40c{bottom:180.569996px;}
.y458{bottom:181.259995px;}
.y390{bottom:181.290001px;}
.y304{bottom:181.290024px;}
.y3ce{bottom:181.304993px;}
.y3c9{bottom:181.479000px;}
.y3af{bottom:181.845016px;}
.y411{bottom:182.745014px;}
.y5c{bottom:183.450005px;}
.y4a2{bottom:183.990005px;}
.y433{bottom:184.889992px;}
.y2da{bottom:184.904984px;}
.y388{bottom:184.905029px;}
.y3a8{bottom:185.609997px;}
.y350{bottom:185.789978px;}
.y3bd{bottom:185.790001px;}
.y369{bottom:185.790024px;}
.y340{bottom:185.798985px;}
.y2c2{bottom:185.798996px;}
.y2a7{bottom:185.799007px;}
.y297{bottom:185.804993px;}
.y3f8{bottom:186.525009px;}
.y1c5{bottom:186.870003px;}
.y46f{bottom:188.318996px;}
.y249{bottom:189.750000px;}
.y3d7{bottom:189.759007px;}
.y339{bottom:189.929993px;}
.y204{bottom:190.620026px;}
.y17{bottom:191.189715px;}
.ycf{bottom:191.189921px;}
.y11d{bottom:191.190000px;}
.y276{bottom:191.910004px;}
.y281{bottom:191.924995px;}
.y225{bottom:192.105011px;}
.yf7{bottom:197.669998px;}
.y314{bottom:197.850014px;}
.y2d6{bottom:198.570007px;}
.y39e{bottom:199.469994px;}
.y5b{bottom:199.830002px;}
.y10a{bottom:200.910086px;}
.y2af{bottom:201.459011px;}
.y3ae{bottom:202.005020px;}
.y41{bottom:202.529930px;}
.y3c1{bottom:202.530006px;}
.y410{bottom:202.904995px;}
.y5a{bottom:203.610008px;}
.y432{bottom:205.049995px;}
.y2d9{bottom:205.064987px;}
.y387{bottom:205.065033px;}
.yb9{bottom:205.410004px;}
.y34f{bottom:205.949982px;}
.y3bc{bottom:205.950005px;}
.y368{bottom:205.950027px;}
.y33f{bottom:205.958988px;}
.y2c1{bottom:205.959000px;}
.y44e{bottom:205.959011px;}
.y296{bottom:205.964996px;}
.y3f7{bottom:206.685013px;}
.y1b{bottom:207.749969px;}
.y177{bottom:208.289920px;}
.y46e{bottom:208.479000px;}
.y1c4{bottom:208.650009px;}
.y137{bottom:209.730011px;}
.y9d{bottom:209.909991px;}
.y3d6{bottom:209.918987px;}
.y338{bottom:209.955002px;}
.y20f{bottom:212.610008px;}
.y11c{bottom:212.790036px;}
.y14f{bottom:212.969947px;}
.yce{bottom:212.969964px;}
.y275{bottom:213.690033px;}
.y280{bottom:213.705025px;}
.y224{bottom:213.884995px;}
.y203{bottom:214.380020px;}
.y2f2{bottom:217.110008px;}
.y59{bottom:217.290000px;}
.y3b8{bottom:217.665024px;}
.y305{bottom:217.830002px;}
.y313{bottom:218.010017px;}
.yf6{bottom:219.450005px;}
.y39d{bottom:219.629997px;}
.y451{bottom:221.619015px;}
.y424{bottom:221.625000px;}
.y109{bottom:222.509956px;}
.y40f{bottom:223.064999px;}
.y431{bottom:225.209999px;}
.y2d8{bottom:225.224991px;}
.y386{bottom:225.225037px;}
.y3bb{bottom:225.930016px;}
.y34e{bottom:226.109985px;}
.y33e{bottom:226.118992px;}
.y295{bottom:226.125000px;}
.y3f6{bottom:226.845016px;}
.yb8{bottom:227.190010px;}
.y4a1{bottom:227.730011px;}
.y46d{bottom:228.459011px;}
.y176{bottom:229.889956px;}
.y3d5{bottom:230.078991px;}
.y337{bottom:230.115005px;}
.y1c3{bottom:230.250000px;}
.y136{bottom:231.509995px;}
.ycd{bottom:234.570000px;}
.y11b{bottom:234.570079px;}
.y1a{bottom:235.470000px;}
.y274{bottom:235.470062px;}
.y223{bottom:235.484985px;}
.y27f{bottom:235.485008px;}
.y160{bottom:236.910077px;}
.y202{bottom:238.169998px;}
.y312{bottom:238.170021px;}
.y221{bottom:239.429993px;}
.y39c{bottom:239.790001px;}
.y1a6{bottom:240.870003px;}
.y380{bottom:241.589996px;}
.y3ba{bottom:241.590019px;}
.y40e{bottom:243.225002px;}
.y108{bottom:244.289999px;}
.y20e{bottom:245.370003px;}
.y45f{bottom:245.384995px;}
.y385{bottom:245.385040px;}
.y2d7{bottom:245.414978px;}
.y247{bottom:246.089996px;}
.y33d{bottom:246.099003px;}
.y34d{bottom:246.269989px;}
.y2b3{bottom:246.284958px;}
.y14e{bottom:246.629969px;}
.y409{bottom:246.855011px;}
.y3f5{bottom:247.005020px;}
.y46c{bottom:248.618992px;}
.yb7{bottom:248.790000px;}
.y4a0{bottom:249.690010px;}
.y3d4{bottom:250.238995px;}
.y356{bottom:250.244980px;}
.y336{bottom:250.275009px;}
.yf5{bottom:253.110008px;}
.y11a{bottom:256.349957px;}
.y9c{bottom:256.350027px;}
.y273{bottom:257.070007px;}
.ycc{bottom:257.250000px;}
.y222{bottom:257.265015px;}
.y381{bottom:258.195007px;}
.y311{bottom:258.330025px;}
.y15f{bottom:258.689954px;}
.y367{bottom:259.634995px;}
.y38d{bottom:259.815010px;}
.y39b{bottom:259.950005px;}
.y43b{bottom:261.030006px;}
.y465{bottom:261.044998px;}
.y2e3{bottom:261.074982px;}
.y1a5{bottom:262.650009px;}
.y40d{bottom:263.414989px;}
.y175{bottom:263.729985px;}
.y1c2{bottom:264.089996px;}
.y33c{bottom:266.258984px;}
.y459{bottom:266.294998px;}
.y34c{bottom:266.429993px;}
.y2b2{bottom:266.444962px;}
.y3f4{bottom:267.165024px;}
.y14d{bottom:268.410012px;}
.y46b{bottom:268.779018px;}
.y3d3{bottom:270.398998px;}
.y355{bottom:270.404984px;}
.y335{bottom:270.435013px;}
.yb6{bottom:270.570007px;}
.y58{bottom:271.290000px;}
.y49f{bottom:271.650009px;}
.y20b{bottom:272.190010px;}
.yf4{bottom:274.889992px;}
.y480{bottom:275.655006px;}
.y119{bottom:278.130000px;}
.y107{bottom:278.130028px;}
.y9b{bottom:278.130070px;}
.y328{bottom:278.355011px;}
.y310{bottom:278.535027px;}
.y272{bottom:278.850037px;}
.y39a{bottom:280.110008px;}
.y15e{bottom:280.289990px;}
.y25a{bottom:281.910004px;}
.y400{bottom:282.825027px;}
.y1a4{bottom:284.250000px;}
.y174{bottom:285.510028px;}
.y1c1{bottom:285.870003px;}
.y34b{bottom:286.589996px;}
.y182{bottom:287.130002px;}
.y46a{bottom:288.939022px;}
.y3d2{bottom:290.379009px;}
.y354{bottom:290.564987px;}
.y334{bottom:290.594971px;}
.y47f{bottom:292.035004px;}
.yb5{bottom:292.349991px;}
.y16{bottom:292.709928px;}
.y49e{bottom:293.610008px;}
.ycb{bottom:293.969945px;}
.y358{bottom:295.995003px;}
.yf3{bottom:296.669998px;}
.y377{bottom:298.514992px;}
.y30f{bottom:298.694984px;}
.y3e5{bottom:299.235008px;}
.y106{bottom:299.730064px;}
.y9a{bottom:299.909948px;}
.y349{bottom:299.955002px;}
.y399{bottom:300.315010px;}
.y118{bottom:300.630000px;}
.y271{bottom:300.675018px;}
.y14c{bottom:302.070034px;}
.y36d{bottom:302.250000px;}
.y477{bottom:304.598980px;}
.y57{bottom:305.129997px;}
.y1a3{bottom:306.030006px;}
.y34a{bottom:306.750000px;}
.y173{bottom:307.110064px;}
.y430{bottom:307.334999px;}
.y1c0{bottom:307.469994px;}
.y41f{bottom:308.235008px;}
.y135{bottom:308.730011px;}
.y3d1{bottom:310.539013px;}
.y353{bottom:310.724991px;}
.y333{bottom:310.754974px;}
.y80{bottom:312.509995px;}
.y2a0{bottom:312.915000px;}
.yb4{bottom:314.129997px;}
.y49d{bottom:315.570007px;}
.y3f{bottom:316.650009px;}
.y246{bottom:317.730011px;}
.yf2{bottom:318.495003px;}
.y2ef{bottom:318.674995px;}
.y428{bottom:319.394989px;}
.y398{bottom:320.474968px;}
.y105{bottom:321.554985px;}
.y99{bottom:321.735034px;}
.y270{bottom:322.455048px;}
.y14b{bottom:323.894954px;}
.y3b9{bottom:324.254997px;}
.y3df{bottom:326.229000px;}
.y357{bottom:326.384995px;}
.y15{bottom:326.595000px;}
.y3e3{bottom:326.775009px;}
.y391{bottom:327.315010px;}
.y1a2{bottom:327.855011px;}
.yca{bottom:327.855017px;}
.y172{bottom:328.935056px;}
.y1bf{bottom:329.294998px;}
.y134{bottom:330.375000px;}
.y27e{bottom:331.049995px;}
.yb3{bottom:335.775009px;}
.y49c{bottom:337.575005px;}
.y181{bottom:337.575074px;}
.y56{bottom:338.834999px;}
.y2ff{bottom:339.554993px;}
.y117{bottom:339.915002px;}
.y397{bottom:340.454979px;}
.y3e4{bottom:342.435013px;}
.y104{bottom:343.335028px;}
.y98{bottom:343.335070px;}
.y14a{bottom:345.674998px;}
.y7f{bottom:346.394989px;}
.y401{bottom:348.375000px;}
.y30a{bottom:349.094994px;}
.y1a1{bottom:349.634995px;}
.yc9{bottom:349.635060px;}
.y44a{bottom:349.995003px;}
.y3e{bottom:350.535004px;}
.y171{bottom:350.714933px;}
.y1be{bottom:351.075005px;}
.yf1{bottom:352.155006px;}
.y245{bottom:352.695007px;}
.yb2{bottom:357.554993px;}
.y30e{bottom:358.995003px;}
.y49b{bottom:359.535004px;}
.y2bb{bottom:359.714996px;}
.y14{bottom:360.254986px;}
.y396{bottom:360.614983px;}
.y103{bottom:365.115071px;}
.y97{bottom:366.014984px;}
.y149{bottom:367.275034px;}
.y7e{bottom:368.174995px;}
.y3f1{bottom:368.535004px;}
.yc8{bottom:371.234930px;}
.y1a0{bottom:371.235008px;}
.y3d{bottom:372.134995px;}
.y170{bottom:372.494977px;}
.y55{bottom:372.495003px;}
.y1bd{bottom:372.855011px;}
.y116{bottom:373.575024px;}
.yf0{bottom:373.934990px;}
.y30d{bottom:379.155006px;}
.yb1{bottom:379.334999px;}
.y23e{bottom:379.695007px;}
.y374{bottom:379.875000px;}
.y395{bottom:380.774986px;}
.y49a{bottom:381.495003px;}
.y201{bottom:385.814987px;}
.y102{bottom:386.714942px;}
.y96{bottom:387.795027px;}
.y148{bottom:389.055077px;}
.y7d{bottom:389.775009px;}
.y1d5{bottom:390.314992px;}
.y19f{bottom:393.015015px;}
.y3c{bottom:393.914978px;}
.y13{bottom:393.915007px;}
.y16f{bottom:394.095013px;}
.yef{bottom:395.535004px;}
.y133{bottom:395.714996px;}
.y30c{bottom:399.315010px;}
.y2e9{bottom:399.855011px;}
.y394{bottom:400.934990px;}
.yb0{bottom:401.115005px;}
.y15d{bottom:401.115062px;}
.y499{bottom:403.455002px;}
.yc7{bottom:405.074959px;}
.y54{bottom:406.335022px;}
.y1bc{bottom:406.515015px;}
.y115{bottom:407.235046px;}
.y101{bottom:408.494985px;}
.y95{bottom:410.294933px;}
.y147{bottom:410.834954px;}
.y7c{bottom:411.554993px;}
.y478{bottom:413.535004px;}
.y19e{bottom:414.794998px;}
.y3b{bottom:415.695007px;}
.y12{bottom:415.695050px;}
.y16e{bottom:415.875056px;}
.y332{bottom:416.775009px;}
.y1ec{bottom:417.134995px;}
.yee{bottom:417.314987px;}
.y30b{bottom:419.475014px;}
.y393{bottom:421.094994px;}
.y466{bottom:421.634995px;}
.yaf{bottom:422.714996px;}
.y15c{bottom:422.894940px;}
.y1d4{bottom:424.155020px;}
.y498{bottom:425.414978px;}
.yc6{bottom:426.855002px;}
.y455{bottom:428.144989px;}
.y1bb{bottom:428.294998px;}
.y132{bottom:429.375000px;}
.y41d{bottom:429.765015px;}
.y100{bottom:431.175015px;}
.y94{bottom:432.074977px;}
.y7b{bottom:433.335022px;}
.y146{bottom:434.775084px;}
.y31d{bottom:435.135017px;}
.y19d{bottom:436.574982px;}
.y114{bottom:436.575060px;}
.y3a{bottom:437.474991px;}
.y16d{bottom:437.654933px;}
.y180{bottom:438.734981px;}
.y53{bottom:439.994980px;}
.y43e{bottom:440.205002px;}
.y3cf{bottom:440.925018px;}
.y392{bottom:441.254997px;}
.y384{bottom:441.824982px;}
.y15b{bottom:444.494976px;}
.yae{bottom:444.494980px;}
.y497{bottom:447.375000px;}
.yc5{bottom:448.455038px;}
.y11{bottom:449.535079px;}
.y1ba{bottom:449.894989px;}
.yed{bottom:451.154984px;}
.y7a{bottom:455.115005px;}
.y145{bottom:456.554962px;}
.y3a7{bottom:456.915001px;}
.y1d3{bottom:457.815042px;}
.y352{bottom:457.845016px;}
.y19c{bottom:458.175018px;}
.y16c{bottom:459.434977px;}
.y2d2{bottom:460.365005px;}
.y2b1{bottom:461.085022px;}
.yad{bottom:466.275009px;}
.y15a{bottom:466.275019px;}
.y93{bottom:466.635034px;}
.y17f{bottom:468.074995px;}
.y259{bottom:468.615005px;}
.y496{bottom:469.335022px;}
.yff{bottom:470.234916px;}
.y39{bottom:471.134995px;}
.yec{bottom:472.755020px;}
.y131{bottom:472.935013px;}
.y52{bottom:473.835022px;}
.y294{bottom:474.945007px;}
.y79{bottom:476.714996px;}
.y144{bottom:478.335005px;}
.y19b{bottom:479.955002px;}
.y16b{bottom:481.035013px;}
.yc4{bottom:482.295067px;}
.y10{bottom:483.194935px;}
.y1b9{bottom:483.734985px;}
.y1d2{bottom:487.155056px;}
.yac{bottom:488.054993px;}
.y159{bottom:488.055062px;}
.y92{bottom:488.414912px;}
.y41c{bottom:490.964996px;}
.y495{bottom:491.294998px;}
.y447{bottom:491.685013px;}
.y38{bottom:492.914978px;}
.yeb{bottom:494.535004px;}
.y1e8{bottom:495.074982px;}
.y143{bottom:499.935041px;}
.y3f3{bottom:501.404984px;}
.y19a{bottom:501.734985px;}
.yfe{bottom:504.074945px;}
.yf{bottom:504.974978px;}
.y1b8{bottom:505.515015px;}
.y51{bottom:507.494980px;}
.yab{bottom:509.654984px;}
.y158{bottom:509.834940px;}
.y3e8{bottom:510.224991px;}
.y78{bottom:510.554993px;}
.y220{bottom:513.074982px;}
.y37{bottom:514.695007px;}
.y16a{bottom:514.875041px;}
.yc3{bottom:515.954923px;}
.yea{bottom:516.314987px;}
.y2fe{bottom:521.564987px;}
.y142{bottom:521.714918px;}
.y91{bottom:522.254941px;}
.y45e{bottom:523.185013px;}
.y1b7{bottom:527.115005px;}
.y4f{bottom:529.275009px;}
.y157{bottom:531.434976px;}
.y77{bottom:532.335022px;}
.y494{bottom:535.035004px;}
.y50{bottom:535.214996px;}
.y199{bottom:535.394989px;}
.y36{bottom:536.294998px;}
.y169{bottom:536.654919px;}
.yc2{bottom:537.734966px;}
.ye9{bottom:538.095016px;}
.ye{bottom:538.634991px;}
.y2e7{bottom:541.724991px;}
.y141{bottom:543.494962px;}
.yaa{bottom:543.494980px;}
.y90{bottom:543.854977px;}
.y1b6{bottom:548.894989px;}
.y1ac{bottom:549.974991px;}
.y4e{bottom:551.054993px;}
.y156{bottom:553.215019px;}
.y76{bottom:553.935013px;}
.y493{bottom:556.994980px;}
.y198{bottom:557.175018px;}
.y35{bottom:558.074982px;}
.y168{bottom:558.254955px;}
.y4b9{bottom:559.515015px;}
.y130{bottom:559.875000px;}
.y2cc{bottom:561.884995px;}
.y363{bottom:562.605011px;}
.ya9{bottom:565.994980px;}
.y239{bottom:566.175018px;}
.y8f{bottom:566.535056px;}
.y3ad{bottom:566.564987px;}
.y255{bottom:568.154984px;}
.y429{bottom:569.085022px;}
.y1b5{bottom:570.705002px;}
.yc1{bottom:571.424962px;}
.ye8{bottom:571.785004px;}
.y414{bottom:572.324982px;}
.yd{bottom:572.504993px;}
.y4d{bottom:572.685013px;}
.y155{bottom:575.025036px;}
.y75{bottom:575.744980px;}
.y140{bottom:577.184957px;}
.y197{bottom:578.984985px;}
.y4b8{bottom:579.345016px;}
.y34{bottom:579.884995px;}
.y167{bottom:580.064972px;}
.y12f{bottom:581.505020px;}
.y26f{bottom:582.914978px;}
.y8e{bottom:588.345073px;}
.ya8{bottom:588.705002px;}
.y1b4{bottom:592.484985px;}
.yc0{bottom:593.205005px;}
.ye7{bottom:593.564987px;}
.yc{bottom:594.105029px;}
.y4c{bottom:594.464996px;}
.y1e4{bottom:594.794998px;}
.y154{bottom:596.804914px;}
.y13f{bottom:598.964929px;}
.yfd{bottom:600.764976px;}
.y492{bottom:600.945007px;}
.y4b7{bottom:601.304993px;}
.y33{bottom:601.664978px;}
.y166{bottom:601.845071px;}
.y37c{bottom:602.205002px;}
.y3ca{bottom:602.925018px;}
.y12e{bottom:603.285004px;}
.y74{bottom:609.585022px;}
.y452{bottom:610.125000px;}
.ya7{bottom:611.384995px;}
.y196{bottom:612.644989px;}
.y21f{bottom:612.824982px;}
.y1b3{bottom:614.085022px;}
.ybf{bottom:614.985048px;}
.ye6{bottom:615.345016px;}
.yb{bottom:615.885073px;}
.y4b{bottom:616.244980px;}
.y153{bottom:618.404950px;}
.y13e{bottom:620.744972px;}
.y8d{bottom:622.904965px;}
.y491{bottom:622.904984px;}
.y346{bottom:623.130020px;}
.y32{bottom:623.265015px;}
.y165{bottom:623.624949px;}
.y1ab{bottom:627.224991px;}
.y73{bottom:631.185013px;}
.ya6{bottom:633.884995px;}
.y195{bottom:634.425018px;}
.y1b2{bottom:635.865005px;}
.ybe{bottom:636.765091px;}
.ye5{bottom:636.945007px;}
.y12d{bottom:637.125000px;}
.ya{bottom:637.664950px;}
.y49{bottom:638.025009px;}
.y152{bottom:640.365000px;}
.y13d{bottom:642.525015px;}
.y3e0{bottom:643.289978px;}
.y4a{bottom:643.964996px;}
.y8c{bottom:644.685008px;}
.y490{bottom:644.865005px;}
.y31{bottom:645.044998px;}
.y164{bottom:645.224985px;}
.y4b6{bottom:645.224991px;}
.y1aa{bottom:649.005020px;}
.y1fe{bottom:650.804993px;}
.y72{bottom:652.964996px;}
.y43f{bottom:653.730011px;}
.y194{bottom:656.205002px;}
.ya5{bottom:656.564987px;}
.y12c{bottom:658.904984px;}
.y9{bottom:659.444993px;}
.y48{bottom:659.625000px;}
.y1e3{bottom:663.044998px;}
.y3e6{bottom:663.269989px;}
.y13c{bottom:665.025015px;}
.y8b{bottom:666.465051px;}
.y48f{bottom:666.824982px;}
.y4b5{bottom:667.005020px;}
.y163{bottom:667.904985px;}
.ybd{bottom:670.424947px;}
.ye4{bottom:670.785004px;}
.y71{bottom:674.744980px;}
.y193{bottom:677.984985px;}
.y30{bottom:678.705002px;}
.y47{bottom:681.404984px;}
.y12b{bottom:682.664978px;}
.y2fc{bottom:683.429993px;}
.y237{bottom:687.705002px;}
.y48e{bottom:688.785004px;}
.y4b4{bottom:688.964996px;}
.y1b1{bottom:689.324982px;}
.y252{bottom:689.685013px;}
.ya4{bottom:691.125000px;}
.ye3{bottom:692.564987px;}
.y8{bottom:693.104965px;}
.y70{bottom:696.525009px;}
.ybc{bottom:699.764962px;}
.y8a{bottom:700.125073px;}
.y2f{bottom:701.384995px;}
.y46{bottom:703.185013px;}
.y2e6{bottom:703.589996px;}
.y13b{bottom:704.084969px;}
.y12a{bottom:704.445007px;}
.y162{bottom:706.965000px;}
.y48d{bottom:710.744980px;}
.y4b3{bottom:710.925018px;}
.y192{bottom:711.644989px;}
.y21d{bottom:712.544998px;}
.ye2{bottom:714.164978px;}
.y6f{bottom:718.125000px;}
.y1e0{bottom:719.384995px;}
.y89{bottom:721.904950px;}
.y2cb{bottom:723.750000px;}
.y2e{bottom:724.064987px;}
.y45{bottom:724.964996px;}
.y129{bottom:726.224991px;}
.y7{bottom:726.764986px;}
.y48c{bottom:732.705002px;}
.y293{bottom:732.750000px;}
.y4b2{bottom:732.884995px;}
.y13a{bottom:733.424983px;}
.y161{bottom:733.425015px;}
.y190{bottom:733.425018px;}
.ye1{bottom:735.945007px;}
.y191{bottom:739.365005px;}
.y6e{bottom:739.904984px;}
.y88{bottom:743.684993px;}
.y2b0{bottom:743.910004px;}
.y1d1{bottom:744.585059px;}
.y2d{bottom:745.664978px;}
.ya3{bottom:746.564987px;}
.y128{bottom:748.005020px;}
.y48b{bottom:754.664978px;}
.y4b1{bottom:754.845016px;}
.y18f{bottom:755.025009px;}
.ye0{bottom:757.724991px;}
.y44{bottom:758.625000px;}
.y6{bottom:760.605015px;}
.y6d{bottom:761.685013px;}
.y1fb{bottom:764.384995px;}
.y87{bottom:765.285029px;}
.y292{bottom:767.849991px;}
.ya2{bottom:768.344971px;}
.y481{bottom:769.289978px;}
.y127{bottom:769.785004px;}
.y48a{bottom:776.625000px;}
.y18e{bottom:776.804993px;}
.y1d0{bottom:778.245080px;}
.ydf{bottom:779.504974px;}
.y2c{bottom:780.405029px;}
.y6c{bottom:783.464996px;}
.y86{bottom:787.065073px;}
.ya1{bottom:790.125000px;}
.y126{bottom:791.385040px;}
.y1de{bottom:797.324982px;}
.y489{bottom:798.405029px;}
.y18d{bottom:798.585022px;}
.y4b0{bottom:798.765015px;}
.y1cf{bottom:800.024958px;}
.yde{bottom:801.105011px;}
.y113{bottom:801.105041px;}
.y2b{bottom:802.184967px;}
.y6b{bottom:805.065033px;}
.y236{bottom:809.204956px;}
.ya0{bottom:811.905029px;}
.y217{bottom:812.265015px;}
.y125{bottom:813.164978px;}
.y5{bottom:814.065050px;}
.y18c{bottom:820.410004px;}
.y85{bottom:820.769972px;}
.y4af{bottom:820.769989px;}
.y1ce{bottom:821.850044px;}
.y112{bottom:822.929962px;}
.y1b0{bottom:822.929993px;}
.y2a{bottom:823.829956px;}
.y1f5{bottom:830.625000px;}
.y17e{bottom:832.650019px;}
.y250{bottom:832.785004px;}
.y9f{bottom:833.550018px;}
.ydd{bottom:834.989960px;}
.y6a{bottom:838.949982px;}
.y18b{bottom:842.010040px;}
.y488{bottom:842.370026px;}
.y84{bottom:842.550015px;}
.y4ae{bottom:842.730011px;}
.y1cd{bottom:843.629922px;}
.y1af{bottom:844.710022px;}
.y29{bottom:845.609985px;}
.y4{bottom:853.709982px;}
.y9e{bottom:855.329956px;}
.ydc{bottom:856.769989px;}
.y111{bottom:856.769990px;}
.y81{bottom:858.209835px;}
.y69{bottom:860.550018px;}
.y18a{bottom:863.789978px;}
.y487{bottom:864.329956px;}
.y4ad{bottom:864.690033px;}
.y1cc{bottom:865.229958px;}
.y17d{bottom:866.489882px;}
.y1ae{bottom:866.489960px;}
.y28{bottom:867.390015px;}
.y124{bottom:868.649963px;}
.y1dd{bottom:875.309967px;}
.ydb{bottom:878.370026px;}
.y68{bottom:882.329956px;}
.y189{bottom:885.570007px;}
.y486{bottom:886.289978px;}
.y4ac{bottom:886.649963px;}
.y235{bottom:887.190033px;}
.y17c{bottom:888.089918px;}
.y27{bottom:889.170044px;}
.y123{bottom:890.429993px;}
.y3{bottom:893.309824px;}
.y1cb{bottom:899.069987px;}
.y110{bottom:900.149904px;}
.yda{bottom:900.149963px;}
.y67{bottom:904.109985px;}
.y24f{bottom:904.469971px;}
.y188{bottom:907.350037px;}
.y485{bottom:908.250000px;}
.y4ab{bottom:908.609985px;}
.y291{bottom:908.789978px;}
.y17b{bottom:909.869962px;}
.y26{bottom:910.769989px;}
.y122{bottom:912.210022px;}
.y1ca{bottom:920.850030px;}
.y267{bottom:921.750000px;}
.y10f{bottom:921.929947px;}
.yd9{bottom:921.929993px;}
.y66{bottom:925.890015px;}
.y187{bottom:929.129974px;}
.y484{bottom:930.210022px;}
.y4aa{bottom:930.570007px;}
.y1db{bottom:931.469971px;}
.y17a{bottom:931.650005px;}
.y25{bottom:932.550018px;}
.y121{bottom:933.809967px;}
.y290{bottom:941.550018px;}
.y10e{bottom:943.709990px;}
.yd8{bottom:943.710022px;}
.y65{bottom:947.670044px;}
.y186{bottom:950.730011px;}
.y483{bottom:952.170044px;}
.y4a9{bottom:952.350037px;}
.y24{bottom:954.329956px;}
.y120{bottom:955.589996px;}
.y2{bottom:959.550040px;}
.y234{bottom:965.129974px;}
.y1a9{bottom:965.309967px;}
.yfc{bottom:965.310026px;}
.y1f1{bottom:967.829956px;}
.y64{bottom:969.269989px;}
.y185{bottom:972.510040px;}
.y1c9{bottom:974.129970px;}
.y28f{bottom:974.129974px;}
.y4a8{bottom:974.309967px;}
.y23{bottom:976.109985px;}
.y213{bottom:977.190033px;}
.yd7{bottom:977.370026px;}
.y1a8{bottom:987.089996px;}
.y10d{bottom:987.090070px;}
.y1d8{bottom:987.809967px;}
.y63{bottom:991.050018px;}
.y184{bottom:994.289978px;}
.y4a7{bottom:996.269989px;}
.y22{bottom:997.710022px;}
.yfb{bottom:999.149890px;}
.yd6{bottom:999.149963px;}
.y28e{bottom:1006.890015px;}
.y179{bottom:1008.869947px;}
.y62{bottom:1012.829956px;}
.y4a6{bottom:1018.230011px;}
.yfa{bottom:1020.749926px;}
.yd5{bottom:1020.750000px;}
.y1{bottom:1029.570000px;}
.y482{bottom:1029.570007px;}
.y1c8{bottom:1030.649990px;}
.y24c{bottom:1033.350037px;}
.y233{bottom:1036.769989px;}
.y28d{bottom:1039.649963px;}
.y4a5{bottom:1040.190033px;}
.yf9{bottom:1042.529969px;}
.yd4{bottom:1042.530029px;}
.y183{bottom:1047.570007px;}
.y21{bottom:1051.350037px;}
.y1ee{bottom:1057.829956px;}
.y1d7{bottom:1059.269989px;}
.y4a4{bottom:1062.149963px;}
.yd3{bottom:1064.309967px;}
.y40{bottom:1064.310012px;}
.y232{bottom:1071.690033px;}
.y28c{bottom:1072.410004px;}
.y266{bottom:1076.910004px;}
.y211{bottom:1098.690033px;}
.y28b{bottom:1104.989960px;}
.y1d6{bottom:1116.510040px;}
.y1ed{bottom:1135.410004px;}
.y28a{bottom:1137.780029px;}
.h12{height:24.624000px;}
.hc{height:28.548000px;}
.hb{height:33.115680px;}
.h8{height:33.659565px;}
.h13{height:36.936000px;}
.h7{height:38.254320px;}
.h4c{height:40.319999px;}
.hd{height:42.822000px;}
.h1d{height:45.281250px;}
.hf{height:45.308160px;}
.h1b{height:45.504000px;}
.h20{height:45.904320px;}
.h22{height:47.162880px;}
.h19{height:49.017600px;}
.h78{height:50.011200px;}
.h18{height:52.324066px;}
.h11{height:52.324157px;}
.h3{height:52.528320px;}
.h10{height:53.187840px;}
.h9{height:53.588160px;}
.h15{height:54.432000px;}
.h27{height:55.439999px;}
.h34{height:55.476002px;}
.h3d{height:55.620003px;}
.h40{height:55.656000px;}
.h1a{height:56.592000px;}
.h16{height:56.842560px;}
.h1c{height:56.875394px;}
.h5{height:56.875656px;}
.h4{height:56.875822px;}
.h77{height:57.032640px;}
.h14{height:57.096000px;}
.h79{height:57.280781px;}
.h17{height:57.542400px;}
.h61{height:60.300000px;}
.h50{height:60.480000px;}
.h2c{height:61.379997px;}
.h26{height:61.992000px;}
.h3e{height:65.159998px;}
.h2f{height:65.340002px;}
.ha{height:65.884219px;}
.h2a{height:67.535997px;}
.h1f{height:67.824844px;}
.h33{height:71.613281px;}
.h29{height:77.219999px;}
.h28{height:77.256002px;}
.h56{height:80.459999px;}
.h64{height:80.496002px;}
.h54{height:80.639997px;}
.h1{height:82.123920px;}
.h6{height:83.520450px;}
.h21{height:85.610880px;}
.h2d{height:89.280000px;}
.h1e{height:90.781200px;}
.h2{height:95.350320px;}
.h3f{height:98.819996px;}
.h2b{height:99.000000px;}
.h37{height:99.036003px;}
.h66{height:100.620003px;}
.h4e{height:100.655994px;}
.h52{height:100.799995px;}
.h57{height:100.835999px;}
.h39{height:108.720005px;}
.h30{height:112.859997px;}
.h32{height:112.896000px;}
.h35{height:120.600002px;}
.h3a{height:120.779995px;}
.h3b{height:120.815998px;}
.h70{height:120.959999px;}
.h59{height:120.996002px;}
.h43{height:130.500000px;}
.h74{height:130.536003px;}
.h2e{height:136.476002px;}
.h6e{height:140.939999px;}
.h67{height:140.976002px;}
.h55{height:141.155994px;}
.h41{height:142.379997px;}
.h71{height:152.310000px;}
.h44{height:154.439999px;}
.h5e{height:161.100002px;}
.h51{height:161.129997px;}
.h6c{height:161.279995px;}
.h4a{height:161.310000px;}
.h36{height:164.189999px;}
.h5b{height:174.089996px;}
.h75{height:181.259995px;}
.h58{height:181.290000px;}
.h6b{height:181.470005px;}
.h3c{height:185.759995px;}
.h42{height:185.790000px;}
.h4b{height:201.450005px;}
.h6a{height:217.650009px;}
.h4f{height:221.429993px;}
.h62{height:221.610008px;}
.he{height:221.790165px;}
.h65{height:241.589996px;}
.h49{height:241.769989px;}
.h46{height:251.129997px;}
.h68{height:261.030006px;}
.h53{height:261.075005px;}
.h31{height:264.269989px;}
.h38{height:272.910004px;}
.h73{height:279.075005px;}
.h5d{height:281.910004px;}
.h4d{height:282.089996px;}
.h72{height:282.809990px;}
.h63{height:302.250000px;}
.h76{height:304.589996px;}
.h5f{height:322.275009px;}
.h6d{height:326.235008px;}
.h60{height:326.370003px;}
.h5c{height:326.415000px;}
.h45{height:338.115005px;}
.h6f{height:342.434990px;}
.h5a{height:435.134995px;}
.h69{height:456.914978px;}
.h47{height:892.980000px;}
.h48{height:893.250000px;}
.h0{height:1188.000000px;}
.h25{height:1262.879974px;}
.h23{height:1262.880000px;}
.h24{height:1263.000000px;}
.w1{width:24.479550px;}
.w27{width:44.280000px;}
.w26{width:45.000000px;}
.w28{width:56.699999px;}
.w2f{width:57.600002px;}
.w25{width:57.996002px;}
.w2e{width:58.139997px;}
.w2d{width:58.176000px;}
.w29{width:70.199999px;}
.wd{width:90.719999px;}
.wc{width:95.256002px;}
.w11{width:102.419998px;}
.w2a{width:105.695995px;}
.w18{width:127.439999px;}
.w1d{width:132.335999px;}
.w15{width:132.695995px;}
.w21{width:134.136005px;}
.w10{width:135.936000px;}
.w19{width:139.175995px;}
.w2c{width:140.580002px;}
.w1c{width:155.520000px;}
.w14{width:156.240005px;}
.wa{width:156.779995px;}
.w20{width:169.020000px;}
.w12{width:180.390003px;}
.w1a{width:182.549995px;}
.w1e{width:183.810000px;}
.w1f{width:186.330002px;}
.w16{width:187.770000px;}
.w1b{width:203.070007px;}
.w13{width:203.969994px;}
.we{width:216.209999px;}
.wf{width:218.730011px;}
.w17{width:219.089996px;}
.w2b{width:284.969994px;}
.wb{width:340.995003px;}
.w5{width:351.029715px;}
.w6{width:351.075525px;}
.w2{width:677.624355px;}
.w9{width:892.979987px;}
.w7{width:892.980000px;}
.w8{width:893.250000px;}
.w4{width:917.999973px;}
.w3{width:917.999986px;}
.w0{width:918.000000px;}
.w24{width:1262.879974px;}
.w22{width:1262.880000px;}
.w23{width:1263.000000px;}
.x0{left:0.000000px;}
.x1a{left:3.960022px;}
.x3{left:8.099535px;}
.x35{left:9.224991px;}
.x2d{left:10.619991px;}
.x2a{left:11.699993px;}
.x2c{left:12.959999px;}
.x30{left:14.759995px;}
.x33{left:16.739983px;}
.x2e{left:18.000000px;}
.x41{left:19.799995px;}
.x3d{left:25.064941px;}
.x3a{left:26.820007px;}
.x36{left:29.025009px;}
.x3b{left:30.239960px;}
.x38{left:41.220016px;}
.x1{left:108.036000px;}
.xf{left:112.535989px;}
.x42{left:124.559967px;}
.x4{left:132.516015px;}
.x7{left:135.035989px;}
.x43{left:136.835985px;}
.x5{left:140.616000px;}
.x8{left:162.029981px;}
.x2b{left:167.430004px;}
.x2f{left:213.150009px;}
.x12{left:235.650034px;}
.x31{left:258.150009px;}
.x18{left:266.429993px;}
.x1e{left:289.875000px;}
.x24{left:292.035004px;}
.x26{left:293.474991px;}
.x21{left:297.254997px;}
.x32{left:315.570007px;}
.xe{left:324.074991px;}
.x1b{left:325.695007px;}
.xa{left:333.254970px;}
.xb{left:338.474977px;}
.x16{left:340.274930px;}
.x10{left:348.158535px;}
.x34{left:386.490005px;}
.xc{left:414.794971px;}
.xd{left:420.015001px;}
.x2{left:459.074985px;}
.x27{left:480.525009px;}
.x37{left:492.914978px;}
.x1f{left:494.564987px;}
.x25{left:495.824982px;}
.x22{left:517.064987px;}
.x1c{left:545.144989px;}
.x19{left:608.144989px;}
.x23{left:645.224991px;}
.x28{left:650.265015px;}
.x20{left:651.705002px;}
.x1d{left:681.990005px;}
.x14{left:705.029956px;}
.x15{left:710.249986px;}
.x17{left:717.449968px;}
.x13{left:742.470015px;}
.x6{left:750.929979px;}
.x39{left:778.605011px;}
.x9{left:795.389957px;}
.x11{left:810.150050px;}
.x3c{left:919.905029px;}
.x3e{left:978.989960px;}
.x3f{left:1037.850037px;}
.x29{left:1087.170025px;}
.x40{left:1096.170044px;}
@media print{
.v4{vertical-align:-21.119947pt;}
.v2{vertical-align:-13.440000pt;}
.v3{vertical-align:-5.119954pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120126pt;}
.v5{vertical-align:24.320000pt;}
.lsf{letter-spacing:-0.757333pt;}
.ls1b{letter-spacing:-0.741333pt;}
.ls4c{letter-spacing:-0.688000pt;}
.ls29{letter-spacing:-0.682667pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls40{letter-spacing:-0.624000pt;}
.ls47{letter-spacing:-0.618667pt;}
.ls3d{letter-spacing:-0.522133pt;}
.ls8{letter-spacing:-0.412267pt;}
.ls11{letter-spacing:-0.309867pt;}
.ls39{letter-spacing:-0.276267pt;}
.ls33{letter-spacing:-0.258667pt;}
.ls2b{letter-spacing:-0.250667pt;}
.ls34{letter-spacing:-0.222933pt;}
.ls3f{letter-spacing:-0.217600pt;}
.ls36{letter-spacing:-0.212267pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls27{letter-spacing:-0.184533pt;}
.ls38{letter-spacing:-0.171733pt;}
.ls48{letter-spacing:-0.169067pt;}
.ls3c{letter-spacing:-0.146133pt;}
.ls30{letter-spacing:-0.128000pt;}
.ls49{letter-spacing:-0.120533pt;}
.lsa{letter-spacing:-0.117867pt;}
.ls16{letter-spacing:-0.102400pt;}
.ls4b{letter-spacing:-0.084267pt;}
.ls35{letter-spacing:-0.069333pt;}
.ls26{letter-spacing:-0.043520pt;}
.ls42{letter-spacing:-0.040960pt;}
.ls44{letter-spacing:-0.030720pt;}
.ls2a{letter-spacing:-0.023040pt;}
.ls12{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.007680pt;}
.lse{letter-spacing:0.017920pt;}
.lsb{letter-spacing:0.048640pt;}
.ls13{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.074293pt;}
.ls32{letter-spacing:0.096422pt;}
.ls3e{letter-spacing:0.102400pt;}
.ls37{letter-spacing:0.115200pt;}
.ls1a{letter-spacing:0.117701pt;}
.ls19{letter-spacing:0.117783pt;}
.ls2c{letter-spacing:0.117864pt;}
.ls9{letter-spacing:0.117867pt;}
.ls3a{letter-spacing:0.125333pt;}
.ls4a{letter-spacing:0.128013pt;}
.ls22{letter-spacing:0.133061pt;}
.ls4{letter-spacing:0.133067pt;}
.ls1e{letter-spacing:0.133069pt;}
.ls10{letter-spacing:0.133143pt;}
.ls41{letter-spacing:0.133224pt;}
.ls3{letter-spacing:0.133227pt;}
.ls20{letter-spacing:0.136013pt;}
.ls0{letter-spacing:0.164595pt;}
.lsc{letter-spacing:0.169067pt;}
.ls25{letter-spacing:0.186667pt;}
.ls2e{letter-spacing:0.192000pt;}
.ls3b{letter-spacing:0.220267pt;}
.ls1c{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.248474pt;}
.ls2d{letter-spacing:0.256007pt;}
.ls46{letter-spacing:0.263467pt;}
.ls31{letter-spacing:0.278933pt;}
.ls2f{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.348202pt;}
.ls14{letter-spacing:0.348284pt;}
.ls1f{letter-spacing:0.772506pt;}
.ls1d{letter-spacing:0.773094pt;}
.ls23{letter-spacing:1.413172pt;}
.ls28{letter-spacing:3.973231pt;}
.ls24{letter-spacing:4.613123pt;}
.ls17{letter-spacing:52.729984pt;}
.ls6{letter-spacing:52.729993pt;}
.ls45{letter-spacing:751.973569pt;}
.ls21{letter-spacing:752.005382pt;}
.ls18{letter-spacing:754.831787pt;}
.ws7{word-spacing:-58.880000pt;}
.ws0{word-spacing:-24.154880pt;}
.ws2d{word-spacing:-16.396587pt;}
.ws2e{word-spacing:-16.192000pt;}
.ws12{word-spacing:-16.133120pt;}
.ws2f{word-spacing:-16.048853pt;}
.ws2c{word-spacing:-16.012587pt;}
.ws2b{word-spacing:-15.964053pt;}
.ws30{word-spacing:-15.445120pt;}
.ws1a{word-spacing:-14.784000pt;}
.ws19{word-spacing:-14.656000pt;}
.ws1c{word-spacing:-14.464000pt;}
.ws1b{word-spacing:-14.336000pt;}
.ws1d{word-spacing:-13.585813pt;}
.ws11{word-spacing:-13.534613pt;}
.ws14{word-spacing:-13.493547pt;}
.ws23{word-spacing:-13.432213pt;}
.ws6{word-spacing:-13.424747pt;}
.ws21{word-spacing:-13.422080pt;}
.ws25{word-spacing:-13.409280pt;}
.ws8{word-spacing:-13.324800pt;}
.ws29{word-spacing:-13.314560pt;}
.ws1{word-spacing:-13.306880pt;}
.ws17{word-spacing:-13.283840pt;}
.ws2a{word-spacing:-13.276160pt;}
.ws28{word-spacing:-13.265920pt;}
.ws18{word-spacing:-13.263360pt;}
.ws20{word-spacing:-13.237547pt;}
.wsc{word-spacing:-13.204480pt;}
.ws9{word-spacing:-13.189013pt;}
.ws24{word-spacing:-13.160747pt;}
.ws15{word-spacing:-13.122347pt;}
.wsd{word-spacing:-13.114880pt;}
.ws26{word-spacing:-13.089280pt;}
.ws1f{word-spacing:-13.083947pt;}
.ws1e{word-spacing:-13.048213pt;}
.ws22{word-spacing:-13.030613pt;}
.wsa{word-spacing:-12.997013pt;}
.ws5{word-spacing:-12.894613pt;}
.ws27{word-spacing:-12.682880pt;}
.ws16{word-spacing:-12.624213pt;}
.ws10{word-spacing:-12.565547pt;}
.wsb{word-spacing:-10.832000pt;}
.ws3{word-spacing:-9.690880pt;}
.ws2{word-spacing:-8.389120pt;}
.wsf{word-spacing:-7.232000pt;}
.wse{word-spacing:-0.058880pt;}
.ws13{word-spacing:-0.037120pt;}
.ws4{word-spacing:0.000000pt;}
._29{margin-left:-12.769296pt;}
._e{margin-left:-4.309312pt;}
._b{margin-left:-3.192320pt;}
._0{margin-left:-2.257306pt;}
._1{margin-left:-1.282560pt;}
._3{width:1.066906pt;}
._7{width:2.664755pt;}
._6{width:4.226560pt;}
._c{width:5.164060pt;}
._8{width:6.476800pt;}
._d{width:7.994880pt;}
._9{width:9.349120pt;}
._a{width:10.315147pt;}
._14{width:11.481600pt;}
._15{width:12.377190pt;}
._26{width:14.133539pt;}
._13{width:15.132160pt;}
._23{width:16.721920pt;}
._20{width:18.429440pt;}
._1d{width:21.962240pt;}
._19{width:23.905280pt;}
._22{width:25.024000pt;}
._1c{width:27.496960pt;}
._21{width:29.557760pt;}
._5{width:30.755379pt;}
._4{width:31.971405pt;}
._2a{width:33.443840pt;}
._1f{width:35.256320pt;}
._24{width:41.277058pt;}
._18{width:43.571200pt;}
._27{width:45.156272pt;}
._2{width:47.347840pt;}
._1b{width:48.798720pt;}
._25{width:54.000160pt;}
._16{width:55.818240pt;}
._1a{width:56.819200pt;}
._1e{width:62.353920pt;}
._28{width:70.544271pt;}
._12{width:76.246221pt;}
._17{width:77.427200pt;}
._f{width:114.164941pt;}
._10{width:137.069261pt;}
._2b{width:146.507325pt;}
._11{width:149.728461pt;}
.fs4{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs0{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y423{bottom:3.994670pt;}
.y29f{bottom:4.000000pt;}
.y265{bottom:5.440001pt;}
.y231{bottom:5.440002pt;}
.y82{bottom:12.160160pt;}
.y445{bottom:12.479980pt;}
.y41a{bottom:12.640015pt;}
.y83{bottom:13.120120pt;}
.y1f0{bottom:13.440023pt;}
.y1fa{bottom:13.760010pt;}
.y20d{bottom:13.919983pt;}
.y1f4{bottom:13.920003pt;}
.y1fd{bottom:13.920044pt;}
.y3ef{bottom:14.079997pt;}
.y47e{bottom:14.106649pt;}
.y1d{bottom:15.999867pt;}
.y1da{bottom:16.000000pt;}
.y289{bottom:16.039998pt;}
.y1dc{bottom:16.159993pt;}
.y22b{bottom:16.160014pt;}
.y1eb{bottom:16.160034pt;}
.y1e7{bottom:16.186686pt;}
.y3b7{bottom:18.400024pt;}
.y20{bottom:19.040000pt;}
.y1e{bottom:19.839867pt;}
.y2e2{bottom:21.119995pt;}
.y422{bottom:21.754669pt;}
.y330{bottom:21.760000pt;}
.y376{bottom:21.760010pt;}
.y37e{bottom:21.800008pt;}
.y2ca{bottom:21.914663pt;}
.y450{bottom:21.914672pt;}
.y2ba{bottom:21.919963pt;}
.y32b{bottom:21.919983pt;}
.y2fa{bottom:21.919993pt;}
.y29e{bottom:21.920003pt;}
.y467{bottom:21.946655pt;}
.y2f6{bottom:21.960002pt;}
.y230{bottom:24.794668pt;}
.y264{bottom:24.799998pt;}
.y1e6{bottom:26.746663pt;}
.y444{bottom:30.399984pt;}
.y419{bottom:30.560018pt;}
.y407{bottom:31.840007pt;}
.y3ee{bottom:32.000000pt;}
.y47d{bottom:32.026652pt;}
.y31c{bottom:32.639994pt;}
.y1ef{bottom:32.640055pt;}
.y326{bottom:33.439993pt;}
.y3a6{bottom:34.079997pt;}
.y1f9{bottom:34.879964pt;}
.y1fc{bottom:34.880005pt;}
.y20c{bottom:35.039998pt;}
.y1f3{bottom:35.040039pt;}
.y216{bottom:35.359945pt;}
.y1e2{bottom:35.359985pt;}
.y248{bottom:35.360006pt;}
.y1d9{bottom:35.360026pt;}
.y212{bottom:35.386637pt;}
.y27d{bottom:35.386678pt;}
.y288{bottom:35.400004pt;}
.y24d{bottom:35.519938pt;}
.y22a{bottom:35.519999pt;}
.y1ea{bottom:35.520020pt;}
.y23d{bottom:35.546631pt;}
.y258{bottom:35.546672pt;}
.y251{bottom:35.559977pt;}
.y3b6{bottom:36.320028pt;}
.y43a{bottom:39.039998pt;}
.y2e1{bottom:39.079997pt;}
.y2c9{bottom:39.674662pt;}
.y362{bottom:39.674672pt;}
.y348{bottom:39.679972pt;}
.y370{bottom:39.679993pt;}
.y2be{bottom:39.680013pt;}
.y37d{bottom:39.720011pt;}
.y2ae{bottom:39.834666pt;}
.y3c4{bottom:39.834676pt;}
.y2b9{bottom:39.839966pt;}
.y32a{bottom:39.839986pt;}
.y35f{bottom:39.839997pt;}
.y29d{bottom:39.840007pt;}
.y2ee{bottom:39.866659pt;}
.y3cd{bottom:39.879964pt;}
.y2f5{bottom:39.879985pt;}
.y308{bottom:39.880005pt;}
.y3ff{bottom:40.480021pt;}
.y476{bottom:41.914673pt;}
.y20a{bottom:43.039998pt;}
.y3de{bottom:43.354665pt;}
.y24b{bottom:43.994670pt;}
.y263{bottom:44.000010pt;}
.y22f{bottom:44.154663pt;}
.y26c{bottom:46.079997pt;}
.y1e5{bottom:46.106649pt;}
.y443{bottom:48.319987pt;}
.y418{bottom:48.360026pt;}
.y406{bottom:49.760010pt;}
.y3ed{bottom:49.920003pt;}
.y47c{bottom:49.946655pt;}
.y31b{bottom:50.559998pt;}
.y325{bottom:51.359996pt;}
.y3a5{bottom:51.999980pt;}
.y41e{bottom:53.759969pt;}
.y3b5{bottom:54.280029pt;}
.y244{bottom:54.559977pt;}
.y24e{bottom:54.560059pt;}
.y287{bottom:54.599996pt;}
.y215{bottom:54.719971pt;}
.y1e1{bottom:54.720011pt;}
.y1df{bottom:54.720052pt;}
.y23c{bottom:54.746663pt;}
.y27c{bottom:54.746704pt;}
.y25d{bottom:54.759989pt;}
.y21c{bottom:54.760010pt;}
.y200{bottom:56.000000pt;}
.y1f8{bottom:56.040039pt;}
.y1f2{bottom:56.160075pt;}
.y439{bottom:56.960001pt;}
.y2e0{bottom:57.000000pt;}
.y345{bottom:57.594655pt;}
.y2c8{bottom:57.594666pt;}
.y29c{bottom:57.599976pt;}
.y2f0{bottom:57.599996pt;}
.y2bd{bottom:57.600016pt;}
.y375{bottom:57.626668pt;}
.y3cc{bottom:57.639974pt;}
.y2d0{bottom:57.640015pt;}
.y2f9{bottom:57.754659pt;}
.y2ad{bottom:57.754669pt;}
.y2b8{bottom:57.759969pt;}
.y2a5{bottom:57.759990pt;}
.y2d4{bottom:57.760010pt;}
.y2ed{bottom:57.786662pt;}
.y2f4{bottom:57.799988pt;}
.y35e{bottom:57.799998pt;}
.y307{bottom:57.800008pt;}
.y3fe{bottom:58.400024pt;}
.y475{bottom:59.834666pt;}
.y18{bottom:60.320253pt;}
.y3dd{bottom:61.274668pt;}
.y262{bottom:63.359996pt;}
.y26e{bottom:63.360026pt;}
.y22e{bottom:63.514669pt;}
.y209{bottom:64.159993pt;}
.y19{bottom:64.160253pt;}
.y26b{bottom:65.280029pt;}
.y442{bottom:66.239990pt;}
.y417{bottom:66.280029pt;}
.y405{bottom:67.680013pt;}
.y3ec{bottom:67.840007pt;}
.y47b{bottom:67.866659pt;}
.y31a{bottom:68.480001pt;}
.y42e{bottom:69.159993pt;}
.y324{bottom:69.319998pt;}
.y3a4{bottom:69.919983pt;}
.y2f1{bottom:71.519999pt;}
.y425{bottom:71.546672pt;}
.y373{bottom:71.560018pt;}
.y2e5{bottom:71.674662pt;}
.y37b{bottom:71.680013pt;}
.y3b4{bottom:72.199992pt;}
.y243{bottom:73.920003pt;}
.y27b{bottom:73.946696pt;}
.y25c{bottom:73.960002pt;}
.y286{bottom:73.960022pt;}
.y254{bottom:74.079956pt;}
.y1e9{bottom:74.079997pt;}
.y21e{bottom:74.080037pt;}
.y23b{bottom:74.106649pt;}
.y257{bottom:74.106689pt;}
.y21b{bottom:74.119954pt;}
.y438{bottom:74.879985pt;}
.y464{bottom:74.880005pt;}
.y2df{bottom:74.920003pt;}
.y344{bottom:75.514659pt;}
.y2c7{bottom:75.514669pt;}
.y29b{bottom:75.519979pt;}
.y329{bottom:75.519999pt;}
.y303{bottom:75.520020pt;}
.y2bc{bottom:75.546672pt;}
.y3cb{bottom:75.559977pt;}
.y36f{bottom:75.559998pt;}
.y3ab{bottom:75.560008pt;}
.y2cf{bottom:75.560018pt;}
.y45c{bottom:75.674662pt;}
.y2ac{bottom:75.674672pt;}
.y2b7{bottom:75.679972pt;}
.y2a4{bottom:75.679993pt;}
.y2d3{bottom:75.680013pt;}
.y44c{bottom:75.706645pt;}
.y2ec{bottom:75.706665pt;}
.y366{bottom:75.719971pt;}
.y2f3{bottom:75.719991pt;}
.y35d{bottom:75.720002pt;}
.y37a{bottom:75.720011pt;}
.y3fd{bottom:76.320028pt;}
.y1ff{bottom:77.119995pt;}
.y1f7{bottom:77.159993pt;}
.y474{bottom:77.754668pt;}
.y3dc{bottom:79.034658pt;}
.y22d{bottom:82.714661pt;}
.y261{bottom:82.720001pt;}
.y441{bottom:84.159993pt;}
.y416{bottom:84.200033pt;}
.y26a{bottom:84.639974pt;}
.y208{bottom:85.119995pt;}
.y404{bottom:85.626668pt;}
.y3eb{bottom:85.760010pt;}
.y47a{bottom:85.786662pt;}
.y319{bottom:86.426656pt;}
.y42d{bottom:87.079997pt;}
.y323{bottom:87.080007pt;}
.y3a3{bottom:87.839986pt;}
.y427{bottom:89.434672pt;}
.y382{bottom:89.440002pt;}
.y2bf{bottom:89.466675pt;}
.y37f{bottom:89.479980pt;}
.y371{bottom:89.480000pt;}
.y43d{bottom:89.480021pt;}
.y2fb{bottom:89.594655pt;}
.y2d5{bottom:89.599976pt;}
.y40a{bottom:89.599996pt;}
.y2fd{bottom:89.600016pt;}
.y468{bottom:89.626668pt;}
.y2f7{bottom:89.639994pt;}
.y3b3{bottom:89.960002pt;}
.y437{bottom:92.799988pt;}
.y38c{bottom:92.800008pt;}
.y2de{bottom:92.839986pt;}
.y463{bottom:92.840007pt;}
.y214{bottom:93.279948pt;}
.y242{bottom:93.279989pt;}
.y26d{bottom:93.280029pt;}
.y27a{bottom:93.306681pt;}
.y21a{bottom:93.319987pt;}
.y285{bottom:93.320007pt;}
.y44f{bottom:93.434662pt;}
.y32f{bottom:93.434672pt;}
.y238{bottom:93.439982pt;}
.y35b{bottom:93.440002pt;}
.y3e2{bottom:93.440023pt;}
.y23a{bottom:93.466634pt;}
.y3c0{bottom:93.466654pt;}
.y256{bottom:93.466675pt;}
.y343{bottom:93.474660pt;}
.y2c6{bottom:93.474670pt;}
.y365{bottom:93.479980pt;}
.y229{bottom:93.480001pt;}
.y3aa{bottom:93.480011pt;}
.y2ce{bottom:93.480021pt;}
.y2ab{bottom:93.594676pt;}
.y2b6{bottom:93.599976pt;}
.y2a3{bottom:93.599997pt;}
.y351{bottom:93.600016pt;}
.y44b{bottom:93.626648pt;}
.y2eb{bottom:93.626668pt;}
.y45b{bottom:93.634663pt;}
.y3c8{bottom:93.634674pt;}
.y306{bottom:93.639994pt;}
.y35c{bottom:93.640005pt;}
.y3fc{bottom:94.240031pt;}
.y473{bottom:95.674672pt;}
.y3db{bottom:96.954661pt;}
.y1f6{bottom:98.120036pt;}
.y2a6{bottom:98.431997pt;}
.y361{bottom:100.671997pt;}
.y3d0{bottom:101.312002pt;}
.y61{bottom:101.792002pt;}
.yd2{bottom:101.792040pt;}
.y440{bottom:102.079997pt;}
.y260{bottom:102.080007pt;}
.y415{bottom:102.120036pt;}
.y2f8{bottom:102.752004pt;}
.y469{bottom:103.391998pt;}
.y403{bottom:103.546672pt;}
.y32d{bottom:103.552002pt;}
.y3ea{bottom:103.560018pt;}
.y479{bottom:103.706665pt;}
.y269{bottom:104.000000pt;}
.y318{bottom:104.186666pt;}
.y2e4{bottom:104.191996pt;}
.y322{bottom:104.999990pt;}
.y42c{bottom:105.000000pt;}
.y151{bottom:105.152000pt;}
.y3a2{bottom:105.786641pt;}
.y207{bottom:106.240031pt;}
.y32c{bottom:107.359985pt;}
.y420{bottom:107.386658pt;}
.y45d{bottom:107.394653pt;}
.y3c2{bottom:107.400004pt;}
.y3e7{bottom:107.520020pt;}
.y327{bottom:107.546672pt;}
.y309{bottom:107.559998pt;}
.y360{bottom:107.560008pt;}
.y3c3{bottom:107.711995pt;}
.y3b2{bottom:107.880005pt;}
.y24a{bottom:110.112000pt;}
.y38b{bottom:110.720011pt;}
.y436{bottom:110.746684pt;}
.y462{bottom:110.759969pt;}
.y2dd{bottom:110.759989pt;}
.y29a{bottom:111.359985pt;}
.y35a{bottom:111.360006pt;}
.y3e1{bottom:111.360026pt;}
.y3bf{bottom:111.386658pt;}
.y302{bottom:111.386678pt;}
.y342{bottom:111.394663pt;}
.y2c5{bottom:111.394674pt;}
.y364{bottom:111.399984pt;}
.y3a9{bottom:111.399994pt;}
.y2cd{bottom:111.400024pt;}
.y2aa{bottom:111.514679pt;}
.y2b5{bottom:111.519979pt;}
.y36c{bottom:111.520020pt;}
.y2a2{bottom:111.546652pt;}
.y2ea{bottom:111.546672pt;}
.y3c7{bottom:111.554657pt;}
.y449{bottom:111.559977pt;}
.y379{bottom:111.559998pt;}
.y3fb{bottom:112.200033pt;}
.y241{bottom:112.639974pt;}
.y253{bottom:112.640015pt;}
.y279{bottom:112.666667pt;}
.y284{bottom:112.679993pt;}
.y219{bottom:112.680013pt;}
.y228{bottom:112.840007pt;}
.y44d{bottom:113.471995pt;}
.y472{bottom:113.634674pt;}
.y3da{bottom:114.914663pt;}
.y22c{bottom:115.552002pt;}
.y446{bottom:116.000000pt;}
.y41b{bottom:116.039998pt;}
.y60{bottom:116.352000pt;}
.y178{bottom:117.151972pt;}
.y150{bottom:117.151977pt;}
.y33b{bottom:119.232005pt;}
.y5f{bottom:119.711995pt;}
.yd1{bottom:119.712000pt;}
.y3c5{bottom:121.312002pt;}
.y25e{bottom:121.319987pt;}
.y402{bottom:121.466675pt;}
.y3e9{bottom:121.480021pt;}
.y317{bottom:122.106669pt;}
.y2c0{bottom:122.112000pt;}
.ybb{bottom:122.592000pt;}
.y42b{bottom:122.919963pt;}
.y321{bottom:122.919993pt;}
.y454{bottom:122.920003pt;}
.y268{bottom:123.360026pt;}
.y3a1{bottom:123.546651pt;}
.y3f2{bottom:125.306681pt;}
.y383{bottom:125.314657pt;}
.y3ac{bottom:125.319997pt;}
.y426{bottom:125.320007pt;}
.y3b1{bottom:125.800008pt;}
.y1f{bottom:126.112000pt;}
.y139{bottom:126.431997pt;}
.y43{bottom:126.751981pt;}
.y413{bottom:126.760000pt;}
.y206{bottom:127.360026pt;}
.y1c7{bottom:127.391998pt;}
.y45a{bottom:128.512004pt;}
.y461{bottom:128.519979pt;}
.y38a{bottom:128.640015pt;}
.y435{bottom:128.666687pt;}
.y2dc{bottom:128.679993pt;}
.y347{bottom:129.279989pt;}
.y38f{bottom:129.280009pt;}
.y457{bottom:129.280029pt;}
.y359{bottom:129.306661pt;}
.y301{bottom:129.306681pt;}
.y40b{bottom:129.312002pt;}
.y32e{bottom:129.314657pt;}
.y341{bottom:129.314667pt;}
.y2c4{bottom:129.314677pt;}
.y299{bottom:129.319987pt;}
.y2e8{bottom:129.320028pt;}
.y2b4{bottom:129.439982pt;}
.y36b{bottom:129.440023pt;}
.y2a1{bottom:129.466655pt;}
.y2a9{bottom:129.474660pt;}
.y448{bottom:129.479980pt;}
.y421{bottom:130.112000pt;}
.y3fa{bottom:130.119995pt;}
.y11f{bottom:131.232036pt;}
.y471{bottom:131.554677pt;}
.y1a7{bottom:131.871999pt;}
.yd0{bottom:131.872062pt;}
.y283{bottom:131.879985pt;}
.y240{bottom:132.000000pt;}
.y278{bottom:132.026693pt;}
.y218{bottom:132.039958pt;}
.y227{bottom:132.039998pt;}
.y3d9{bottom:132.834665pt;}
.y5e{bottom:133.786662pt;}
.y25f{bottom:133.946665pt;}
.y408{bottom:135.386678pt;}
.y3f0{bottom:135.400024pt;}
.y1ad{bottom:137.146667pt;}
.y378{bottom:139.226664pt;}
.y10c{bottom:139.866666pt;}
.y316{bottom:140.026672pt;}
.y1c{bottom:140.026800pt;}
.y36e{bottom:140.666667pt;}
.y42a{bottom:140.839966pt;}
.y320{bottom:140.839997pt;}
.y453{bottom:140.840007pt;}
.y3a0{bottom:141.466654pt;}
.y372{bottom:143.199992pt;}
.y331{bottom:143.234660pt;}
.y43c{bottom:143.234670pt;}
.y2d1{bottom:143.239990pt;}
.y3b0{bottom:143.720011pt;}
.y4a3{bottom:144.026662pt;}
.y412{bottom:144.680003pt;}
.y460{bottom:146.439982pt;}
.y2db{bottom:146.440002pt;}
.y389{bottom:146.560018pt;}
.y434{bottom:146.586650pt;}
.y1c6{bottom:146.746663pt;}
.y38e{bottom:147.199972pt;}
.y456{bottom:147.199992pt;}
.y3be{bottom:147.226664pt;}
.y300{bottom:147.226685pt;}
.y2c3{bottom:147.234660pt;}
.y2a8{bottom:147.234670pt;}
.y298{bottom:147.239990pt;}
.y36a{bottom:147.359985pt;}
.y3c6{bottom:147.394663pt;}
.y3f9{bottom:147.880005pt;}
.y205{bottom:148.320028pt;}
.y5d{bottom:148.346670pt;}
.y470{bottom:149.474660pt;}
.y11e{bottom:150.586628pt;}
.y3d8{bottom:150.754669pt;}
.y33a{bottom:150.906657pt;}
.y23f{bottom:151.199992pt;}
.y277{bottom:151.226685pt;}
.y25b{bottom:151.239990pt;}
.y282{bottom:151.240011pt;}
.y226{bottom:151.400024pt;}
.yba{bottom:152.506663pt;}
.y42{bottom:153.946739pt;}
.y42f{bottom:154.759969pt;}
.y31f{bottom:154.760000pt;}
.y31e{bottom:154.906667pt;}
.yf8{bottom:156.346670pt;}
.y138{bottom:156.506663pt;}
.y210{bottom:157.946665pt;}
.y315{bottom:157.946676pt;}
.y10b{bottom:159.226705pt;}
.y39f{bottom:159.386658pt;}
.y40c{bottom:160.506663pt;}
.y458{bottom:161.119995pt;}
.y390{bottom:161.146667pt;}
.y304{bottom:161.146688pt;}
.y3ce{bottom:161.159993pt;}
.y3c9{bottom:161.314667pt;}
.y3af{bottom:161.640015pt;}
.y411{bottom:162.440013pt;}
.y5c{bottom:163.066671pt;}
.y4a2{bottom:163.546672pt;}
.y433{bottom:164.346659pt;}
.y2da{bottom:164.359985pt;}
.y388{bottom:164.360026pt;}
.y3a8{bottom:164.986664pt;}
.y350{bottom:165.146647pt;}
.y3bd{bottom:165.146667pt;}
.y369{bottom:165.146688pt;}
.y340{bottom:165.154653pt;}
.y2c2{bottom:165.154663pt;}
.y2a7{bottom:165.154673pt;}
.y297{bottom:165.159993pt;}
.y3f8{bottom:165.800008pt;}
.y1c5{bottom:166.106669pt;}
.y46f{bottom:167.394663pt;}
.y249{bottom:168.666667pt;}
.y3d7{bottom:168.674672pt;}
.y339{bottom:168.826660pt;}
.y204{bottom:169.440023pt;}
.y17{bottom:169.946413pt;}
.ycf{bottom:169.946596pt;}
.y11d{bottom:169.946667pt;}
.y276{bottom:170.586670pt;}
.y281{bottom:170.599996pt;}
.y225{bottom:170.760010pt;}
.yf7{bottom:175.706665pt;}
.y314{bottom:175.866679pt;}
.y2d6{bottom:176.506673pt;}
.y39e{bottom:177.306661pt;}
.y5b{bottom:177.626668pt;}
.y10a{bottom:178.586743pt;}
.y2af{bottom:179.074677pt;}
.y3ae{bottom:179.560018pt;}
.y41{bottom:180.026605pt;}
.y3c1{bottom:180.026672pt;}
.y410{bottom:180.359996pt;}
.y5a{bottom:180.986674pt;}
.y432{bottom:182.266663pt;}
.y2d9{bottom:182.279989pt;}
.y387{bottom:182.280029pt;}
.yb9{bottom:182.586670pt;}
.y34f{bottom:183.066650pt;}
.y3bc{bottom:183.066671pt;}
.y368{bottom:183.066691pt;}
.y33f{bottom:183.074656pt;}
.y2c1{bottom:183.074666pt;}
.y44e{bottom:183.074677pt;}
.y296{bottom:183.079997pt;}
.y3f7{bottom:183.720011pt;}
.y1b{bottom:184.666639pt;}
.y177{bottom:185.146596pt;}
.y46e{bottom:185.314667pt;}
.y1c4{bottom:185.466675pt;}
.y137{bottom:186.426676pt;}
.y9d{bottom:186.586659pt;}
.y3d6{bottom:186.594655pt;}
.y338{bottom:186.626668pt;}
.y20f{bottom:188.986674pt;}
.y11c{bottom:189.146699pt;}
.y14f{bottom:189.306620pt;}
.yce{bottom:189.306635pt;}
.y275{bottom:189.946696pt;}
.y280{bottom:189.960022pt;}
.y224{bottom:190.119995pt;}
.y203{bottom:190.560018pt;}
.y2f2{bottom:192.986674pt;}
.y59{bottom:193.146667pt;}
.y3b8{bottom:193.480021pt;}
.y305{bottom:193.626668pt;}
.y313{bottom:193.786682pt;}
.yf6{bottom:195.066671pt;}
.y39d{bottom:195.226664pt;}
.y451{bottom:196.994680pt;}
.y424{bottom:197.000000pt;}
.y109{bottom:197.786628pt;}
.y40f{bottom:198.279999pt;}
.y431{bottom:200.186666pt;}
.y2d8{bottom:200.199992pt;}
.y386{bottom:200.200033pt;}
.y3bb{bottom:200.826681pt;}
.y34e{bottom:200.986654pt;}
.y33e{bottom:200.994659pt;}
.y295{bottom:201.000000pt;}
.y3f6{bottom:201.640015pt;}
.yb8{bottom:201.946676pt;}
.y4a1{bottom:202.426676pt;}
.y46d{bottom:203.074677pt;}
.y176{bottom:204.346628pt;}
.y3d5{bottom:204.514659pt;}
.y337{bottom:204.546672pt;}
.y1c3{bottom:204.666667pt;}
.y136{bottom:205.786662pt;}
.ycd{bottom:208.506667pt;}
.y11b{bottom:208.506737pt;}
.y1a{bottom:209.306667pt;}
.y274{bottom:209.306722pt;}
.y223{bottom:209.319987pt;}
.y27f{bottom:209.320007pt;}
.y160{bottom:210.586735pt;}
.y202{bottom:211.706665pt;}
.y312{bottom:211.706685pt;}
.y221{bottom:212.826660pt;}
.y39c{bottom:213.146667pt;}
.y1a6{bottom:214.106669pt;}
.y380{bottom:214.746663pt;}
.y3ba{bottom:214.746684pt;}
.y40e{bottom:216.200002pt;}
.y108{bottom:217.146666pt;}
.y20e{bottom:218.106669pt;}
.y45f{bottom:218.119995pt;}
.y385{bottom:218.120036pt;}
.y2d7{bottom:218.146647pt;}
.y247{bottom:218.746663pt;}
.y33d{bottom:218.754669pt;}
.y34d{bottom:218.906657pt;}
.y2b3{bottom:218.919963pt;}
.y14e{bottom:219.226639pt;}
.y409{bottom:219.426676pt;}
.y3f5{bottom:219.560018pt;}
.y46c{bottom:220.994659pt;}
.yb7{bottom:221.146667pt;}
.y4a0{bottom:221.946676pt;}
.y3d4{bottom:222.434662pt;}
.y356{bottom:222.439982pt;}
.y336{bottom:222.466675pt;}
.yf5{bottom:224.986674pt;}
.y11a{bottom:227.866628pt;}
.y9c{bottom:227.866691pt;}
.y273{bottom:228.506673pt;}
.ycc{bottom:228.666667pt;}
.y222{bottom:228.680013pt;}
.y381{bottom:229.506673pt;}
.y311{bottom:229.626689pt;}
.y15f{bottom:229.946626pt;}
.y367{bottom:230.786662pt;}
.y38d{bottom:230.946676pt;}
.y39b{bottom:231.066671pt;}
.y43b{bottom:232.026672pt;}
.y465{bottom:232.039998pt;}
.y2e3{bottom:232.066650pt;}
.y1a5{bottom:233.466675pt;}
.y40d{bottom:234.146657pt;}
.y175{bottom:234.426653pt;}
.y1c2{bottom:234.746663pt;}
.y33c{bottom:236.674652pt;}
.y459{bottom:236.706665pt;}
.y34c{bottom:236.826660pt;}
.y2b2{bottom:236.839966pt;}
.y3f4{bottom:237.480021pt;}
.y14d{bottom:238.586677pt;}
.y46b{bottom:238.914683pt;}
.y3d3{bottom:240.354665pt;}
.y355{bottom:240.359985pt;}
.y335{bottom:240.386678pt;}
.yb6{bottom:240.506673pt;}
.y58{bottom:241.146667pt;}
.y49f{bottom:241.466675pt;}
.y20b{bottom:241.946676pt;}
.yf4{bottom:244.346659pt;}
.y480{bottom:245.026672pt;}
.y119{bottom:247.226667pt;}
.y107{bottom:247.226692pt;}
.y9b{bottom:247.226729pt;}
.y328{bottom:247.426676pt;}
.y310{bottom:247.586690pt;}
.y272{bottom:247.866699pt;}
.y39a{bottom:248.986674pt;}
.y15e{bottom:249.146658pt;}
.y25a{bottom:250.586670pt;}
.y400{bottom:251.400024pt;}
.y1a4{bottom:252.666667pt;}
.y174{bottom:253.786692pt;}
.y1c1{bottom:254.106669pt;}
.y34b{bottom:254.746663pt;}
.y182{bottom:255.226669pt;}
.y46a{bottom:256.834686pt;}
.y3d2{bottom:258.114675pt;}
.y354{bottom:258.279989pt;}
.y334{bottom:258.306641pt;}
.y47f{bottom:259.586670pt;}
.yb5{bottom:259.866659pt;}
.y16{bottom:260.186603pt;}
.y49e{bottom:260.986674pt;}
.ycb{bottom:261.306618pt;}
.y358{bottom:263.106669pt;}
.yf3{bottom:263.706665pt;}
.y377{bottom:265.346659pt;}
.y30f{bottom:265.506653pt;}
.y3e5{bottom:265.986674pt;}
.y106{bottom:266.426724pt;}
.y9a{bottom:266.586620pt;}
.y349{bottom:266.626668pt;}
.y399{bottom:266.946676pt;}
.y118{bottom:267.226667pt;}
.y271{bottom:267.266683pt;}
.y14c{bottom:268.506697pt;}
.y36d{bottom:268.666667pt;}
.y477{bottom:270.754649pt;}
.y57{bottom:271.226664pt;}
.y1a3{bottom:272.026672pt;}
.y34a{bottom:272.666667pt;}
.y173{bottom:272.986724pt;}
.y430{bottom:273.186666pt;}
.y1c0{bottom:273.306661pt;}
.y41f{bottom:273.986674pt;}
.y135{bottom:274.426676pt;}
.y3d1{bottom:276.034678pt;}
.y353{bottom:276.199992pt;}
.y333{bottom:276.226644pt;}
.y80{bottom:277.786662pt;}
.y2a0{bottom:278.146667pt;}
.yb4{bottom:279.226664pt;}
.y49d{bottom:280.506673pt;}
.y3f{bottom:281.466675pt;}
.y246{bottom:282.426676pt;}
.yf2{bottom:283.106669pt;}
.y2ef{bottom:283.266663pt;}
.y428{bottom:283.906657pt;}
.y398{bottom:284.866638pt;}
.y105{bottom:285.826653pt;}
.y99{bottom:285.986697pt;}
.y270{bottom:286.626709pt;}
.y14b{bottom:287.906626pt;}
.y3b9{bottom:288.226664pt;}
.y3df{bottom:289.981333pt;}
.y357{bottom:290.119995pt;}
.y15{bottom:290.306667pt;}
.y3e3{bottom:290.466675pt;}
.y391{bottom:290.946676pt;}
.y1a2{bottom:291.426676pt;}
.yca{bottom:291.426682pt;}
.y172{bottom:292.386716pt;}
.y1bf{bottom:292.706665pt;}
.y134{bottom:293.666667pt;}
.y27e{bottom:294.266663pt;}
.yb3{bottom:298.466675pt;}
.y49c{bottom:300.066671pt;}
.y181{bottom:300.066733pt;}
.y56{bottom:301.186666pt;}
.y2ff{bottom:301.826660pt;}
.y117{bottom:302.146669pt;}
.y397{bottom:302.626648pt;}
.y3e4{bottom:304.386678pt;}
.y104{bottom:305.186692pt;}
.y98{bottom:305.186729pt;}
.y14a{bottom:307.266665pt;}
.y7f{bottom:307.906657pt;}
.y401{bottom:309.666667pt;}
.y30a{bottom:310.306661pt;}
.y1a1{bottom:310.786662pt;}
.yc9{bottom:310.786720pt;}
.y44a{bottom:311.106669pt;}
.y3e{bottom:311.586670pt;}
.y171{bottom:311.746607pt;}
.y1be{bottom:312.066671pt;}
.yf1{bottom:313.026672pt;}
.y245{bottom:313.506673pt;}
.yb2{bottom:317.826660pt;}
.y30e{bottom:319.106669pt;}
.y49b{bottom:319.586670pt;}
.y2bb{bottom:319.746663pt;}
.y14{bottom:320.226654pt;}
.y396{bottom:320.546651pt;}
.y103{bottom:324.546730pt;}
.y97{bottom:325.346652pt;}
.y149{bottom:326.466697pt;}
.y7e{bottom:327.266663pt;}
.y3f1{bottom:327.586670pt;}
.yc8{bottom:329.986605pt;}
.y1a0{bottom:329.986674pt;}
.y3d{bottom:330.786662pt;}
.y170{bottom:331.106646pt;}
.y55{bottom:331.106669pt;}
.y1bd{bottom:331.426676pt;}
.y116{bottom:332.066688pt;}
.yf0{bottom:332.386658pt;}
.y30d{bottom:337.026672pt;}
.yb1{bottom:337.186666pt;}
.y23e{bottom:337.506673pt;}
.y374{bottom:337.666667pt;}
.y395{bottom:338.466654pt;}
.y49a{bottom:339.106669pt;}
.y201{bottom:342.946655pt;}
.y102{bottom:343.746615pt;}
.y96{bottom:344.706691pt;}
.y148{bottom:345.826735pt;}
.y7d{bottom:346.466675pt;}
.y1d5{bottom:346.946659pt;}
.y19f{bottom:349.346680pt;}
.y3c{bottom:350.146647pt;}
.y13{bottom:350.146673pt;}
.y16f{bottom:350.306678pt;}
.yef{bottom:351.586670pt;}
.y133{bottom:351.746663pt;}
.y30c{bottom:354.946676pt;}
.y2e9{bottom:355.426676pt;}
.y394{bottom:356.386658pt;}
.yb0{bottom:356.546672pt;}
.y15d{bottom:356.546722pt;}
.y499{bottom:358.626668pt;}
.yc7{bottom:360.066630pt;}
.y54{bottom:361.186686pt;}
.y1bc{bottom:361.346680pt;}
.y115{bottom:361.986707pt;}
.y101{bottom:363.106653pt;}
.y95{bottom:364.706607pt;}
.y147{bottom:365.186626pt;}
.y7c{bottom:365.826660pt;}
.y478{bottom:367.586670pt;}
.y19e{bottom:368.706665pt;}
.y3b{bottom:369.506673pt;}
.y12{bottom:369.506711pt;}
.y16e{bottom:369.666716pt;}
.y332{bottom:370.466675pt;}
.y1ec{bottom:370.786662pt;}
.yee{bottom:370.946655pt;}
.y30b{bottom:372.866679pt;}
.y393{bottom:374.306661pt;}
.y466{bottom:374.786662pt;}
.yaf{bottom:375.746663pt;}
.y15c{bottom:375.906613pt;}
.y1d4{bottom:377.026685pt;}
.y498{bottom:378.146647pt;}
.yc6{bottom:379.426669pt;}
.y455{bottom:380.573324pt;}
.y1bb{bottom:380.706665pt;}
.y132{bottom:381.666667pt;}
.y41d{bottom:382.013346pt;}
.y100{bottom:383.266680pt;}
.y94{bottom:384.066646pt;}
.y7b{bottom:385.186686pt;}
.y146{bottom:386.466741pt;}
.y31d{bottom:386.786682pt;}
.y19d{bottom:388.066650pt;}
.y114{bottom:388.066720pt;}
.y3a{bottom:388.866659pt;}
.y16d{bottom:389.026607pt;}
.y180{bottom:389.986650pt;}
.y53{bottom:391.106649pt;}
.y43e{bottom:391.293335pt;}
.y3cf{bottom:391.933350pt;}
.y392{bottom:392.226664pt;}
.y384{bottom:392.733317pt;}
.y15b{bottom:395.106645pt;}
.yae{bottom:395.106649pt;}
.y497{bottom:397.666667pt;}
.yc5{bottom:398.626701pt;}
.y11{bottom:399.586737pt;}
.y1ba{bottom:399.906657pt;}
.yed{bottom:401.026652pt;}
.y7a{bottom:404.546672pt;}
.y145{bottom:405.826633pt;}
.y3a7{bottom:406.146667pt;}
.y1d3{bottom:406.946704pt;}
.y352{bottom:406.973348pt;}
.y19c{bottom:407.266683pt;}
.y16c{bottom:408.386646pt;}
.y2d2{bottom:409.213338pt;}
.y2b1{bottom:409.853353pt;}
.yad{bottom:414.466675pt;}
.y15a{bottom:414.466684pt;}
.y93{bottom:414.786697pt;}
.y17f{bottom:416.066662pt;}
.y259{bottom:416.546672pt;}
.y496{bottom:417.186686pt;}
.yff{bottom:417.986592pt;}
.y39{bottom:418.786662pt;}
.yec{bottom:420.226685pt;}
.y131{bottom:420.386678pt;}
.y52{bottom:421.186686pt;}
.y294{bottom:422.173340pt;}
.y79{bottom:423.746663pt;}
.y144{bottom:425.186671pt;}
.y19b{bottom:426.626668pt;}
.y16b{bottom:427.586678pt;}
.yc4{bottom:428.706726pt;}
.y10{bottom:429.506609pt;}
.y1b9{bottom:429.986654pt;}
.y1d2{bottom:433.026717pt;}
.yac{bottom:433.826660pt;}
.y159{bottom:433.826722pt;}
.y92{bottom:434.146588pt;}
.y41c{bottom:436.413330pt;}
.y495{bottom:436.706665pt;}
.y447{bottom:437.053345pt;}
.y38{bottom:438.146647pt;}
.yeb{bottom:439.586670pt;}
.y1e8{bottom:440.066650pt;}
.y143{bottom:444.386703pt;}
.y3f3{bottom:445.693319pt;}
.y19a{bottom:445.986654pt;}
.yfe{bottom:448.066618pt;}
.yf{bottom:448.866647pt;}
.y1b8{bottom:449.346680pt;}
.y51{bottom:451.106649pt;}
.yab{bottom:453.026652pt;}
.y158{bottom:453.186613pt;}
.y3e8{bottom:453.533325pt;}
.y78{bottom:453.826660pt;}
.y220{bottom:456.066650pt;}
.y37{bottom:457.506673pt;}
.y16a{bottom:457.666703pt;}
.yc3{bottom:458.626598pt;}
.yea{bottom:458.946655pt;}
.y2fe{bottom:463.613322pt;}
.y142{bottom:463.746594pt;}
.y91{bottom:464.226614pt;}
.y45e{bottom:465.053345pt;}
.y1b7{bottom:468.546672pt;}
.y4f{bottom:470.466675pt;}
.y157{bottom:472.386645pt;}
.y77{bottom:473.186686pt;}
.y494{bottom:475.586670pt;}
.y50{bottom:475.746663pt;}
.y199{bottom:475.906657pt;}
.y36{bottom:476.706665pt;}
.y169{bottom:477.026595pt;}
.yc2{bottom:477.986637pt;}
.ye9{bottom:478.306681pt;}
.ye{bottom:478.786659pt;}
.y2e7{bottom:481.533325pt;}
.y141{bottom:483.106633pt;}
.yaa{bottom:483.106649pt;}
.y90{bottom:483.426646pt;}
.y1b6{bottom:487.906657pt;}
.y1ac{bottom:488.866659pt;}
.y4e{bottom:489.826660pt;}
.y156{bottom:491.746684pt;}
.y76{bottom:492.386678pt;}
.y493{bottom:495.106649pt;}
.y198{bottom:495.266683pt;}
.y35{bottom:496.066650pt;}
.y168{bottom:496.226627pt;}
.y4b9{bottom:497.346680pt;}
.y130{bottom:497.666667pt;}
.y2cc{bottom:499.453328pt;}
.y363{bottom:500.093343pt;}
.ya9{bottom:503.106649pt;}
.y239{bottom:503.266683pt;}
.y8f{bottom:503.586716pt;}
.y3ad{bottom:503.613322pt;}
.y255{bottom:505.026652pt;}
.y429{bottom:505.853353pt;}
.y1b5{bottom:507.293335pt;}
.yc1{bottom:507.933299pt;}
.ye8{bottom:508.253337pt;}
.y414{bottom:508.733317pt;}
.yd{bottom:508.893327pt;}
.y4d{bottom:509.053345pt;}
.y155{bottom:511.133365pt;}
.y75{bottom:511.773315pt;}
.y140{bottom:513.053295pt;}
.y197{bottom:514.653320pt;}
.y4b8{bottom:514.973348pt;}
.y34{bottom:515.453328pt;}
.y167{bottom:515.613308pt;}
.y12f{bottom:516.893351pt;}
.y26f{bottom:518.146647pt;}
.y8e{bottom:522.973398pt;}
.ya8{bottom:523.293335pt;}
.y1b4{bottom:526.653320pt;}
.yc0{bottom:527.293338pt;}
.ye7{bottom:527.613322pt;}
.yc{bottom:528.093359pt;}
.y4c{bottom:528.413330pt;}
.y1e4{bottom:528.706665pt;}
.y154{bottom:530.493257pt;}
.y13f{bottom:532.413270pt;}
.yfd{bottom:534.013312pt;}
.y492{bottom:534.173340pt;}
.y4b7{bottom:534.493327pt;}
.y33{bottom:534.813314pt;}
.y166{bottom:534.973397pt;}
.y37c{bottom:535.293335pt;}
.y3ca{bottom:535.933350pt;}
.y12e{bottom:536.253337pt;}
.y74{bottom:541.853353pt;}
.y452{bottom:542.333333pt;}
.ya7{bottom:543.453328pt;}
.y196{bottom:544.573324pt;}
.y21f{bottom:544.733317pt;}
.y1b3{bottom:545.853353pt;}
.ybf{bottom:546.653376pt;}
.ye6{bottom:546.973348pt;}
.yb{bottom:547.453398pt;}
.y4b{bottom:547.773315pt;}
.y153{bottom:549.693289pt;}
.y13e{bottom:551.773308pt;}
.y8d{bottom:553.693302pt;}
.y491{bottom:553.693319pt;}
.y346{bottom:553.893351pt;}
.y32{bottom:554.013346pt;}
.y165{bottom:554.333288pt;}
.y1ab{bottom:557.533325pt;}
.y73{bottom:561.053345pt;}
.ya6{bottom:563.453328pt;}
.y195{bottom:563.933350pt;}
.y1b2{bottom:565.213338pt;}
.ybe{bottom:566.013414pt;}
.ye5{bottom:566.173340pt;}
.y12d{bottom:566.333333pt;}
.ya{bottom:566.813289pt;}
.y49{bottom:567.133341pt;}
.y152{bottom:569.213333pt;}
.y13d{bottom:571.133347pt;}
.y3e0{bottom:571.813314pt;}
.y4a{bottom:572.413330pt;}
.y8c{bottom:573.053340pt;}
.y490{bottom:573.213338pt;}
.y31{bottom:573.373332pt;}
.y164{bottom:573.533320pt;}
.y4b6{bottom:573.533325pt;}
.y1aa{bottom:576.893351pt;}
.y1fe{bottom:578.493327pt;}
.y72{bottom:580.413330pt;}
.y43f{bottom:581.093343pt;}
.y194{bottom:583.293335pt;}
.ya5{bottom:583.613322pt;}
.y12c{bottom:585.693319pt;}
.y9{bottom:586.173327pt;}
.y48{bottom:586.333333pt;}
.y1e3{bottom:589.373332pt;}
.y3e6{bottom:589.573324pt;}
.y13c{bottom:591.133347pt;}
.y8b{bottom:592.413379pt;}
.y48f{bottom:592.733317pt;}
.y4b5{bottom:592.893351pt;}
.y163{bottom:593.693320pt;}
.ybd{bottom:595.933286pt;}
.ye4{bottom:596.253337pt;}
.y71{bottom:599.773315pt;}
.y193{bottom:602.653320pt;}
.y30{bottom:603.293335pt;}
.y47{bottom:605.693319pt;}
.y12b{bottom:606.813314pt;}
.y2fc{bottom:607.493327pt;}
.y237{bottom:611.293335pt;}
.y48e{bottom:612.253337pt;}
.y4b4{bottom:612.413330pt;}
.y1b1{bottom:612.733317pt;}
.y252{bottom:613.053345pt;}
.ya4{bottom:614.333333pt;}
.ye3{bottom:615.613322pt;}
.y8{bottom:616.093302pt;}
.y70{bottom:619.133341pt;}
.ybc{bottom:622.013299pt;}
.y8a{bottom:622.333398pt;}
.y2f{bottom:623.453328pt;}
.y46{bottom:625.053345pt;}
.y2e6{bottom:625.413330pt;}
.y13b{bottom:625.853306pt;}
.y12a{bottom:626.173340pt;}
.y162{bottom:628.413333pt;}
.y48d{bottom:631.773315pt;}
.y4b3{bottom:631.933350pt;}
.y192{bottom:632.573324pt;}
.y21d{bottom:633.373332pt;}
.ye2{bottom:634.813314pt;}
.y6f{bottom:638.333333pt;}
.y1e0{bottom:639.453328pt;}
.y89{bottom:641.693289pt;}
.y2cb{bottom:643.333333pt;}
.y2e{bottom:643.613322pt;}
.y45{bottom:644.413330pt;}
.y129{bottom:645.533325pt;}
.y7{bottom:646.013321pt;}
.y48c{bottom:651.293335pt;}
.y293{bottom:651.333333pt;}
.y4b2{bottom:651.453328pt;}
.y13a{bottom:651.933318pt;}
.y161{bottom:651.933347pt;}
.y190{bottom:651.933350pt;}
.ye1{bottom:654.173340pt;}
.y191{bottom:657.213338pt;}
.y6e{bottom:657.693319pt;}
.y88{bottom:661.053327pt;}
.y2b0{bottom:661.253337pt;}
.y1d1{bottom:661.853386pt;}
.y2d{bottom:662.813314pt;}
.ya3{bottom:663.613322pt;}
.y128{bottom:664.893351pt;}
.y48b{bottom:670.813314pt;}
.y4b1{bottom:670.973348pt;}
.y18f{bottom:671.133341pt;}
.ye0{bottom:673.533325pt;}
.y44{bottom:674.333333pt;}
.y6{bottom:676.093347pt;}
.y6d{bottom:677.053345pt;}
.y1fb{bottom:679.453328pt;}
.y87{bottom:680.253359pt;}
.y292{bottom:682.533325pt;}
.ya2{bottom:682.973307pt;}
.y481{bottom:683.813314pt;}
.y127{bottom:684.253337pt;}
.y48a{bottom:690.333333pt;}
.y18e{bottom:690.493327pt;}
.y1d0{bottom:691.773405pt;}
.ydf{bottom:692.893311pt;}
.y2c{bottom:693.693359pt;}
.y6c{bottom:696.413330pt;}
.y86{bottom:699.613398pt;}
.ya1{bottom:702.333333pt;}
.y126{bottom:703.453369pt;}
.y1de{bottom:708.733317pt;}
.y489{bottom:709.693359pt;}
.y18d{bottom:709.853353pt;}
.y4b0{bottom:710.013346pt;}
.y1cf{bottom:711.133296pt;}
.yde{bottom:712.093343pt;}
.y113{bottom:712.093370pt;}
.y2b{bottom:713.053304pt;}
.y6b{bottom:715.613363pt;}
.y236{bottom:719.293294pt;}
.ya0{bottom:721.693359pt;}
.y217{bottom:722.013346pt;}
.y125{bottom:722.813314pt;}
.y5{bottom:723.613378pt;}
.y18c{bottom:729.253337pt;}
.y85{bottom:729.573308pt;}
.y4af{bottom:729.573324pt;}
.y1ce{bottom:730.533373pt;}
.y112{bottom:731.493299pt;}
.y1b0{bottom:731.493327pt;}
.y2a{bottom:732.293294pt;}
.y1f5{bottom:738.333333pt;}
.y17e{bottom:740.133350pt;}
.y250{bottom:740.253337pt;}
.y9f{bottom:740.933350pt;}
.ydd{bottom:742.213298pt;}
.y6a{bottom:745.733317pt;}
.y18b{bottom:748.453369pt;}
.y488{bottom:748.773356pt;}
.y84{bottom:748.933347pt;}
.y4ae{bottom:749.093343pt;}
.y1cd{bottom:749.893264pt;}
.y1af{bottom:750.853353pt;}
.y29{bottom:751.653320pt;}
.y4{bottom:758.853317pt;}
.y9e{bottom:760.293294pt;}
.ydc{bottom:761.573324pt;}
.y111{bottom:761.573325pt;}
.y81{bottom:762.853187pt;}
.y69{bottom:764.933350pt;}
.y18a{bottom:767.813314pt;}
.y487{bottom:768.293294pt;}
.y4ad{bottom:768.613363pt;}
.y1cc{bottom:769.093296pt;}
.y17d{bottom:770.213229pt;}
.y1ae{bottom:770.213298pt;}
.y28{bottom:771.013346pt;}
.y124{bottom:772.133301pt;}
.y1dd{bottom:778.053304pt;}
.ydb{bottom:780.773356pt;}
.y68{bottom:784.293294pt;}
.y189{bottom:787.173340pt;}
.y486{bottom:787.813314pt;}
.y4ac{bottom:788.133301pt;}
.y235{bottom:788.613363pt;}
.y17c{bottom:789.413261pt;}
.y27{bottom:790.373372pt;}
.y123{bottom:791.493327pt;}
.y3{bottom:794.053177pt;}
.y1cb{bottom:799.173322pt;}
.y110{bottom:800.133248pt;}
.yda{bottom:800.133301pt;}
.y67{bottom:803.653320pt;}
.y24f{bottom:803.973307pt;}
.y188{bottom:806.533366pt;}
.y485{bottom:807.333333pt;}
.y4ab{bottom:807.653320pt;}
.y291{bottom:807.813314pt;}
.y17b{bottom:808.773299pt;}
.y26{bottom:809.573324pt;}
.y122{bottom:810.853353pt;}
.y1ca{bottom:818.533360pt;}
.y267{bottom:819.333333pt;}
.y10f{bottom:819.493286pt;}
.yd9{bottom:819.493327pt;}
.y66{bottom:823.013346pt;}
.y187{bottom:825.893311pt;}
.y484{bottom:826.853353pt;}
.y4aa{bottom:827.173340pt;}
.y1db{bottom:827.973307pt;}
.y17a{bottom:828.133338pt;}
.y25{bottom:828.933350pt;}
.y121{bottom:830.053304pt;}
.y290{bottom:836.933350pt;}
.y10e{bottom:838.853325pt;}
.yd8{bottom:838.853353pt;}
.y65{bottom:842.373372pt;}
.y186{bottom:845.093343pt;}
.y483{bottom:846.373372pt;}
.y4a9{bottom:846.533366pt;}
.y24{bottom:848.293294pt;}
.y120{bottom:849.413330pt;}
.y2{bottom:852.933369pt;}
.y234{bottom:857.893311pt;}
.y1a9{bottom:858.053304pt;}
.yfc{bottom:858.053357pt;}
.y1f1{bottom:860.293294pt;}
.y64{bottom:861.573324pt;}
.y185{bottom:864.453369pt;}
.y1c9{bottom:865.893307pt;}
.y28f{bottom:865.893311pt;}
.y4a8{bottom:866.053304pt;}
.y23{bottom:867.653320pt;}
.y213{bottom:868.613363pt;}
.yd7{bottom:868.773356pt;}
.y1a8{bottom:877.413330pt;}
.y10d{bottom:877.413395pt;}
.y1d8{bottom:878.053304pt;}
.y63{bottom:880.933350pt;}
.y184{bottom:883.813314pt;}
.y4a7{bottom:885.573324pt;}
.y22{bottom:886.853353pt;}
.yfb{bottom:888.133235pt;}
.yd6{bottom:888.133301pt;}
.y28e{bottom:895.013346pt;}
.y179{bottom:896.773286pt;}
.y62{bottom:900.293294pt;}
.y4a6{bottom:905.093343pt;}
.yfa{bottom:907.333267pt;}
.yd5{bottom:907.333333pt;}
.y1{bottom:915.173333pt;}
.y482{bottom:915.173340pt;}
.y1c8{bottom:916.133325pt;}
.y24c{bottom:918.533366pt;}
.y233{bottom:921.573324pt;}
.y28d{bottom:924.133301pt;}
.y4a5{bottom:924.613363pt;}
.yf9{bottom:926.693306pt;}
.yd4{bottom:926.693359pt;}
.y183{bottom:931.173340pt;}
.y21{bottom:934.533366pt;}
.y1ee{bottom:940.293294pt;}
.y1d7{bottom:941.573324pt;}
.y4a4{bottom:944.133301pt;}
.yd3{bottom:946.053304pt;}
.y40{bottom:946.053344pt;}
.y232{bottom:952.613363pt;}
.y28c{bottom:953.253337pt;}
.y266{bottom:957.253337pt;}
.y211{bottom:976.613363pt;}
.y28b{bottom:982.213298pt;}
.y1d6{bottom:992.453369pt;}
.y1ed{bottom:1009.253337pt;}
.y28a{bottom:1011.360026pt;}
.h12{height:21.888000pt;}
.hc{height:25.376000pt;}
.hb{height:29.436160pt;}
.h8{height:29.919613pt;}
.h13{height:32.832000pt;}
.h7{height:34.003840pt;}
.h4c{height:35.839999pt;}
.hd{height:38.064000pt;}
.h1d{height:40.250000pt;}
.hf{height:40.273920pt;}
.h1b{height:40.448000pt;}
.h20{height:40.803840pt;}
.h22{height:41.922560pt;}
.h19{height:43.571200pt;}
.h78{height:44.454400pt;}
.h18{height:46.510281pt;}
.h11{height:46.510362pt;}
.h3{height:46.691840pt;}
.h10{height:47.278080pt;}
.h9{height:47.633920pt;}
.h15{height:48.384000pt;}
.h27{height:49.279999pt;}
.h34{height:49.312002pt;}
.h3d{height:49.440002pt;}
.h40{height:49.472000pt;}
.h1a{height:50.304000pt;}
.h16{height:50.526720pt;}
.h1c{height:50.555906pt;}
.h5{height:50.556139pt;}
.h4{height:50.556286pt;}
.h77{height:50.695680pt;}
.h14{height:50.752000pt;}
.h79{height:50.916250pt;}
.h17{height:51.148800pt;}
.h61{height:53.600000pt;}
.h50{height:53.760000pt;}
.h2c{height:54.559998pt;}
.h26{height:55.104000pt;}
.h3e{height:57.919998pt;}
.h2f{height:58.080002pt;}
.ha{height:58.563750pt;}
.h2a{height:60.031998pt;}
.h1f{height:60.288750pt;}
.h33{height:63.656250pt;}
.h29{height:68.639999pt;}
.h28{height:68.672002pt;}
.h56{height:71.519999pt;}
.h64{height:71.552002pt;}
.h54{height:71.679998pt;}
.h1{height:72.999040pt;}
.h6{height:74.240400pt;}
.h21{height:76.098560pt;}
.h2d{height:79.360000pt;}
.h1e{height:80.694400pt;}
.h2{height:84.755840pt;}
.h3f{height:87.839996pt;}
.h2b{height:88.000000pt;}
.h37{height:88.032003pt;}
.h66{height:89.440002pt;}
.h4e{height:89.471995pt;}
.h52{height:89.599996pt;}
.h57{height:89.631999pt;}
.h39{height:96.640004pt;}
.h30{height:100.319997pt;}
.h32{height:100.352000pt;}
.h35{height:107.200002pt;}
.h3a{height:107.359996pt;}
.h3b{height:107.391998pt;}
.h70{height:107.519999pt;}
.h59{height:107.552002pt;}
.h43{height:116.000000pt;}
.h74{height:116.032003pt;}
.h2e{height:121.312002pt;}
.h6e{height:125.279999pt;}
.h67{height:125.312002pt;}
.h55{height:125.471995pt;}
.h41{height:126.559998pt;}
.h71{height:135.386667pt;}
.h44{height:137.279999pt;}
.h5e{height:143.200002pt;}
.h51{height:143.226664pt;}
.h6c{height:143.359996pt;}
.h4a{height:143.386667pt;}
.h36{height:145.946665pt;}
.h5b{height:154.746663pt;}
.h75{height:161.119995pt;}
.h58{height:161.146667pt;}
.h6b{height:161.306671pt;}
.h3c{height:165.119995pt;}
.h42{height:165.146667pt;}
.h4b{height:179.066671pt;}
.h6a{height:193.466675pt;}
.h4f{height:196.826660pt;}
.h62{height:196.986674pt;}
.he{height:197.146813pt;}
.h65{height:214.746663pt;}
.h49{height:214.906657pt;}
.h46{height:223.226664pt;}
.h68{height:232.026672pt;}
.h53{height:232.066671pt;}
.h31{height:234.906657pt;}
.h38{height:242.586670pt;}
.h73{height:248.066671pt;}
.h5d{height:250.586670pt;}
.h4d{height:250.746663pt;}
.h72{height:251.386658pt;}
.h63{height:268.666667pt;}
.h76{height:270.746663pt;}
.h5f{height:286.466675pt;}
.h6d{height:289.986674pt;}
.h60{height:290.106669pt;}
.h5c{height:290.146667pt;}
.h45{height:300.546672pt;}
.h6f{height:304.386658pt;}
.h5a{height:386.786662pt;}
.h69{height:406.146647pt;}
.h47{height:793.760000pt;}
.h48{height:794.000000pt;}
.h0{height:1056.000000pt;}
.h25{height:1122.559977pt;}
.h23{height:1122.560000pt;}
.h24{height:1122.666667pt;}
.w1{width:21.759600pt;}
.w27{width:39.360000pt;}
.w26{width:40.000000pt;}
.w28{width:50.399999pt;}
.w2f{width:51.200002pt;}
.w25{width:51.552002pt;}
.w2e{width:51.679998pt;}
.w2d{width:51.712000pt;}
.w29{width:62.399999pt;}
.wd{width:80.639999pt;}
.wc{width:84.672002pt;}
.w11{width:91.039998pt;}
.w2a{width:93.951996pt;}
.w18{width:113.279999pt;}
.w1d{width:117.631999pt;}
.w15{width:117.951996pt;}
.w21{width:119.232005pt;}
.w10{width:120.832000pt;}
.w19{width:123.711995pt;}
.w2c{width:124.960002pt;}
.w1c{width:138.240000pt;}
.w14{width:138.880005pt;}
.wa{width:139.359996pt;}
.w20{width:150.240000pt;}
.w12{width:160.346670pt;}
.w1a{width:162.266663pt;}
.w1e{width:163.386667pt;}
.w1f{width:165.626668pt;}
.w16{width:166.906667pt;}
.w1b{width:180.506673pt;}
.w13{width:181.306661pt;}
.we{width:192.186666pt;}
.wf{width:194.426676pt;}
.w17{width:194.746663pt;}
.w2b{width:253.306661pt;}
.wb{width:303.106669pt;}
.w5{width:312.026413pt;}
.w6{width:312.067133pt;}
.w2{width:602.332760pt;}
.w9{width:793.759988pt;}
.w7{width:793.760000pt;}
.w8{width:794.000000pt;}
.w4{width:815.999976pt;}
.w3{width:815.999988pt;}
.w0{width:816.000000pt;}
.w24{width:1122.559977pt;}
.w22{width:1122.560000pt;}
.w23{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1a{left:3.520020pt;}
.x3{left:7.199587pt;}
.x35{left:8.199992pt;}
.x2d{left:9.439992pt;}
.x2a{left:10.399994pt;}
.x2c{left:11.519999pt;}
.x30{left:13.119995pt;}
.x33{left:14.879985pt;}
.x2e{left:16.000000pt;}
.x41{left:17.599996pt;}
.x3d{left:22.279948pt;}
.x3a{left:23.840007pt;}
.x36{left:25.800008pt;}
.x3b{left:26.879964pt;}
.x38{left:36.640015pt;}
.x1{left:96.032000pt;}
.xf{left:100.031991pt;}
.x42{left:110.719971pt;}
.x4{left:117.792013pt;}
.x7{left:120.031991pt;}
.x43{left:121.631987pt;}
.x5{left:124.992000pt;}
.x8{left:144.026650pt;}
.x2b{left:148.826670pt;}
.x2f{left:189.466675pt;}
.x12{left:209.466697pt;}
.x31{left:229.466675pt;}
.x18{left:236.826660pt;}
.x1e{left:257.666667pt;}
.x24{left:259.586670pt;}
.x26{left:260.866659pt;}
.x21{left:264.226664pt;}
.x32{left:280.506673pt;}
.xe{left:288.066659pt;}
.x1b{left:289.506673pt;}
.xa{left:296.226640pt;}
.xb{left:300.866646pt;}
.x16{left:302.466605pt;}
.x10{left:309.474253pt;}
.x34{left:343.546672pt;}
.xc{left:368.706641pt;}
.xd{left:373.346668pt;}
.x2{left:408.066653pt;}
.x27{left:427.133341pt;}
.x37{left:438.146647pt;}
.x1f{left:439.613322pt;}
.x25{left:440.733317pt;}
.x22{left:459.613322pt;}
.x1c{left:484.573324pt;}
.x19{left:540.573324pt;}
.x23{left:573.533325pt;}
.x28{left:578.013346pt;}
.x20{left:579.293335pt;}
.x1d{left:606.213338pt;}
.x14{left:626.693294pt;}
.x15{left:631.333321pt;}
.x17{left:637.733305pt;}
.x13{left:659.973347pt;}
.x6{left:667.493315pt;}
.x39{left:692.093343pt;}
.x9{left:707.013295pt;}
.x11{left:720.133378pt;}
.x3c{left:817.693359pt;}
.x3e{left:870.213298pt;}
.x3f{left:922.533366pt;}
.x29{left:966.373356pt;}
.x40{left:974.373372pt;}
}


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