
/* 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_0e1be1120697.woff")format("woff");}.ff1{font-family:ff1;line-height:1.364746;font-style:normal;font-weight: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_58f97c249ad9.woff")format("woff");}.ff2{font-family:ff2;line-height:1.281250;font-style:normal;font-weight: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_3dfec8978bd2.woff")format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight: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_0854bb80de0c.woff")format("woff");}.ff4{font-family:ff4;line-height:1.364746;font-style:normal;font-weight: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_c36c79d2ce81.woff")format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight: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_e41af17a0d91.woff")format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight: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_6f22c2a67ea8.woff")format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight: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_60d6c5b84495.woff")format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight: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_ef17eacef95a.woff")format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight: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_b4f6014a2536.woff")format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight: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_08fe1e3acd0c.woff")format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_9db0f632a72c.woff")format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_d736702d7a47.woff")format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_ecb77ac05c9f.woff")format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_d736702d7a47.woff")format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_834a823099d0.woff")format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_a3bab0c55609.woff")format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url("fonts/font_0017_9e9ed29892c0.woff")format("woff");}.ff12{font-family:ff12;line-height:1.284668;font-style:normal;font-weight: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_f20022a7e8ad.woff")format("woff");}.ff13{font-family:ff13;line-height:1.281250;font-style:normal;font-weight: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_3c4c80635d4a.woff")format("woff");}.ff14{font-family:ff14;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_081a75e3019e.woff")format("woff");}.ff15{font-family:ff15;line-height:1.284668;font-style:normal;font-weight: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_7c46887d38be.woff")format("woff");}.ff16{font-family:ff16;line-height:1.281250;font-style:normal;font-weight: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_f0a238bf9b10.woff")format("woff");}.ff17{font-family:ff17;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url("fonts/font_0023_9e9ed29892c0.woff")format("woff");}.ff18{font-family:ff18;line-height:1.284668;font-style:normal;font-weight: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_58d591e7ff45.woff")format("woff");}.ff19{font-family:ff19;line-height:1.284668;font-style:normal;font-weight: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_01c847c5f923.woff")format("woff");}.ff1a{font-family:ff1a;line-height:1.284668;font-style:normal;font-weight: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_ebb09ba305cd.woff")format("woff");}.ff1b{font-family:ff1b;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url("fonts/font_0027_bf8d84cce471.woff")format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_87e4764fabc8.woff")format("woff");}.ff1d{font-family:ff1d;line-height:1.284668;font-style:normal;font-weight: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_22af5abd2a81.woff")format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url("fonts/font_0030_08a8255fd11a.woff")format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url("fonts/font_0031_b048f79e21b5.woff")format("woff");}.ff20{font-family:ff20;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m22{transform:matrix(-0.340253,0.005897,-0.008030,-0.249871,0,0);-ms-transform:matrix(-0.340253,0.005897,-0.008030,-0.249871,0,0);-webkit-transform:matrix(-0.340253,0.005897,-0.008030,-0.249871,0,0);}
.m23{transform:matrix(-0.340014,-0.009056,0.012332,-0.249696,0,0);-ms-transform:matrix(-0.340014,-0.009056,0.012332,-0.249696,0,0);-webkit-transform:matrix(-0.340014,-0.009056,0.012332,-0.249696,0,0);}
.m1f{transform:matrix(-0.339001,0.016792,-0.022865,-0.248952,0,0);-ms-transform:matrix(-0.339001,0.016792,-0.022865,-0.248952,0,0);-webkit-transform:matrix(-0.339001,0.016792,-0.022865,-0.248952,0,0);}
.m20{transform:matrix(-0.337402,0.024429,-0.033265,-0.247777,0,0);-ms-transform:matrix(-0.337402,0.024429,-0.033265,-0.247777,0,0);-webkit-transform:matrix(-0.337402,0.024429,-0.033265,-0.247777,0,0);}
.m1d{transform:matrix(-0.331602,0.041535,-0.056559,-0.243518,0,0);-ms-transform:matrix(-0.331602,0.041535,-0.056559,-0.243518,0,0);-webkit-transform:matrix(-0.331602,0.041535,-0.056559,-0.243518,0,0);}
.m21{transform:matrix(-0.311810,0.073680,-0.100332,-0.228984,0,0);-ms-transform:matrix(-0.311810,0.073680,-0.100332,-0.228984,0,0);-webkit-transform:matrix(-0.311810,0.073680,-0.100332,-0.228984,0,0);}
.m1e{transform:matrix(-0.309832,0.076070,-0.103585,-0.227531,0,0);-ms-transform:matrix(-0.309832,0.076070,-0.103585,-0.227531,0,0);-webkit-transform:matrix(-0.309832,0.076070,-0.103585,-0.227531,0,0);}
.m1b{transform:matrix(-0.289185,0.096870,-0.131909,-0.212368,0,0);-ms-transform:matrix(-0.289185,0.096870,-0.131909,-0.212368,0,0);-webkit-transform:matrix(-0.289185,0.096870,-0.131909,-0.212368,0,0);}
.me{transform:matrix(-0.249930,0.005899,-0.005899,-0.249930,0,0);-ms-transform:matrix(-0.249930,0.005899,-0.005899,-0.249930,0,0);-webkit-transform:matrix(-0.249930,0.005899,-0.005899,-0.249930,0,0);}
.mf{transform:matrix(-0.249836,-0.009061,0.009061,-0.249836,0,0);-ms-transform:matrix(-0.249836,-0.009061,0.009061,-0.249836,0,0);-webkit-transform:matrix(-0.249836,-0.009061,0.009061,-0.249836,0,0);}
.mb{transform:matrix(-0.249433,0.016824,-0.016824,-0.249433,0,0);-ms-transform:matrix(-0.249433,0.016824,-0.016824,-0.249433,0,0);-webkit-transform:matrix(-0.249433,0.016824,-0.016824,-0.249433,0,0);}
.mc{transform:matrix(-0.248794,0.024529,-0.024529,-0.248794,0,0);-ms-transform:matrix(-0.248794,0.024529,-0.024529,-0.248794,0,0);-webkit-transform:matrix(-0.248794,0.024529,-0.024529,-0.248794,0,0);}
.m9{transform:matrix(-0.246441,0.042034,-0.042034,-0.246441,0,0);-ms-transform:matrix(-0.246441,0.042034,-0.042034,-0.246441,0,0);-webkit-transform:matrix(-0.246441,0.042034,-0.042034,-0.246441,0,0);}
.md{transform:matrix(-0.237983,0.076576,-0.076576,-0.237983,0,0);-ms-transform:matrix(-0.237983,0.076576,-0.076576,-0.237983,0,0);-webkit-transform:matrix(-0.237983,0.076576,-0.076576,-0.237983,0,0);}
.ma{transform:matrix(-0.237100,0.079269,-0.079269,-0.237100,0,0);-ms-transform:matrix(-0.237100,0.079269,-0.079269,-0.237100,0,0);-webkit-transform:matrix(-0.237100,0.079269,-0.079269,-0.237100,0,0);}
.m7{transform:matrix(-0.227455,0.103751,-0.103751,-0.227455,0,0);-ms-transform:matrix(-0.227455,0.103751,-0.103751,-0.227455,0,0);-webkit-transform:matrix(-0.227455,0.103751,-0.103751,-0.227455,0,0);}
.m27{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.219235,0.120150,-0.120150,0.219235,0,0);-ms-transform:matrix(0.219235,0.120150,-0.120150,0.219235,0,0);-webkit-transform:matrix(0.219235,0.120150,-0.120150,0.219235,0,0);}
.m5{transform:matrix(0.234109,-0.087709,0.087709,0.234109,0,0);-ms-transform:matrix(0.234109,-0.087709,0.087709,0.234109,0,0);-webkit-transform:matrix(0.234109,-0.087709,0.087709,0.234109,0,0);}
.m1{transform:matrix(0.238886,-0.073711,0.073711,0.238886,0,0);-ms-transform:matrix(0.238886,-0.073711,0.073711,0.238886,0,0);-webkit-transform:matrix(0.238886,-0.073711,0.073711,0.238886,0,0);}
.m3{transform:matrix(0.244847,-0.050497,0.050497,0.244847,0,0);-ms-transform:matrix(0.244847,-0.050497,0.050497,0.244847,0,0);-webkit-transform:matrix(0.244847,-0.050497,0.050497,0.244847,0,0);}
.m13{transform:matrix(0.248095,-0.030803,0.030803,0.248095,0,0);-ms-transform:matrix(0.248095,-0.030803,0.030803,0.248095,0,0);-webkit-transform:matrix(0.248095,-0.030803,0.030803,0.248095,0,0);}
.m6{transform:matrix(0.248771,-0.024758,0.024758,0.248771,0,0);-ms-transform:matrix(0.248771,-0.024758,0.024758,0.248771,0,0);-webkit-transform:matrix(0.248771,-0.024758,0.024758,0.248771,0,0);}
.m11{transform:matrix(0.249045,-0.021827,0.021827,0.249045,0,0);-ms-transform:matrix(0.249045,-0.021827,0.021827,0.249045,0,0);-webkit-transform:matrix(0.249045,-0.021827,0.021827,0.249045,0,0);}
.m8{transform:matrix(0.249514,0.015576,-0.015576,0.249514,0,0);-ms-transform:matrix(0.249514,0.015576,-0.015576,0.249514,0,0);-webkit-transform:matrix(0.249514,0.015576,-0.015576,0.249514,0,0);}
.m10{transform:matrix(0.249585,-0.014406,0.014406,0.249585,0,0);-ms-transform:matrix(0.249585,-0.014406,0.014406,0.249585,0,0);-webkit-transform:matrix(0.249585,-0.014406,0.014406,0.249585,0,0);}
.m12{transform:matrix(0.249995,0.001589,-0.001589,0.249995,0,0);-ms-transform:matrix(0.249995,0.001589,-0.001589,0.249995,0,0);-webkit-transform:matrix(0.249995,0.001589,-0.001589,0.249995,0,0);}
.m2{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);}
.m18{transform:matrix(0.272830,0.109803,-0.149522,0.200358,0,0);-ms-transform:matrix(0.272830,0.109803,-0.149522,0.200358,0,0);-webkit-transform:matrix(0.272830,0.109803,-0.149522,0.200358,0,0);}
.m0{transform:matrix(0.283605,-0.026478,0.030260,0.248162,0,0);-ms-transform:matrix(0.283605,-0.026478,0.030260,0.248162,0,0);-webkit-transform:matrix(0.283605,-0.026478,0.030260,0.248162,0,0);}
.m19{transform:matrix(0.303246,-0.083433,0.113611,0.222694,0,0);-ms-transform:matrix(0.303246,-0.083433,0.113611,0.222694,0,0);-webkit-transform:matrix(0.303246,-0.083433,0.113611,0.222694,0,0);}
.m15{transform:matrix(0.313850,-0.071117,0.096842,0.230481,0,0);-ms-transform:matrix(0.313850,-0.071117,0.096842,0.230481,0,0);-webkit-transform:matrix(0.313850,-0.071117,0.096842,0.230481,0,0);}
.m17{transform:matrix(0.327749,-0.049639,0.067595,0.240688,0,0);-ms-transform:matrix(0.327749,-0.049639,0.067595,0.240688,0,0);-webkit-transform:matrix(0.327749,-0.049639,0.067595,0.240688,0,0);}
.m1a{transform:matrix(0.337345,-0.024655,0.033573,0.247735,0,0);-ms-transform:matrix(0.337345,-0.024655,0.033573,0.247735,0,0);-webkit-transform:matrix(0.337345,-0.024655,0.033573,0.247735,0,0);}
.m25{transform:matrix(0.338030,-0.021757,0.029626,0.248238,0,0);-ms-transform:matrix(0.338030,-0.021757,0.029626,0.248238,0,0);-webkit-transform:matrix(0.338030,-0.021757,0.029626,0.248238,0,0);}
.m1c{transform:matrix(0.339206,0.015551,-0.021176,0.249102,0,0);-ms-transform:matrix(0.339206,0.015551,-0.021176,0.249102,0,0);-webkit-transform:matrix(0.339206,0.015551,-0.021176,0.249102,0,0);}
.m24{transform:matrix(0.339383,-0.014386,0.019589,0.249231,0,0);-ms-transform:matrix(0.339383,-0.014386,0.019589,0.249231,0,0);-webkit-transform:matrix(0.339383,-0.014386,0.019589,0.249231,0,0);}
.m26{transform:matrix(0.340416,0.001589,-0.002164,0.249991,0,0);-ms-transform:matrix(0.340416,0.001589,-0.002164,0.249991,0,0);-webkit-transform:matrix(0.340416,0.001589,-0.002164,0.249991,0,0);}
.m16{transform:matrix(0.340429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340429,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.383796,-0.026314,0.040950,0.246623,0,0);-ms-transform:matrix(0.383796,-0.026314,0.040950,0.246623,0,0);-webkit-transform:matrix(0.383796,-0.026314,0.040950,0.246623,0,0);}
.ve{vertical-align:-49.074000px;}
.v12{vertical-align:-30.690000px;}
.vc{vertical-align:-21.240000px;}
.v1{vertical-align:-14.004000px;}
.v6{vertical-align:-11.514000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:11.514000px;}
.va{vertical-align:12.888000px;}
.v2{vertical-align:14.004000px;}
.v10{vertical-align:23.370000px;}
.vd{vertical-align:30.690000px;}
.v9{vertical-align:38.376000px;}
.v4{vertical-align:46.692000px;}
.v8{vertical-align:49.890000px;}
.vb{vertical-align:50.892000px;}
.v5{vertical-align:67.986000px;}
.vf{vertical-align:85.428000px;}
.v11{vertical-align:98.334000px;}
.v3{vertical-align:110.100000px;}
.lsa4{letter-spacing:-0.684492px;}
.lsf{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.000007px;}
.ls1a{letter-spacing:0.000015px;}
.ls1f{letter-spacing:0.000016px;}
.ls24{letter-spacing:0.000019px;}
.ls20{letter-spacing:0.000020px;}
.ls0{letter-spacing:0.000022px;}
.ls12{letter-spacing:0.000024px;}
.lsc{letter-spacing:0.000031px;}
.ls13{letter-spacing:0.000034px;}
.ls11{letter-spacing:0.000035px;}
.ls15{letter-spacing:0.000042px;}
.ls22{letter-spacing:0.000044px;}
.ls29{letter-spacing:0.000045px;}
.ls26{letter-spacing:0.000047px;}
.ls1d{letter-spacing:0.000048px;}
.ls8{letter-spacing:0.000051px;}
.ls27{letter-spacing:0.000054px;}
.ls2a{letter-spacing:0.000055px;}
.ls18{letter-spacing:0.000057px;}
.lsa{letter-spacing:0.000060px;}
.lse{letter-spacing:0.000062px;}
.ls6{letter-spacing:0.000066px;}
.ls17{letter-spacing:0.000069px;}
.lsb{letter-spacing:0.000071px;}
.ls7{letter-spacing:0.000075px;}
.ls2{letter-spacing:0.000077px;}
.ls23{letter-spacing:0.000079px;}
.ls5{letter-spacing:0.000082px;}
.ls28{letter-spacing:0.000086px;}
.ls2b{letter-spacing:0.000089px;}
.ls4{letter-spacing:0.000093px;}
.ls14{letter-spacing:0.000094px;}
.ls2c{letter-spacing:0.000098px;}
.ls1b{letter-spacing:0.000101px;}
.lsd{letter-spacing:0.000106px;}
.ls1c{letter-spacing:0.000110px;}
.ls19{letter-spacing:0.000114px;}
.ls3{letter-spacing:0.000117px;}
.ls16{letter-spacing:0.000119px;}
.ls25{letter-spacing:0.000126px;}
.ls10{letter-spacing:0.000133px;}
.ls1e{letter-spacing:0.000136px;}
.ls9{letter-spacing:0.000139px;}
.ls1{letter-spacing:0.000141px;}
.ls81{letter-spacing:0.001198px;}
.ls3b{letter-spacing:0.002169px;}
.lsa2{letter-spacing:0.005487px;}
.ls66{letter-spacing:0.012524px;}
.ls62{letter-spacing:0.101514px;}
.ls5f{letter-spacing:0.102634px;}
.ls49{letter-spacing:0.107693px;}
.ls51{letter-spacing:0.109519px;}
.ls53{letter-spacing:0.161540px;}
.ls55{letter-spacing:0.199267px;}
.ls6b{letter-spacing:0.205267px;}
.ls6e{letter-spacing:0.205664px;}
.lsa5{letter-spacing:0.216299px;}
.ls9b{letter-spacing:0.218420px;}
.ls65{letter-spacing:0.228076px;}
.ls7c{letter-spacing:0.232480px;}
.ls84{letter-spacing:0.235987px;}
.ls7b{letter-spacing:0.238480px;}
.ls6a{letter-spacing:0.279493px;}
.ls73{letter-spacing:0.281343px;}
.ls75{letter-spacing:0.287343px;}
.lsac{letter-spacing:0.318585px;}
.ls43{letter-spacing:0.345271px;}
.ls39{letter-spacing:0.348729px;}
.ls45{letter-spacing:0.351271px;}
.ls7f{letter-spacing:0.372987px;}
.ls86{letter-spacing:0.377051px;}
.lsa1{letter-spacing:0.467680px;}
.ls4e{letter-spacing:0.468193px;}
.ls3e{letter-spacing:0.492654px;}
.ls4c{letter-spacing:0.496485px;}
.ls38{letter-spacing:0.498654px;}
.ls79{letter-spacing:0.513823px;}
.ls70{letter-spacing:0.562687px;}
.ls71{letter-spacing:0.564258px;}
.ls54{letter-spacing:0.620604px;}
.ls64{letter-spacing:0.646656px;}
.ls5e{letter-spacing:0.657300px;}
.ls83{letter-spacing:0.659178px;}
.ls78{letter-spacing:0.660330px;}
.ls8a{letter-spacing:0.676320px;}
.ls5b{letter-spacing:0.677294px;}
.ls8f{letter-spacing:0.680594px;}
.ls56{letter-spacing:0.683294px;}
.lsa7{letter-spacing:0.711766px;}
.ls8d{letter-spacing:0.717766px;}
.ls50{letter-spacing:0.748380px;}
.ls3c{letter-spacing:0.749009px;}
.ls48{letter-spacing:0.751116px;}
.ls3a{letter-spacing:0.755009px;}
.ls9d{letter-spacing:0.777631px;}
.lsa3{letter-spacing:0.780780px;}
.ls5c{letter-spacing:0.863771px;}
.ls74{letter-spacing:0.892810px;}
.ls90{letter-spacing:0.895438px;}
.ls42{letter-spacing:0.898520px;}
.ls72{letter-spacing:0.898810px;}
.ls3d{letter-spacing:0.935359px;}
.ls9a{letter-spacing:0.936384px;}
.ls7a{letter-spacing:0.941673px;}
.ls37{letter-spacing:0.991308px;}
.ls46{letter-spacing:0.992970px;}
.ls94{letter-spacing:1.001952px;}
.lsae{letter-spacing:1.003148px;}
.ls60{letter-spacing:1.003662px;}
.lsa9{letter-spacing:1.009148px;}
.ls4a{letter-spacing:1.033128px;}
.ls7d{letter-spacing:1.033317px;}
.ls87{letter-spacing:1.036230px;}
.ls77{letter-spacing:1.039317px;}
.ls4d{letter-spacing:1.044534px;}
.lsa0{letter-spacing:1.044569px;}
.ls6c{letter-spacing:1.067542px;}
.ls5d{letter-spacing:1.070508px;}
.ls59{letter-spacing:1.073542px;}
.lsbc{letter-spacing:1.081056px;}
.ls3f{letter-spacing:1.081419px;}
.ls76{letter-spacing:1.082180px;}
.ls88{letter-spacing:1.082376px;}
.ls5a{letter-spacing:1.110829px;}
.ls63{letter-spacing:1.112694px;}
.lsbd{letter-spacing:1.123624px;}
.lsb9{letter-spacing:1.127856px;}
.lsb2{letter-spacing:1.129624px;}
.ls67{letter-spacing:1.160154px;}
.ls4b{letter-spacing:1.201056px;}
.ls40{letter-spacing:1.201461px;}
.lsb5{letter-spacing:1.291170px;}
.lsaa{letter-spacing:1.297170px;}
.ls93{letter-spacing:1.297266px;}
.ls58{letter-spacing:1.297306px;}
.lsbf{letter-spacing:1.297682px;}
.lsad{letter-spacing:1.298482px;}
.lsb6{letter-spacing:1.300560px;}
.lsc0{letter-spacing:1.303682px;}
.lsb4{letter-spacing:1.304482px;}
.ls57{letter-spacing:1.317300px;}
.ls89{letter-spacing:1.318362px;}
.ls7e{letter-spacing:1.320330px;}
.ls6d{letter-spacing:1.323300px;}
.ls41{letter-spacing:1.327266px;}
.ls47{letter-spacing:1.328826px;}
.ls44{letter-spacing:1.333266px;}
.ls82{letter-spacing:1.349035px;}
.ls68{letter-spacing:1.352640px;}
.ls9e{letter-spacing:1.360520px;}
.ls33{letter-spacing:1.394170px;}
.ls52{letter-spacing:1.409142px;}
.ls8e{letter-spacing:1.429531px;}
.ls61{letter-spacing:1.434378px;}
.ls8c{letter-spacing:1.435531px;}
.ls92{letter-spacing:1.454224px;}
.ls85{letter-spacing:1.459422px;}
.ls98{letter-spacing:1.460224px;}
.ls99{letter-spacing:1.463731px;}
.ls4f{letter-spacing:1.465266px;}
.ls69{letter-spacing:1.476564px;}
.lsb8{letter-spacing:1.508862px;}
.lsbb{letter-spacing:1.552228px;}
.ls9f{letter-spacing:1.609780px;}
.ls97{letter-spacing:1.644600px;}
.ls91{letter-spacing:1.650600px;}
.lsa8{letter-spacing:1.655835px;}
.lsb7{letter-spacing:1.659816px;}
.lsab{letter-spacing:1.661835px;}
.ls2e{letter-spacing:1.680303px;}
.lsaf{letter-spacing:1.957682px;}
.ls95{letter-spacing:1.960404px;}
.lsb1{letter-spacing:1.963682px;}
.ls8b{letter-spacing:2.116626px;}
.lsb3{letter-spacing:2.322118px;}
.lsbe{letter-spacing:2.328118px;}
.lsba{letter-spacing:2.461141px;}
.lsb0{letter-spacing:2.467141px;}
.ls80{letter-spacing:2.872228px;}
.ls6f{letter-spacing:3.392303px;}
.ls96{letter-spacing:33.395813px;}
.ls30{letter-spacing:45.950697px;}
.ls9c{letter-spacing:70.502100px;}
.ls31{letter-spacing:81.372277px;}
.ls32{letter-spacing:100.237080px;}
.ls2f{letter-spacing:107.548200px;}
.lsa6{letter-spacing:115.818404px;}
.ls2d{letter-spacing:121.666200px;}
.ls34{letter-spacing:130.015080px;}
.ls35{letter-spacing:718.376100px;}
.ls36{letter-spacing:885.688396px;}
.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;}
}
.ws34{word-spacing:-26.489108px;}
.ws2{word-spacing:-23.477250px;}
.ws32{word-spacing:-22.167450px;}
.ws1{word-spacing:-21.993229px;}
.ws2f{word-spacing:-20.404800px;}
.ws31{word-spacing:-20.394000px;}
.wsc{word-spacing:-19.609650px;}
.ws4{word-spacing:-19.327200px;}
.wsb{word-spacing:-19.055100px;}
.ws7{word-spacing:-18.966900px;}
.wsd{word-spacing:-18.811500px;}
.ws19{word-spacing:-18.662737px;}
.ws8{word-spacing:-18.482550px;}
.ws2b{word-spacing:-18.089400px;}
.ws9{word-spacing:-17.988450px;}
.ws2d{word-spacing:-17.808704px;}
.wsa{word-spacing:-17.687850px;}
.ws3{word-spacing:-17.607900px;}
.ws33{word-spacing:-16.503231px;}
.ws2e{word-spacing:-16.187828px;}
.ws37{word-spacing:-16.136733px;}
.ws22{word-spacing:-15.978531px;}
.ws38{word-spacing:-15.741225px;}
.ws29{word-spacing:-15.662121px;}
.ws21{word-spacing:-14.643033px;}
.ws20{word-spacing:-14.596887px;}
.ws5{word-spacing:-14.495460px;}
.ws10{word-spacing:-14.394402px;}
.ws1e{word-spacing:-14.219835px;}
.ws1f{word-spacing:-14.124915px;}
.ws1a{word-spacing:-11.092022px;}
.wsf{word-spacing:-10.897109px;}
.wse{word-spacing:-8.616387px;}
.ws26{word-spacing:-1.177296px;}
.ws17{word-spacing:-0.912654px;}
.ws35{word-spacing:-0.832542px;}
.ws15{word-spacing:-0.704568px;}
.ws12{word-spacing:-0.536642px;}
.ws18{word-spacing:-0.496485px;}
.ws25{word-spacing:-0.282129px;}
.ws1c{word-spacing:-0.205664px;}
.ws27{word-spacing:-0.094922px;}
.ws0{word-spacing:0.000000px;}
.ws24{word-spacing:0.046143px;}
.ws13{word-spacing:0.170666px;}
.ws16{word-spacing:0.219950px;}
.ws2a{word-spacing:0.246533px;}
.ws23{word-spacing:0.282129px;}
.ws1d{word-spacing:0.317725px;}
.ws14{word-spacing:0.468193px;}
.ws11{word-spacing:0.496485px;}
.ws28{word-spacing:0.676320px;}
.ws1b{word-spacing:0.864846px;}
.ws36{word-spacing:20.083995px;}
.ws30{word-spacing:60.062808px;}
.ws6{word-spacing:72.169620px;}
.ws2c{word-spacing:1188.678600px;}
._5{margin-left:-461.213596px;}
._4{margin-left:-458.544757px;}
._3{margin-left:-2.703204px;}
._1{margin-left:-1.449303px;}
._2{width:1.246899px;}
._6{width:46.140307px;}
._7{width:81.302670px;}
._0{width:583.532854px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:13.671582px;}
.fs28{font-size:13.671812px;}
.fs23{font-size:13.674805px;}
.fs24{font-size:13.679221px;}
.fs26{font-size:13.690923px;}
.fs1d{font-size:13.694207px;}
.fs20{font-size:13.697994px;}
.fs27{font-size:13.715976px;}
.fs21{font-size:13.727688px;}
.fs1b{font-size:13.728702px;}
.fs15{font-size:13.780488px;}
.fs1e{font-size:13.835690px;}
.fs18{font-size:13.907792px;}
.fs16{font-size:14.170157px;}
.fs22{font-size:14.208887px;}
.fs1f{font-size:14.246549px;}
.fs1a{font-size:14.372338px;}
.fs1c{font-size:14.642790px;}
.fs19{font-size:14.959692px;}
.fs25{font-size:23.925269px;}
.fs41{font-size:28.292340px;}
.fs4c{font-size:30.322260px;}
.fs42{font-size:30.573960px;}
.fs4d{font-size:31.640640px;}
.fs45{font-size:36.506220px;}
.fs44{font-size:36.962580px;}
.fs13{font-size:37.045468px;}
.fs8{font-size:37.045475px;}
.fsb{font-size:37.045480px;}
.fsf{font-size:37.045482px;}
.fs9{font-size:37.045486px;}
.fsa{font-size:37.045489px;}
.fs4{font-size:37.045492px;}
.fse{font-size:37.045493px;}
.fs11{font-size:37.045499px;}
.fs7{font-size:37.045507px;}
.fs6{font-size:37.045509px;}
.fs1{font-size:37.045514px;}
.fs3{font-size:37.045522px;}
.fs12{font-size:37.045529px;}
.fsd{font-size:37.045538px;}
.fs5{font-size:37.045541px;}
.fs2{font-size:37.045560px;}
.fsc{font-size:37.045564px;}
.fs0{font-size:37.109275px;}
.fs48{font-size:37.573260px;}
.fs3f{font-size:38.880000px;}
.fs2d{font-size:43.006860px;}
.fs4f{font-size:44.165040px;}
.fs14{font-size:46.306920px;}
.fs40{font-size:47.458080px;}
.fs4e{font-size:48.779340px;}
.fs4a{font-size:52.734420px;}
.fs49{font-size:53.393580px;}
.fs3e{font-size:53.965380px;}
.fs2c{font-size:55.294560px;}
.fs3d{font-size:55.447800px;}
.fs3c{font-size:56.900820px;}
.fs34{font-size:57.981840px;}
.fs51{font-size:59.319180px;}
.fs43{font-size:60.691800px;}
.fs30{font-size:61.559400px;}
.fs47{font-size:63.281400px;}
.fs10{font-size:64.829400px;}
.fs59{font-size:66.502200px;}
.fs2b{font-size:68.422800px;}
.fs46{font-size:68.554800px;}
.fs32{font-size:70.431600px;}
.fs38{font-size:70.751400px;}
.fs53{font-size:70.979400px;}
.fs2e{font-size:71.818800px;}
.fs37{font-size:71.953800px;}
.fs50{font-size:72.357600px;}
.fs54{font-size:72.857400px;}
.fs55{font-size:73.575000px;}
.fs36{font-size:73.930200px;}
.fs29{font-size:74.669400px;}
.fs3b{font-size:75.246000px;}
.fs35{font-size:75.867600px;}
.fs39{font-size:76.220400px;}
.fs33{font-size:77.308800px;}
.fs3a{font-size:78.438600px;}
.fs52{font-size:79.092000px;}
.fs57{font-size:81.576000px;}
.fs56{font-size:81.619200px;}
.fs5a{font-size:83.265000px;}
.fs4b{font-size:87.670800px;}
.fs2a{font-size:87.972600px;}
.fs58{font-size:88.669800px;}
.fs2f{font-size:92.338800px;}
.fs31{font-size:93.909000px;}
.y148{bottom:-0.789000px;}
.y0{bottom:0.000000px;}
.y134{bottom:0.694500px;}
.y3f{bottom:1.614000px;}
.yc6{bottom:1.615500px;}
.y6e{bottom:1.638000px;}
.yca{bottom:1.653000px;}
.y69{bottom:1.660500px;}
.y6c{bottom:1.683000px;}
.y47{bottom:1.690500px;}
.y3b{bottom:1.695000px;}
.y41{bottom:1.753500px;}
.y3d{bottom:1.794000px;}
.y122{bottom:1.809000px;}
.y45{bottom:1.810500px;}
.y4b{bottom:1.845000px;}
.yda{bottom:2.103000px;}
.y118{bottom:2.112000px;}
.y115{bottom:2.113500px;}
.y5e{bottom:2.349000px;}
.y5b{bottom:2.350500px;}
.y150{bottom:2.388000px;}
.y140{bottom:2.464500px;}
.ybc{bottom:2.619000px;}
.yb7{bottom:2.620500px;}
.y121{bottom:2.860500px;}
.y13e{bottom:3.036000px;}
.y11c{bottom:3.037500px;}
.y43{bottom:3.222000px;}
.y193{bottom:3.411000px;}
.ycd{bottom:3.412500px;}
.y130{bottom:3.531000px;}
.y113{bottom:3.532500px;}
.y59{bottom:3.541500px;}
.y57{bottom:3.601500px;}
.y51{bottom:3.759000px;}
.y109{bottom:3.784500px;}
.y10d{bottom:3.786000px;}
.y53{bottom:3.864000px;}
.y4d{bottom:4.095000px;}
.y7e{bottom:4.224000px;}
.y6{bottom:4.374000px;}
.y39{bottom:4.420500px;}
.y35{bottom:4.438500px;}
.y55{bottom:4.495500px;}
.y30{bottom:4.498500px;}
.y4f{bottom:4.524000px;}
.y33{bottom:4.558500px;}
.ye{bottom:4.581000px;}
.y2{bottom:4.594500px;}
.y37{bottom:4.624500px;}
.y8{bottom:4.752000px;}
.y49{bottom:4.756500px;}
.y4{bottom:4.861500px;}
.yc{bottom:4.906500px;}
.y11f{bottom:4.929000px;}
.y7b{bottom:4.992000px;}
.y12{bottom:5.001000px;}
.y175{bottom:5.460000px;}
.y173{bottom:5.461500px;}
.y76{bottom:5.463000px;}
.y181{bottom:5.604000px;}
.y17b{bottom:5.605500px;}
.y84{bottom:5.643000px;}
.y183{bottom:5.661000px;}
.y80{bottom:5.733000px;}
.y70{bottom:6.004500px;}
.y27{bottom:6.366000px;}
.y22{bottom:6.367500px;}
.y74{bottom:6.633000px;}
.y82{bottom:6.961500px;}
.ya{bottom:8.733000px;}
.y20{bottom:9.597000px;}
.y1e{bottom:9.757500px;}
.y18{bottom:10.183500px;}
.y1a{bottom:10.473000px;}
.y14{bottom:11.095500px;}
.y1c{bottom:12.180000px;}
.y16{bottom:12.258000px;}
.y10{bottom:12.888000px;}
.y7d{bottom:14.976000px;}
.y88{bottom:21.031500px;}
.y8a{bottom:21.033000px;}
.y19f{bottom:110.089500px;}
.y1ac{bottom:110.202000px;}
.y194{bottom:110.203500px;}
.yfc{bottom:113.284500px;}
.ydd{bottom:113.740500px;}
.ycb{bottom:120.813000px;}
.y1c9{bottom:122.937000px;}
.y1ee{bottom:126.397500px;}
.y1e5{bottom:126.562500px;}
.ydc{bottom:129.712500px;}
.y1a9{bottom:129.825000px;}
.yc8{bottom:129.826500px;}
.y16c{bottom:135.462000px;}
.y21b{bottom:139.746000px;}
.y210{bottom:140.076000px;}
.y16d{bottom:147.327000px;}
.y154{bottom:148.645500px;}
.y145{bottom:150.952500px;}
.y15d{bottom:172.791000px;}
.y11d{bottom:184.240500px;}
.y168{bottom:187.207500px;}
.y13c{bottom:187.371000px;}
.y1c7{bottom:187.372500px;}
.y1e3{bottom:187.536000px;}
.y14e{bottom:189.184500px;}
.y11a{bottom:190.008000px;}
.y219{bottom:223.536000px;}
.y1d9{bottom:224.976000px;}
.y15c{bottom:227.920500px;}
.y21c{bottom:229.798500px;}
.y1db{bottom:231.238500px;}
.y211{bottom:263.086500px;}
.y1cb{bottom:264.526500px;}
.y15a{bottom:271.056000px;}
.y159{bottom:285.063000px;}
.y212{bottom:290.772000px;}
.y160{bottom:293.745000px;}
.ye8{bottom:295.395000px;}
.y1d2{bottom:296.497500px;}
.y1a8{bottom:298.276500px;}
.y1ad{bottom:302.725500px;}
.y1cc{bottom:305.725500px;}
.y5f{bottom:307.122000px;}
.y65{bottom:307.548000px;}
.y67{bottom:308.830500px;}
.y61{bottom:309.684000px;}
.y63{bottom:310.111500px;}
.y1d3{bottom:310.834500px;}
.y54{bottom:313.873500px;}
.y58{bottom:313.917000px;}
.y52{bottom:314.263500px;}
.y48{bottom:314.731500px;}
.y50{bottom:315.199500px;}
.y167{bottom:315.336000px;}
.y6a{bottom:317.035500px;}
.y56{bottom:317.065500px;}
.y62{bottom:317.374500px;}
.y4e{bottom:317.452500px;}
.y4c{bottom:317.575500px;}
.y1d1{bottom:318.744000px;}
.y16e{bottom:321.433500px;}
.yde{bottom:322.776000px;}
.yfd{bottom:322.890000px;}
.y1a1{bottom:325.770000px;}
.y213{bottom:331.147500px;}
.yb0{bottom:338.682000px;}
.yad{bottom:339.552000px;}
.y64{bottom:340.018500px;}
.y1d5{bottom:344.287500px;}
.y3a{bottom:344.565000px;}
.y4a{bottom:345.043500px;}
.y3c{bottom:345.421500px;}
.y46{bottom:345.432000px;}
.y42{bottom:346.272000px;}
.ydf{bottom:346.276500px;}
.yfe{bottom:346.390500px;}
.y44{bottom:346.816500px;}
.y6b{bottom:346.990500px;}
.y3e{bottom:347.500500px;}
.y40{bottom:347.719500px;}
.y68{bottom:349.497000px;}
.y6d{bottom:349.692000px;}
.y66{bottom:350.700000px;}
.y5a{bottom:351.346500px;}
.y5c{bottom:351.981000px;}
.y1a2{bottom:352.579500px;}
.y60{bottom:353.263500px;}
.y5d{bottom:354.544500px;}
.y161{bottom:354.721500px;}
.y75{bottom:356.845500px;}
.y78{bottom:357.633000px;}
.y184{bottom:359.092500px;}
.y1cd{bottom:359.448000px;}
.y186{bottom:361.942500px;}
.y77{bottom:364.963500px;}
.y73{bottom:365.752500px;}
.y1d4{bottom:368.677500px;}
.yab{bottom:370.362000px;}
.yaf{bottom:370.930500px;}
.y214{bottom:371.356500px;}
.ye0{bottom:373.542000px;}
.yff{bottom:373.656000px;}
.y8c{bottom:380.518500px;}
.y158{bottom:382.353000px;}
.y1a3{bottom:386.461500px;}
.y182{bottom:392.088000px;}
.y16f{bottom:394.233000px;}
.y185{bottom:395.880000px;}
.ye1{bottom:400.693500px;}
.y100{bottom:400.807500px;}
.y162{bottom:404.820000px;}
.y8b{bottom:408.019500px;}
.y215{bottom:411.732000px;}
.y1ce{bottom:413.172000px;}
.yb1{bottom:413.631000px;}
.yac{bottom:416.559000px;}
.yae{bottom:417.328500px;}
.y1a4{bottom:420.229500px;}
.y1d6{bottom:420.916500px;}
.y187{bottom:423.255000px;}
.y188{bottom:427.342500px;}
.ye2{bottom:427.959000px;}
.y101{bottom:428.073000px;}
.y119{bottom:443.856000px;}
.y120{bottom:447.316500px;}
.y216{bottom:451.942500px;}
.y11e{bottom:452.755500px;}
.y1a5{bottom:453.997500px;}
.ye3{bottom:455.110500px;}
.y102{bottom:455.224500px;}
.y25{bottom:457.228500px;}
.y2c{bottom:458.386500px;}
.y163{bottom:458.542500px;}
.y2e{bottom:461.859000px;}
.y28{bottom:464.175000px;}
.y2a{bottom:465.333000px;}
.y1cf{bottom:466.894500px;}
.y170{bottom:469.003500px;}
.y1d7{bottom:473.322000px;}
.y1b{bottom:475.524000px;}
.y1f{bottom:475.644000px;}
.y19{bottom:476.580000px;}
.yf{bottom:477.850500px;}
.y17{bottom:479.118000px;}
.ye4{bottom:482.376000px;}
.y103{bottom:482.490000px;}
.y31{bottom:484.095000px;}
.y1d{bottom:484.173000px;}
.y29{bottom:485.013000px;}
.y15{bottom:485.224500px;}
.y13{bottom:485.554500px;}
.y108{bottom:486.043500px;}
.y1a6{bottom:487.879500px;}
.y106{bottom:491.160000px;}
.ye7{bottom:491.274000px;}
.y171{bottom:492.043500px;}
.y217{bottom:492.316500px;}
.y72{bottom:495.969000px;}
.y15e{bottom:498.625500px;}
.y1ab{bottom:504.193500px;}
.y105{bottom:507.930000px;}
.ye6{bottom:508.044000px;}
.ye5{bottom:509.527500px;}
.y104{bottom:509.641500px;}
.y164{bottom:512.266500px;}
.y117{bottom:515.212500px;}
.y1d8{bottom:516.498000px;}
.y116{bottom:519.166500px;}
.y1d0{bottom:520.618500px;}
.y10a{bottom:520.980000px;}
.y1a7{bottom:521.649000px;}
.ya6{bottom:526.587000px;}
.ya3{bottom:527.791500px;}
.ya8{bottom:532.026000px;}
.y218{bottom:532.527000px;}
.ye9{bottom:532.800000px;}
.y107{bottom:532.914000px;}
.y1aa{bottom:535.794000px;}
.y114{bottom:537.459000px;}
.y112{bottom:541.414500px;}
.y2b{bottom:546.369000px;}
.y1{bottom:558.688500px;}
.ydb{bottom:558.915000px;}
.y11{bottom:559.986000px;}
.y3{bottom:561.012000px;}
.yd{bottom:561.039000px;}
.y19e{bottom:561.795000px;}
.y10b{bottom:562.344000px;}
.y9{bottom:563.313000px;}
.yb{bottom:564.787500px;}
.y32{bottom:565.263000px;}
.y36{bottom:565.345500px;}
.y165{bottom:565.989000px;}
.y1a0{bottom:566.131500px;}
.y21a{bottom:566.475000px;}
.y5{bottom:566.646000px;}
.y7{bottom:567.238500px;}
.y1da{bottom:567.915000px;}
.y2f{bottom:572.052000px;}
.y34{bottom:572.580000px;}
.ya7{bottom:573.616500px;}
.y2d{bottom:575.311500px;}
.ya4{bottom:576.814500px;}
.y21{bottom:577.065000px;}
.y23{bottom:578.784000px;}
.yaa{bottom:579.639000px;}
.y26{bottom:582.258000px;}
.y38{bottom:582.873000px;}
.y24{bottom:585.730500px;}
.yce{bottom:586.296000px;}
.yf0{bottom:586.410000px;}
.y196{bottom:589.176000px;}
.y7f{bottom:597.688500px;}
.y16b{bottom:598.288500px;}
.y10c{bottom:603.706500px;}
.ya5{bottom:604.965000px;}
.ycf{bottom:609.454500px;}
.ya2{bottom:609.495000px;}
.y15f{bottom:609.705000px;}
.yf1{bottom:609.910500px;}
.y15b{bottom:611.352000px;}
.ya9{bottom:611.377500px;}
.y79{bottom:615.876000px;}
.y197{bottom:615.984000px;}
.y166{bottom:619.713000px;}
.y16a{bottom:620.536500px;}
.y17e{bottom:624.706500px;}
.y17f{bottom:632.802000px;}
.y17c{bottom:635.038500px;}
.yd0{bottom:636.034500px;}
.yf2{bottom:637.176000px;}
.y10e{bottom:645.070500px;}
.y198{bottom:649.867500px;}
.y169{bottom:658.110000px;}
.yd1{bottom:662.616000px;}
.yf3{bottom:664.327500px;}
.y17a{bottom:667.711500px;}
.y17d{bottom:671.467500px;}
.y199{bottom:683.635500px;}
.y10f{bottom:686.269500px;}
.yd2{bottom:689.197500px;}
.yf4{bottom:691.593000px;}
.y81{bottom:692.551500px;}
.y8e{bottom:695.037000px;}
.y1c6{bottom:710.616000px;}
.y206{bottom:710.976000px;}
.y1ca{bottom:715.395000px;}
.y12c{bottom:715.656000px;}
.yd3{bottom:715.779000px;}
.y147{bottom:716.479500px;}
.y20f{bottom:717.238500px;}
.y19a{bottom:717.403500px;}
.y133{bottom:717.963000px;}
.yf5{bottom:718.744500px;}
.y146{bottom:721.918500px;}
.y1e6{bottom:722.083500px;}
.y132{bottom:723.402000px;}
.y180{bottom:724.885500px;}
.y8d{bottom:727.018500px;}
.y110{bottom:727.633500px;}
.ya0{bottom:739.714500px;}
.yfa{bottom:740.419500px;}
.yd8{bottom:740.763000px;}
.y9c{bottom:742.203000px;}
.yd4{bottom:742.359000px;}
.y99{bottom:742.405500px;}
.yf6{bottom:746.010000px;}
.y1b8{bottom:750.166500px;}
.y204{bottom:750.526500px;}
.y19b{bottom:751.285500px;}
.y155{bottom:755.073000px;}
.y135{bottom:755.206500px;}
.y1dc{bottom:755.371500px;}
.yf9{bottom:757.189500px;}
.yd7{bottom:757.533000px;}
.y123{bottom:757.843500px;}
.y8f{bottom:759.007500px;}
.y1fc{bottom:764.863500px;}
.y19d{bottom:767.371500px;}
.yd5{bottom:768.940500px;}
.y111{bottom:768.996000px;}
.y9e{bottom:771.810000px;}
.y71{bottom:772.867500px;}
.yf7{bottom:773.161500px;}
.yf8{bottom:773.959500px;}
.yd6{bottom:774.303000px;}
.y19c{bottom:785.053500px;}
.y1f6{bottom:787.012500px;}
.y9a{bottom:787.098000px;}
.ya1{bottom:787.353000px;}
.y205{bottom:788.923500px;}
.y11b{bottom:789.430500px;}
.y1b9{bottom:791.365500px;}
.y136{bottom:791.956500px;}
.y124{bottom:792.780000px;}
.y1e8{bottom:793.933500px;}
.y1dd{bottom:794.098500px;}
.yd9{bottom:796.320000px;}
.y1ef{bottom:796.405500px;}
.yfb{bottom:796.434000px;}
.y1bf{bottom:797.298000px;}
.y1fd{bottom:800.625000px;}
.y1fb{bottom:801.184500px;}
.y149{bottom:805.305000px;}
.y1c1{bottom:805.372500px;}
.y1c2{bottom:806.032500px;}
.y156{bottom:806.641500px;}
.y1f4{bottom:810.412500px;}
.y9d{bottom:816.204000px;}
.y9b{bottom:816.889500px;}
.y9f{bottom:819.108000px;}
.yc7{bottom:822.795000px;}
.ycc{bottom:824.962500px;}
.y190{bottom:825.315000px;}
.y1b6{bottom:826.806000px;}
.y1c0{bottom:828.939000px;}
.y195{bottom:829.765500px;}
.y1be{bottom:830.257500px;}
.y125{bottom:834.144000px;}
.y1fa{bottom:834.472500px;}
.y1f9{bottom:835.297500px;}
.y1fe{bottom:836.550000px;}
.y137{bottom:836.616000px;}
.y87{bottom:842.512500px;}
.y1e9{bottom:842.877000px;}
.y1de{bottom:843.042000px;}
.y89{bottom:844.075500px;}
.y1ba{bottom:845.088000px;}
.y20a{bottom:848.745000px;}
.yb6{bottom:849.034500px;}
.y1f0{bottom:850.128000px;}
.y85{bottom:850.482000px;}
.y157{bottom:851.941500px;}
.y189{bottom:852.810000px;}
.yb8{bottom:858.960000px;}
.y14a{bottom:859.027500px;}
.y174{bottom:868.584000px;}
.y1ff{bottom:872.310000px;}
.y126{bottom:875.506500px;}
.y20c{bottom:877.089000px;}
.y18a{bottom:879.619500px;}
.y138{bottom:881.439000px;}
.y1b7{bottom:884.616000px;}
.yb9{bottom:888.735000px;}
.yc3{bottom:890.332500px;}
.yed{bottom:891.244500px;}
.y1ea{bottom:891.657000px;}
.y1df{bottom:891.822000px;}
.yc2{bottom:893.412000px;}
.y20b{bottom:894.228000px;}
.yec{bottom:894.325500px;}
.y1bb{bottom:898.812000px;}
.y172{bottom:900.414000px;}
.y1f1{bottom:903.852000px;}
.y176{bottom:904.072500px;}
.y7a{bottom:904.909500px;}
.y1c3{bottom:905.568000px;}
.y200{bottom:908.070000px;}
.yc5{bottom:910.182000px;}
.yef{bottom:910.753500px;}
.y1f5{bottom:911.433000px;}
.y14b{bottom:912.750000px;}
.yc4{bottom:913.263000px;}
.y18b{bottom:913.501500px;}
.yee{bottom:913.833000px;}
.y127{bottom:916.870500px;}
.yba{bottom:918.510000px;}
.y1af{bottom:920.247000px;}
.y209{bottom:926.197500px;}
.y139{bottom:926.263500px;}
.y1b3{bottom:929.515500px;}
.y20d{bottom:930.153000px;}
.yb2{bottom:938.490000px;}
.y1b5{bottom:939.550500px;}
.y1eb{bottom:940.437000px;}
.y1e0{bottom:940.600500px;}
.y201{bottom:943.996500px;}
.y18c{bottom:947.269500px;}
.ybb{bottom:948.172500px;}
.y177{bottom:950.407500px;}
.y1bc{bottom:952.534500px;}
.y93{bottom:955.872000px;}
.y96{bottom:956.322000px;}
.y91{bottom:956.724000px;}
.y1f2{bottom:957.574500px;}
.y128{bottom:958.069500px;}
.y1c4{bottom:959.457000px;}
.y208{bottom:960.805500px;}
.y144{bottom:961.860000px;}
.y1f8{bottom:963.672000px;}
.y1b1{bottom:963.747000px;}
.y14c{bottom:966.474000px;}
.y13a{bottom:970.923000px;}
.ybd{bottom:977.947500px;}
.y1ae{bottom:978.189000px;}
.y143{bottom:978.669000px;}
.y153{bottom:979.657500px;}
.y202{bottom:979.756500px;}
.y18d{bottom:981.037500px;}
.y1e7{bottom:984.163500px;}
.y95{bottom:986.682000px;}
.y98{bottom:987.250500px;}
.y1b4{bottom:987.964500px;}
.y1ec{bottom:989.380500px;}
.y1e1{bottom:989.545500px;}
.y83{bottom:991.555500px;}
.y142{bottom:995.478000px;}
.y1b2{bottom:997.987500px;}
.y129{bottom:999.433500px;}
.y20e{bottom:999.696000px;}
.y131{bottom:1000.257000px;}
.y152{bottom:1001.905500px;}
.y1c5{bottom:1002.633000px;}
.y92{bottom:1004.140500px;}
.y12f{bottom:1004.212500px;}
.y1bd{bottom:1006.258500px;}
.y1f7{bottom:1007.013000px;}
.ybe{bottom:1007.722500px;}
.y1f3{bottom:1011.298500px;}
.y1b0{bottom:1012.125000px;}
.y141{bottom:1012.287000px;}
.y18e{bottom:1014.919500px;}
.y203{bottom:1015.516500px;}
.y13b{bottom:1015.747500px;}
.y179{bottom:1018.429500px;}
.y14d{bottom:1020.196500px;}
.y178{bottom:1022.371500px;}
.y12e{bottom:1022.503500px;}
.y151{bottom:1024.152000px;}
.y12d{bottom:1026.459000px;}
.y13f{bottom:1029.096000px;}
.yc1{bottom:1029.627000px;}
.yb3{bottom:1030.290000px;}
.yeb{bottom:1030.881000px;}
.y192{bottom:1032.147000px;}
.yc0{bottom:1032.706500px;}
.y94{bottom:1032.879000px;}
.y97{bottom:1033.648500px;}
.yea{bottom:1033.962000px;}
.y90{bottom:1035.748500px;}
.ybf{bottom:1037.497500px;}
.y1ed{bottom:1038.159000px;}
.y1e2{bottom:1038.324000px;}
.y12a{bottom:1040.796000px;}
.y6f{bottom:1043.544000px;}
.y18f{bottom:1048.687500px;}
.y1c8{bottom:1053.555000px;}
.y207{bottom:1053.915000px;}
.y14f{bottom:1058.100000px;}
.y13d{bottom:1058.595000px;}
.yc9{bottom:1058.716500px;}
.y1e4{bottom:1058.758500px;}
.y12b{bottom:1061.230500px;}
.yb4{bottom:1062.690000px;}
.y191{bottom:1062.834000px;}
.y86{bottom:1065.703500px;}
.y7c{bottom:1071.561000px;}
.yb5{bottom:1092.390000px;}
.h31{height:5.128500px;}
.h54{height:5.155500px;}
.h49{height:5.233500px;}
.h4b{height:5.292000px;}
.h4f{height:5.385000px;}
.h3d{height:5.404500px;}
.h43{height:5.425500px;}
.h52{height:5.511000px;}
.h45{height:5.554500px;}
.h39{height:5.559000px;}
.h2d{height:5.587500px;}
.h3f{height:5.829000px;}
.h51{height:5.830500px;}
.h33{height:5.955000px;}
.h2f{height:6.259500px;}
.h47{height:6.292500px;}
.h41{height:6.325500px;}
.h37{height:6.418500px;}
.h3b{height:6.579000px;}
.h9f{height:6.591000px;}
.h35{height:6.712500px;}
.h4d{height:7.690500px;}
.h96{height:8.074500px;}
.h7b{height:8.212500px;}
.h7d{height:8.214000px;}
.h80{height:8.785500px;}
.h93{height:9.063000px;}
.h83{height:10.723500px;}
.h8a{height:10.876500px;}
.ha1{height:12.688500px;}
.h32{height:13.511368px;}
.h55{height:13.511595px;}
.h4a{height:13.514554px;}
.h4c{height:13.518918px;}
.h50{height:13.530483px;}
.h3e{height:13.533728px;}
.h44{height:13.537471px;}
.h53{height:13.555242px;}
.h46{height:13.566816px;}
.h3a{height:13.567819px;}
.h2e{height:13.618998px;}
.h40{height:13.673553px;}
.h7a{height:13.689000px;}
.h78{height:13.690500px;}
.h34{height:13.744810px;}
.h9b{height:13.842000px;}
.h99{height:13.843500px;}
.h5{height:13.893000px;}
.h27{height:13.972500px;}
.h30{height:14.004100px;}
.h48{height:14.042376px;}
.h42{height:14.079598px;}
.h1d{height:14.184000px;}
.h38{height:14.203912px;}
.h1f{height:14.337000px;}
.h3c{height:14.471195px;}
.h24{height:14.589000px;}
.h11{height:14.644500px;}
.h17{height:14.703000px;}
.h36{height:14.784383px;}
.h26{height:14.931000px;}
.h19{height:15.052500px;}
.hd{height:15.061500px;}
.h1{height:15.139500px;}
.h92{height:15.160500px;}
.h9e{height:15.162000px;}
.h29{height:15.325500px;}
.h98{height:15.490500px;}
.h8e{height:15.492000px;}
.h13{height:15.796500px;}
.h7{height:16.131000px;}
.h2b{height:16.207500px;}
.h5e{height:16.894500px;}
.h3{height:16.960500px;}
.h1b{height:17.053500px;}
.h15{height:17.139000px;}
.hb{height:17.395500px;}
.hb2{height:17.568000px;}
.h82{height:17.569500px;}
.hf{height:17.827500px;}
.h9{height:18.192000px;}
.h95{height:18.291000px;}
.h88{height:18.292500px;}
.h87{height:19.774500px;}
.h85{height:19.776000px;}
.h21{height:20.838000px;}
.h23{height:20.839500px;}
.h66{height:21.033000px;}
.hac{height:21.195000px;}
.haa{height:21.196500px;}
.haf{height:21.754500px;}
.had{height:21.756000px;}
.hb0{height:21.970500px;}
.h5b{height:22.569000px;}
.h56{height:22.815000px;}
.h58{height:22.816500px;}
.h4e{height:23.644895px;}
.h62{height:23.688000px;}
.h68{height:23.689500px;}
.h60{height:24.574500px;}
.h90{height:25.377000px;}
.h9d{height:25.378500px;}
.h59{height:27.403500px;}
.h5d{height:27.405000px;}
.h7c{height:29.508026px;}
.h94{height:31.625170px;}
.h7f{height:31.887685px;}
.h97{height:33.000199px;}
.h69{height:36.421500px;}
.h2a{height:36.611341px;}
.h12{height:36.611348px;}
.h18{height:36.611353px;}
.h20{height:36.611356px;}
.h14{height:36.611359px;}
.h16{height:36.611362px;}
.ha{height:36.611365px;}
.h1e{height:36.611366px;}
.h25{height:36.611372px;}
.h10{height:36.611380px;}
.he{height:36.611382px;}
.h4{height:36.611387px;}
.h8{height:36.611395px;}
.h28{height:36.611401px;}
.h1c{height:36.611410px;}
.hc{height:36.611414px;}
.h6{height:36.611432px;}
.h1a{height:36.611437px;}
.h2{height:36.674401px;}
.h77{height:38.158594px;}
.h84{height:38.550816px;}
.h8b{height:39.187736px;}
.h61{height:42.502873px;}
.h2c{height:45.764261px;}
.ha0{height:46.062757px;}
.h79{height:49.497294px;}
.h9a{height:50.875327px;}
.h64{height:51.849000px;}
.h5f{height:54.646577px;}
.h8f{height:55.000352px;}
.h8d{height:55.687835px;}
.ha5{height:58.189567px;}
.h67{height:60.417185px;}
.h81{height:63.299651px;}
.h22{height:64.069680px;}
.h89{height:66.000523px;}
.ha7{height:66.006523px;}
.h5c{height:67.153236px;}
.h71{height:69.438630px;}
.hab{height:69.627742px;}
.h70{height:70.618720px;}
.ha3{height:71.015027px;}
.hae{height:71.469979px;}
.h86{height:71.500514px;}
.hb1{height:72.173914px;}
.h63{height:72.379884px;}
.h6f{height:72.558448px;}
.h57{height:73.247473px;}
.h74{height:73.849834px;}
.h75{height:74.358448px;}
.h6e{height:74.459900px;}
.h72{height:74.806154px;}
.h6d{height:75.874359px;}
.h73{height:76.983196px;}
.ha6{height:77.585854px;}
.ha9{height:77.624473px;}
.hb5{height:80.062383px;}
.hb4{height:80.104781px;}
.h5a{height:86.340296px;}
.hb7{height:87.024560px;}
.h91{height:91.437905px;}
.h65{height:93.060197px;}
.h6c{height:95.282005px;}
.hb8{height:104.074352px;}
.hba{height:104.080352px;}
.hb6{height:110.394560px;}
.h76{height:121.510720px;}
.h9c{height:122.127905px;}
.ha8{height:134.758352px;}
.ha2{height:156.443027px;}
.hb9{height:180.054044px;}
.h6a{height:202.266548px;}
.h6b{height:230.488764px;}
.hb3{height:265.696500px;}
.h7e{height:265.698000px;}
.h8c{height:383.808000px;}
.ha4{height:636.858000px;}
.h0{height:1188.000000px;}
.w1b{width:6.283500px;}
.w2e{width:6.327000px;}
.w27{width:6.445500px;}
.w28{width:6.532500px;}
.w2c{width:6.675000px;}
.w21{width:6.706500px;}
.w24{width:6.738000px;}
.w2d{width:6.868500px;}
.w25{width:6.937500px;}
.w1f{width:6.943500px;}
.w22{width:7.368000px;}
.w1c{width:7.564500px;}
.w19{width:7.987500px;}
.w1a{width:8.062500px;}
.w26{width:8.119500px;}
.w23{width:8.173500px;}
.w1e{width:8.334000px;}
.w2b{width:8.376000px;}
.w29{width:8.377500px;}
.w2a{width:8.379000px;}
.w20{width:8.614500px;}
.w1d{width:8.866500px;}
.w3{width:12.502500px;}
.w16{width:12.591000px;}
.wf{width:12.826500px;}
.w10{width:12.999000px;}
.w13{width:13.282500px;}
.w9{width:13.342500px;}
.wc{width:13.410000px;}
.w15{width:13.666500px;}
.wd{width:13.806000px;}
.w7{width:13.818000px;}
.w18{width:13.891500px;}
.w17{width:14.119500px;}
.w14{width:14.659500px;}
.wa{width:14.661000px;}
.w4{width:15.052500px;}
.w1{width:15.891000px;}
.w2{width:16.042500px;}
.wab{width:16.069500px;}
.we{width:16.156500px;}
.wb{width:16.263000px;}
.wae{width:16.494000px;}
.w6{width:16.582500px;}
.wb0{width:16.656000px;}
.wb1{width:16.657500px;}
.w12{width:16.669500px;}
.w11{width:16.671000px;}
.w8{width:17.140500px;}
.w2f{width:17.422500px;}
.w30{width:17.424000px;}
.w5{width:17.640000px;}
.w34{width:18.741000px;}
.w32{width:19.680000px;}
.w31{width:23.209500px;}
.w33{width:23.211000px;}
.wac{width:26.715000px;}
.wad{width:26.716500px;}
.waf{width:27.423000px;}
.wb2{width:27.693000px;}
.w36{width:29.491500px;}
.w37{width:56.215500px;}
.w5c{width:70.275000px;}
.w72{width:70.389000px;}
.wce{width:70.503000px;}
.wc4{width:73.698000px;}
.wbb{width:73.812000px;}
.wa3{width:74.487000px;}
.w3d{width:78.642000px;}
.w4e{width:79.287000px;}
.w6b{width:79.858500px;}
.w35{width:81.844500px;}
.w47{width:82.368000px;}
.w3e{width:95.739000px;}
.w3b{width:96.601500px;}
.w65{width:98.796000px;}
.w64{width:99.480000px;}
.w75{width:99.822000px;}
.wcd{width:100.164000px;}
.w60{width:100.507500px;}
.w74{width:101.305500px;}
.w5f{width:101.989500px;}
.w78{width:102.903000px;}
.w4d{width:103.017000px;}
.wc3{width:103.473000px;}
.w6a{width:103.587000px;}
.waa{width:103.656000px;}
.w4c{width:106.324500px;}
.w69{width:107.694000px;}
.w3a{width:109.420500px;}
.wa6{width:109.588500px;}
.w5b{width:111.459000px;}
.w71{width:111.573000px;}
.w46{width:115.794000px;}
.w8b{width:124.584000px;}
.w39{width:127.297500px;}
.wcc{width:129.940500px;}
.wc2{width:133.134000px;}
.wba{width:133.248000px;}
.w4b{width:133.819500px;}
.wfe{width:135.132000px;}
.w68{width:135.187500px;}
.w111{width:136.944000px;}
.w4a{width:142.033500px;}
.w67{width:144.201000px;}
.w95{width:144.855000px;}
.w7c{width:145.348500px;}
.w11d{width:147.655500px;}
.we9{width:147.820500px;}
.w45{width:149.220000px;}
.wd4{width:151.941000px;}
.w5a{width:152.643000px;}
.w70{width:152.757000px;}
.w63{width:155.266500px;}
.w49{width:156.178500px;}
.w77{width:157.320000px;}
.w106{width:157.543500px;}
.w66{width:158.346000px;}
.wcb{width:159.601500px;}
.wc1{width:162.909000px;}
.wb9{width:163.024500px;}
.wd6{width:164.629500px;}
.w113{width:166.443000px;}
.w73{width:167.929500px;}
.w5e{width:168.613500px;}
.wf1{width:169.903500px;}
.wa2{width:171.057000px;}
.w6f{width:176.257500px;}
.w44{width:182.646000px;}
.wfd{width:186.712500px;}
.wca{width:189.376500px;}
.w6e{width:189.718500px;}
.w6d{width:191.088000px;}
.w110{width:192.150000px;}
.wb8{width:192.685500px;}
.w59{width:193.825500px;}
.w61{width:195.651000px;}
.w76{width:195.765000px;}
.w82{width:196.929000px;}
.w90{width:200.061000px;}
.w54{width:202.267500px;}
.w6c{width:204.549000px;}
.wc6{width:206.488500px;}
.wbe{width:206.602500px;}
.w81{width:207.477000px;}
.w8f{width:210.607500px;}
.w112{width:214.728000px;}
.w43{width:216.072000px;}
.we1{width:218.188500px;}
.wc0{width:218.923500px;}
.wc9{width:219.037500px;}
.wb7{width:222.460500px;}
.w55{width:222.688500px;}
.wd7{width:223.956000px;}
.w11c{width:224.944500px;}
.we8{width:225.274500px;}
.w38{width:227.658000px;}
.w105{width:229.230000px;}
.w8a{width:234.997500px;}
.w58{width:235.009500px;}
.w50{width:237.747000px;}
.wd3{width:237.799500px;}
.wfc{width:238.293000px;}
.w94{width:241.588500px;}
.w7b{width:241.918500px;}
.wa5{width:245.214000px;}
.w10f{width:247.521000px;}
.wa9{width:248.181000px;}
.wbf{width:248.700000px;}
.wc8{width:248.814000px;}
.w42{width:249.612000px;}
.w4f{width:251.209500px;}
.wb6{width:252.121500px;}
.w52{width:255.430500px;}
.we0{width:259.057500px;}
.w9e{width:260.541000px;}
.w87{width:260.869500px;}
.w91{width:261.034500px;}
.wa7{width:263.506500px;}
.wa1{width:267.792000px;}
.w51{width:268.891500px;}
.wf0{width:271.746000px;}
.w57{width:276.193500px;}
.wb5{width:278.475000px;}
.wf4{width:278.832000px;}
.w103{width:279.327000px;}
.w109{width:279.657000px;}
.w97{width:282.622500px;}
.wec{width:282.952500px;}
.w41{width:283.038000px;}
.w84{width:283.117500px;}
.w104{width:285.919500px;}
.w9d{width:286.413000px;}
.w86{width:286.908000px;}
.wfb{width:289.708500px;}
.wd8{width:295.477500px;}
.w99{width:298.278000px;}
.w9b{width:298.773000px;}
.w9a{width:299.431500px;}
.w11b{width:302.233500px;}
.we7{width:302.398500px;}
.w10e{width:302.728500px;}
.w116{width:307.342500px;}
.wb4{width:308.136000px;}
.w9c{width:308.166000px;}
.wc7{width:308.250000px;}
.w108{width:308.331000px;}
.w85{width:308.661000px;}
.wdd{width:314.428500px;}
.wed{width:314.758500px;}
.w40{width:316.464000px;}
.w56{width:317.376000px;}
.w118{width:317.395500px;}
.w102{width:317.889000px;}
.wd2{width:323.656500px;}
.wcf{width:323.766000px;}
.wbd{width:325.248000px;}
.wc5{width:325.704000px;}
.wf3{width:333.709500px;}
.w107{width:333.874500px;}
.wb3{width:334.489500px;}
.w93{width:338.158500px;}
.w7a{width:338.653500px;}
.wfa{width:341.290500px;}
.w114{width:341.784000px;}
.wd9{width:344.751000px;}
.w89{width:345.409500px;}
.w101{width:346.893000px;}
.w3f{width:349.890000px;}
.w117{width:357.111000px;}
.w10d{width:357.934500px;}
.w5d{width:359.245500px;}
.w48{width:360.955500px;}
.wa0{width:364.362000px;}
.wdf{width:371.448000px;}
.wef{width:373.425000px;}
.w115{width:374.248500px;}
.w11a{width:379.522500px;}
.we6{width:379.687500px;}
.w62{width:382.174500px;}
.wbc{width:382.175250px;}
.w53{width:382.176000px;}
.wf9{width:392.871000px;}
.w100{width:396.331500px;}
.w80{width:397.980000px;}
.we2{width:398.968500px;}
.w8e{width:401.110500px;}
.w7f{width:401.440500px;}
.w8d{width:404.571000px;}
.wd1{width:409.680000px;}
.we3{width:410.010000px;}
.w10c{width:413.140500px;}
.w7e{width:419.733000px;}
.wdb{width:420.886500px;}
.w8c{width:422.863500px;}
.we4{width:427.642500px;}
.w98{width:428.796000px;}
.w92{width:434.893500px;}
.w79{width:435.223500px;}
.wdc{width:435.717000px;}
.wf8{width:444.286500px;}
.wde{width:454.009500px;}
.w88{width:455.823000px;}
.w119{width:456.811500px;}
.we5{width:456.976500px;}
.wff{width:458.788500px;}
.wda{width:460.272000px;}
.w9f{width:460.930500px;}
.w3c{width:461.824500px;}
.w10b{width:468.346500px;}
.wee{width:475.269000px;}
.wd5{width:494.220000px;}
.wea{width:494.385000px;}
.wf5{width:494.550000px;}
.wd0{width:495.538500px;}
.wf7{width:495.868500px;}
.wa4{width:499.164000px;}
.wf2{width:504.108000px;}
.web{width:504.273000px;}
.w7d{width:504.436500px;}
.w96{width:513.994500px;}
.wf6{width:514.324500px;}
.w11e{width:518.938500px;}
.w10a{width:519.268500px;}
.w83{width:552.063000px;}
.wa8{width:636.857700px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x25{left:1.164000px;}
.x6{left:2.314500px;}
.x2{left:3.786000px;}
.x4{left:5.019000px;}
.xab{left:6.582750px;}
.x71{left:7.644000px;}
.x84{left:10.039500px;}
.xc{left:11.085000px;}
.x68{left:12.891000px;}
.x93{left:14.502000px;}
.x7c{left:16.314000px;}
.x8d{left:18.622500px;}
.x7a{left:22.599000px;}
.x86{left:28.188000px;}
.xdf{left:37.917000px;}
.xde{left:39.070500px;}
.xcc{left:44.179500px;}
.xa8{left:46.743000px;}
.xa0{left:50.533500px;}
.xd3{left:53.902500px;}
.x94{left:64.210500px;}
.xae{left:66.682500px;}
.xa9{left:108.031800px;}
.xbe{left:140.477250px;}
.xb3{left:159.555000px;}
.x92{left:161.911500px;}
.xbd{left:163.407000px;}
.xb0{left:165.469500px;}
.x3f{left:170.656500px;}
.x37{left:171.885000px;}
.xb6{left:175.842000px;}
.x42{left:183.883500px;}
.xb8{left:188.163000px;}
.x58{left:193.323000px;}
.xdb{left:194.706000px;}
.xbf{left:197.404500px;}
.xc4{left:198.886500px;}
.x9b{left:199.980000px;}
.x43{left:207.327000px;}
.x8e{left:209.538000px;}
.xa4{left:214.810500px;}
.x48{left:218.326500px;}
.xc9{left:219.754500px;}
.x59{left:221.683500px;}
.xd4{left:238.705500px;}
.x61{left:242.134500px;}
.x23{left:243.280500px;}
.x49{left:245.785500px;}
.x5a{left:250.044000px;}
.xa1{left:253.044000px;}
.xd8{left:255.186000px;}
.xd1{left:256.998000px;}
.x96{left:258.151500px;}
.xce{left:259.965000px;}
.x39{left:262.977000px;}
.x53{left:265.366500px;}
.x60{left:268.813500px;}
.xb1{left:270.952500px;}
.x4a{left:273.255000px;}
.x3a{left:275.196000px;}
.x8c{left:278.751000px;}
.x38{left:283.887000px;}
.x9d{left:285.178500px;}
.xd0{left:286.332000px;}
.x51{left:291.433500px;}
.xcb{left:293.088000px;}
.x8f{left:294.241500px;}
.x5f{left:295.494000px;}
.xb9{left:300.192000px;}
.x47{left:302.637000px;}
.xc0{left:303.729000px;}
.x46{left:307.927500px;}
.x99{left:309.403500px;}
.x90{left:312.534000px;}
.x91{left:315.994500px;}
.x52{left:317.500500px;}
.xd6{left:321.103500px;}
.x3e{left:322.543500px;}
.xb4{left:326.158500px;}
.xad{left:327.479700px;}
.x45{left:329.653500px;}
.xc1{left:333.276000px;}
.xd2{left:334.287000px;}
.xb2{left:337.989000px;}
.x78{left:340.593000px;}
.xcf{left:342.526500px;}
.x85{left:346.303500px;}
.xb7{left:347.517000px;}
.xa2{left:349.612500px;}
.xaa{left:350.972700px;}
.x3c{left:353.392500px;}
.xdc{left:356.040000px;}
.xba{left:359.628000px;}
.x3d{left:361.434000px;}
.xc2{left:363.051000px;}
.xd9{left:367.081500px;}
.x97{left:368.565000px;}
.x40{left:372.135000px;}
.x65{left:375.420000px;}
.xd5{left:380.265000px;}
.x6e{left:382.737000px;}
.xaf{left:387.544200px;}
.xbb{left:389.404500px;}
.xc8{left:391.572000px;}
.xc3{left:392.712000px;}
.x67{left:393.802500px;}
.xda{left:396.085500px;}
.xcd{left:399.546000px;}
.x95{left:405.313500px;}
.xdd{left:406.632000px;}
.x22{left:411.183000px;}
.xac{left:412.228200px;}
.x9f{left:414.543000px;}
.x9e{left:415.696500px;}
.x7d{left:417.676500px;}
.xbc{left:419.065500px;}
.x31{left:421.069500px;}
.x34{left:422.232000px;}
.xd7{left:424.266000px;}
.xc7{left:425.299500px;}
.x69{left:427.228500px;}
.x2a{left:429.039000px;}
.x35{left:430.083000px;}
.x9c{left:431.352000px;}
.x4b{left:433.294500px;}
.x18{left:434.467500px;}
.x1e{left:436.783500px;}
.x20{left:438.327000px;}
.x33{left:439.686000px;}
.x66{left:442.920000px;}
.x2c{left:444.513000px;}
.x24{left:446.104500px;}
.x30{left:448.411500px;}
.x10{left:450.325500px;}
.x1f{left:452.404500px;}
.x2b{left:453.699000px;}
.x28{left:455.109000px;}
.x5b{left:457.813500px;}
.x7e{left:458.859000px;}
.x4c{left:459.973500px;}
.x2e{left:461.511000px;}
.xd{left:462.564000px;}
.x1a{left:465.724500px;}
.xa6{left:468.760500px;}
.x1c{left:471.513000px;}
.x2d{left:472.794000px;}
.x77{left:474.801000px;}
.x27{left:475.825500px;}
.x2f{left:477.501000px;}
.x98{left:478.977000px;}
.x12{left:481.120500px;}
.x32{left:482.155500px;}
.x1{left:484.287000px;}
.x4d{left:486.654000px;}
.x17{left:488.878500px;}
.x29{left:490.825500px;}
.x75{left:492.483000px;}
.x6a{left:494.080500px;}
.x26{left:495.805500px;}
.x11{left:499.398000px;}
.xb5{left:500.721000px;}
.xa{left:502.203000px;}
.x36{left:503.569500px;}
.x76{left:505.945500px;}
.x62{left:507.894000px;}
.x9a{left:513.913500px;}
.x14{left:514.942500px;}
.x3{left:517.579500px;}
.x41{left:519.165000px;}
.x7b{left:521.004000px;}
.x1d{left:523.609500px;}
.x6b{left:527.620500px;}
.xa5{left:532.537500px;}
.x5{left:533.697000px;}
.x13{left:537.394500px;}
.x83{left:539.401500px;}
.x79{left:541.425000px;}
.x9{left:543.427500px;}
.x16{left:546.762000px;}
.xca{left:549.345000px;}
.xf{left:553.147500px;}
.x1b{left:556.023000px;}
.x7{left:561.873000px;}
.x80{left:566.439000px;}
.x54{left:568.533000px;}
.x15{left:572.230500px;}
.xb{left:573.276000px;}
.x8b{left:577.732500px;}
.x87{left:579.786000px;}
.x8{left:583.186500px;}
.x89{left:585.346500px;}
.x6f{left:587.514000px;}
.xe{left:588.588000px;}
.x55{left:594.087000px;}
.x19{left:596.542500px;}
.x21{left:598.633500px;}
.x3b{left:600.204000px;}
.x70{left:601.659000px;}
.xa7{left:604.386000px;}
.x44{left:607.608000px;}
.x72{left:609.873000px;}
.x7f{left:623.593500px;}
.x6c{left:627.898500px;}
.x81{left:633.063000px;}
.x82{left:634.545000px;}
.x88{left:635.572500px;}
.x73{left:637.368000px;}
.xa3{left:639.487500px;}
.x74{left:640.675500px;}
.xc6{left:657.403500px;}
.x6d{left:661.324500px;}
.x8a{left:663.834000px;}
.x56{left:665.236500px;}
.x4e{left:667.294500px;}
.x5d{left:677.079000px;}
.xc5{left:681.489000px;}
.x64{left:690.526500px;}
.x57{left:692.934000px;}
.x4f{left:693.973500px;}
.x5c{left:704.413500px;}
.x63{left:716.593500px;}
.x50{left:720.654000px;}
.x5e{left:731.746500px;}
@media print{
.ve{vertical-align:-43.621333pt;}
.v12{vertical-align:-27.280000pt;}
.vc{vertical-align:-18.880000pt;}
.v1{vertical-align:-12.448000pt;}
.v6{vertical-align:-10.234667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:10.234667pt;}
.va{vertical-align:11.456000pt;}
.v2{vertical-align:12.448000pt;}
.v10{vertical-align:20.773333pt;}
.vd{vertical-align:27.280000pt;}
.v9{vertical-align:34.112000pt;}
.v4{vertical-align:41.504000pt;}
.v8{vertical-align:44.346667pt;}
.vb{vertical-align:45.237333pt;}
.v5{vertical-align:60.432000pt;}
.vf{vertical-align:75.936000pt;}
.v11{vertical-align:87.408000pt;}
.v3{vertical-align:97.866667pt;}
.lsa4{letter-spacing:-0.608437pt;}
.lsf{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.000007pt;}
.ls1a{letter-spacing:0.000013pt;}
.ls1f{letter-spacing:0.000014pt;}
.ls24{letter-spacing:0.000017pt;}
.ls20{letter-spacing:0.000018pt;}
.ls0{letter-spacing:0.000020pt;}
.ls12{letter-spacing:0.000022pt;}
.lsc{letter-spacing:0.000027pt;}
.ls13{letter-spacing:0.000030pt;}
.ls11{letter-spacing:0.000031pt;}
.ls15{letter-spacing:0.000037pt;}
.ls22{letter-spacing:0.000039pt;}
.ls29{letter-spacing:0.000040pt;}
.ls26{letter-spacing:0.000041pt;}
.ls1d{letter-spacing:0.000043pt;}
.ls8{letter-spacing:0.000045pt;}
.ls27{letter-spacing:0.000048pt;}
.ls2a{letter-spacing:0.000049pt;}
.ls18{letter-spacing:0.000051pt;}
.lsa{letter-spacing:0.000053pt;}
.lse{letter-spacing:0.000055pt;}
.ls6{letter-spacing:0.000059pt;}
.ls17{letter-spacing:0.000062pt;}
.lsb{letter-spacing:0.000063pt;}
.ls7{letter-spacing:0.000067pt;}
.ls2{letter-spacing:0.000069pt;}
.ls23{letter-spacing:0.000070pt;}
.ls5{letter-spacing:0.000073pt;}
.ls28{letter-spacing:0.000076pt;}
.ls2b{letter-spacing:0.000080pt;}
.ls4{letter-spacing:0.000082pt;}
.ls14{letter-spacing:0.000083pt;}
.ls2c{letter-spacing:0.000087pt;}
.ls1b{letter-spacing:0.000089pt;}
.lsd{letter-spacing:0.000094pt;}
.ls1c{letter-spacing:0.000097pt;}
.ls19{letter-spacing:0.000102pt;}
.ls3{letter-spacing:0.000104pt;}
.ls16{letter-spacing:0.000106pt;}
.ls25{letter-spacing:0.000112pt;}
.ls10{letter-spacing:0.000118pt;}
.ls1e{letter-spacing:0.000121pt;}
.ls9{letter-spacing:0.000124pt;}
.ls1{letter-spacing:0.000126pt;}
.ls81{letter-spacing:0.001065pt;}
.ls3b{letter-spacing:0.001928pt;}
.lsa2{letter-spacing:0.004877pt;}
.ls66{letter-spacing:0.011133pt;}
.ls62{letter-spacing:0.090235pt;}
.ls5f{letter-spacing:0.091230pt;}
.ls49{letter-spacing:0.095727pt;}
.ls51{letter-spacing:0.097350pt;}
.ls53{letter-spacing:0.143591pt;}
.ls55{letter-spacing:0.177127pt;}
.ls6b{letter-spacing:0.182460pt;}
.ls6e{letter-spacing:0.182813pt;}
.lsa5{letter-spacing:0.192266pt;}
.ls9b{letter-spacing:0.194151pt;}
.ls65{letter-spacing:0.202734pt;}
.ls7c{letter-spacing:0.206649pt;}
.ls84{letter-spacing:0.209766pt;}
.ls7b{letter-spacing:0.211982pt;}
.ls6a{letter-spacing:0.248438pt;}
.ls73{letter-spacing:0.250083pt;}
.ls75{letter-spacing:0.255416pt;}
.lsac{letter-spacing:0.283186pt;}
.ls43{letter-spacing:0.306907pt;}
.ls39{letter-spacing:0.309982pt;}
.ls45{letter-spacing:0.312241pt;}
.ls7f{letter-spacing:0.331544pt;}
.ls86{letter-spacing:0.335156pt;}
.lsa1{letter-spacing:0.415715pt;}
.ls4e{letter-spacing:0.416171pt;}
.ls3e{letter-spacing:0.437914pt;}
.ls4c{letter-spacing:0.441320pt;}
.ls38{letter-spacing:0.443248pt;}
.ls79{letter-spacing:0.456732pt;}
.ls70{letter-spacing:0.500166pt;}
.ls71{letter-spacing:0.501563pt;}
.ls54{letter-spacing:0.551648pt;}
.ls64{letter-spacing:0.574805pt;}
.ls5e{letter-spacing:0.584267pt;}
.ls83{letter-spacing:0.585936pt;}
.ls78{letter-spacing:0.586960pt;}
.ls8a{letter-spacing:0.601173pt;}
.ls5b{letter-spacing:0.602039pt;}
.ls8f{letter-spacing:0.604972pt;}
.ls56{letter-spacing:0.607372pt;}
.lsa7{letter-spacing:0.632681pt;}
.ls8d{letter-spacing:0.638014pt;}
.ls50{letter-spacing:0.665227pt;}
.ls3c{letter-spacing:0.665786pt;}
.ls48{letter-spacing:0.667659pt;}
.ls3a{letter-spacing:0.671119pt;}
.ls9d{letter-spacing:0.691227pt;}
.lsa3{letter-spacing:0.694027pt;}
.ls5c{letter-spacing:0.767796pt;}
.ls74{letter-spacing:0.793609pt;}
.ls90{letter-spacing:0.795945pt;}
.ls42{letter-spacing:0.798685pt;}
.ls72{letter-spacing:0.798942pt;}
.ls3d{letter-spacing:0.831430pt;}
.ls9a{letter-spacing:0.832341pt;}
.ls7a{letter-spacing:0.837043pt;}
.ls37{letter-spacing:0.881162pt;}
.ls46{letter-spacing:0.882640pt;}
.ls94{letter-spacing:0.890624pt;}
.lsae{letter-spacing:0.891687pt;}
.ls60{letter-spacing:0.892144pt;}
.lsa9{letter-spacing:0.897020pt;}
.ls4a{letter-spacing:0.918336pt;}
.ls7d{letter-spacing:0.918504pt;}
.ls87{letter-spacing:0.921093pt;}
.ls77{letter-spacing:0.923837pt;}
.ls4d{letter-spacing:0.928475pt;}
.lsa0{letter-spacing:0.928506pt;}
.ls6c{letter-spacing:0.948926pt;}
.ls5d{letter-spacing:0.951563pt;}
.ls59{letter-spacing:0.954259pt;}
.lsbc{letter-spacing:0.960939pt;}
.ls3f{letter-spacing:0.961262pt;}
.ls76{letter-spacing:0.961938pt;}
.ls88{letter-spacing:0.962112pt;}
.ls5a{letter-spacing:0.987404pt;}
.ls63{letter-spacing:0.989061pt;}
.lsbd{letter-spacing:0.998777pt;}
.lsb9{letter-spacing:1.002539pt;}
.lsb2{letter-spacing:1.004110pt;}
.ls67{letter-spacing:1.031248pt;}
.ls4b{letter-spacing:1.067605pt;}
.ls40{letter-spacing:1.067965pt;}
.lsb5{letter-spacing:1.147706pt;}
.lsaa{letter-spacing:1.153040pt;}
.ls93{letter-spacing:1.153125pt;}
.ls58{letter-spacing:1.153161pt;}
.lsbf{letter-spacing:1.153495pt;}
.lsad{letter-spacing:1.154206pt;}
.lsb6{letter-spacing:1.156053pt;}
.lsc0{letter-spacing:1.158829pt;}
.lsb4{letter-spacing:1.159540pt;}
.ls57{letter-spacing:1.170933pt;}
.ls89{letter-spacing:1.171877pt;}
.ls7e{letter-spacing:1.173627pt;}
.ls6d{letter-spacing:1.176267pt;}
.ls41{letter-spacing:1.179792pt;}
.ls47{letter-spacing:1.181179pt;}
.ls44{letter-spacing:1.185126pt;}
.ls82{letter-spacing:1.199142pt;}
.ls68{letter-spacing:1.202347pt;}
.ls9e{letter-spacing:1.209351pt;}
.ls33{letter-spacing:1.239262pt;}
.ls52{letter-spacing:1.252571pt;}
.ls8e{letter-spacing:1.270694pt;}
.ls61{letter-spacing:1.275003pt;}
.ls8c{letter-spacing:1.276028pt;}
.ls92{letter-spacing:1.292643pt;}
.ls85{letter-spacing:1.297264pt;}
.ls98{letter-spacing:1.297977pt;}
.ls99{letter-spacing:1.301094pt;}
.ls4f{letter-spacing:1.302459pt;}
.ls69{letter-spacing:1.312501pt;}
.lsb8{letter-spacing:1.341211pt;}
.lsbb{letter-spacing:1.379758pt;}
.ls9f{letter-spacing:1.430915pt;}
.ls97{letter-spacing:1.461867pt;}
.ls91{letter-spacing:1.467200pt;}
.lsa8{letter-spacing:1.471854pt;}
.lsb7{letter-spacing:1.475392pt;}
.lsab{letter-spacing:1.477187pt;}
.ls2e{letter-spacing:1.493603pt;}
.lsaf{letter-spacing:1.740162pt;}
.ls95{letter-spacing:1.742581pt;}
.lsb1{letter-spacing:1.745495pt;}
.ls8b{letter-spacing:1.881445pt;}
.lsb3{letter-spacing:2.064105pt;}
.lsbe{letter-spacing:2.069438pt;}
.lsba{letter-spacing:2.187681pt;}
.lsb0{letter-spacing:2.193014pt;}
.ls80{letter-spacing:2.553092pt;}
.ls6f{letter-spacing:3.015380pt;}
.ls96{letter-spacing:29.685167pt;}
.ls30{letter-spacing:40.845064pt;}
.ls9c{letter-spacing:62.668533pt;}
.ls31{letter-spacing:72.330913pt;}
.ls32{letter-spacing:89.099627pt;}
.ls2f{letter-spacing:95.598400pt;}
.lsa6{letter-spacing:102.949693pt;}
.ls2d{letter-spacing:108.147733pt;}
.ls34{letter-spacing:115.568960pt;}
.ls35{letter-spacing:638.556533pt;}
.ls36{letter-spacing:787.278574pt;}
.ws34{word-spacing:-23.545874pt;}
.ws2{word-spacing:-20.868667pt;}
.ws32{word-spacing:-19.704400pt;}
.ws1{word-spacing:-19.549537pt;}
.ws2f{word-spacing:-18.137600pt;}
.ws31{word-spacing:-18.128000pt;}
.wsc{word-spacing:-17.430800pt;}
.ws4{word-spacing:-17.179733pt;}
.wsb{word-spacing:-16.937867pt;}
.ws7{word-spacing:-16.859467pt;}
.wsd{word-spacing:-16.721333pt;}
.ws19{word-spacing:-16.589100pt;}
.ws8{word-spacing:-16.428933pt;}
.ws2b{word-spacing:-16.079467pt;}
.ws9{word-spacing:-15.989733pt;}
.ws2d{word-spacing:-15.829959pt;}
.wsa{word-spacing:-15.722533pt;}
.ws3{word-spacing:-15.651467pt;}
.ws33{word-spacing:-14.669539pt;}
.ws2e{word-spacing:-14.389181pt;}
.ws37{word-spacing:-14.343762pt;}
.ws22{word-spacing:-14.203138pt;}
.ws38{word-spacing:-13.992200pt;}
.ws29{word-spacing:-13.921885pt;}
.ws21{word-spacing:-13.016029pt;}
.ws20{word-spacing:-12.975010pt;}
.ws5{word-spacing:-12.884853pt;}
.ws10{word-spacing:-12.795024pt;}
.ws1e{word-spacing:-12.639853pt;}
.ws1f{word-spacing:-12.555480pt;}
.ws1a{word-spacing:-9.859575pt;}
.wsf{word-spacing:-9.686319pt;}
.wse{word-spacing:-7.659010pt;}
.ws26{word-spacing:-1.046485pt;}
.ws17{word-spacing:-0.811248pt;}
.ws35{word-spacing:-0.740037pt;}
.ws15{word-spacing:-0.626283pt;}
.ws12{word-spacing:-0.477015pt;}
.ws18{word-spacing:-0.441320pt;}
.ws25{word-spacing:-0.250781pt;}
.ws1c{word-spacing:-0.182813pt;}
.ws27{word-spacing:-0.084375pt;}
.ws0{word-spacing:0.000000pt;}
.ws24{word-spacing:0.041016pt;}
.ws13{word-spacing:0.151703pt;}
.ws16{word-spacing:0.195511pt;}
.ws2a{word-spacing:0.219141pt;}
.ws23{word-spacing:0.250781pt;}
.ws1d{word-spacing:0.282422pt;}
.ws14{word-spacing:0.416171pt;}
.ws11{word-spacing:0.441320pt;}
.ws28{word-spacing:0.601173pt;}
.ws1b{word-spacing:0.768752pt;}
.ws36{word-spacing:17.852440pt;}
.ws30{word-spacing:53.389163pt;}
.ws6{word-spacing:64.150773pt;}
.ws2c{word-spacing:1056.603200pt;}
._5{margin-left:-409.967641pt;}
._4{margin-left:-407.595339pt;}
._3{margin-left:-2.402848pt;}
._1{margin-left:-1.288269pt;}
._2{width:1.108355pt;}
._6{width:41.013606pt;}
._7{width:72.269040pt;}
._0{width:518.695871pt;}
.fs17{font-size:12.152517pt;}
.fs28{font-size:12.152721pt;}
.fs23{font-size:12.155383pt;}
.fs24{font-size:12.159308pt;}
.fs26{font-size:12.169710pt;}
.fs1d{font-size:12.172628pt;}
.fs20{font-size:12.175995pt;}
.fs27{font-size:12.191978pt;}
.fs21{font-size:12.202389pt;}
.fs1b{font-size:12.203291pt;}
.fs15{font-size:12.249323pt;}
.fs1e{font-size:12.298391pt;}
.fs18{font-size:12.362481pt;}
.fs16{font-size:12.595695pt;}
.fs22{font-size:12.630122pt;}
.fs1f{font-size:12.663599pt;}
.fs1a{font-size:12.775412pt;}
.fs1c{font-size:13.015813pt;}
.fs19{font-size:13.297504pt;}
.fs25{font-size:21.266906pt;}
.fs41{font-size:25.148747pt;}
.fs4c{font-size:26.953120pt;}
.fs42{font-size:27.176853pt;}
.fs4d{font-size:28.125013pt;}
.fs45{font-size:32.449973pt;}
.fs44{font-size:32.855627pt;}
.fs13{font-size:32.929305pt;}
.fs8{font-size:32.929311pt;}
.fsb{font-size:32.929316pt;}
.fsf{font-size:32.929318pt;}
.fs9{font-size:32.929320pt;}
.fsa{font-size:32.929324pt;}
.fs4{font-size:32.929326pt;}
.fse{font-size:32.929327pt;}
.fs11{font-size:32.929332pt;}
.fs7{font-size:32.929340pt;}
.fs6{font-size:32.929341pt;}
.fs1{font-size:32.929346pt;}
.fs3{font-size:32.929353pt;}
.fs12{font-size:32.929359pt;}
.fsd{font-size:32.929367pt;}
.fs5{font-size:32.929370pt;}
.fs2{font-size:32.929387pt;}
.fsc{font-size:32.929390pt;}
.fs0{font-size:32.986023pt;}
.fs48{font-size:33.398453pt;}
.fs3f{font-size:34.560000pt;}
.fs2d{font-size:38.228320pt;}
.fs4f{font-size:39.257813pt;}
.fs14{font-size:41.161707pt;}
.fs40{font-size:42.184960pt;}
.fs4e{font-size:43.359413pt;}
.fs4a{font-size:46.875040pt;}
.fs49{font-size:47.460960pt;}
.fs3e{font-size:47.969227pt;}
.fs2c{font-size:49.150720pt;}
.fs3d{font-size:49.286933pt;}
.fs3c{font-size:50.578507pt;}
.fs34{font-size:51.539413pt;}
.fs51{font-size:52.728160pt;}
.fs43{font-size:53.948267pt;}
.fs30{font-size:54.719467pt;}
.fs47{font-size:56.250133pt;}
.fs10{font-size:57.626133pt;}
.fs59{font-size:59.113067pt;}
.fs2b{font-size:60.820267pt;}
.fs46{font-size:60.937600pt;}
.fs32{font-size:62.605867pt;}
.fs38{font-size:62.890133pt;}
.fs53{font-size:63.092800pt;}
.fs2e{font-size:63.838933pt;}
.fs37{font-size:63.958933pt;}
.fs50{font-size:64.317867pt;}
.fs54{font-size:64.762133pt;}
.fs55{font-size:65.400000pt;}
.fs36{font-size:65.715733pt;}
.fs29{font-size:66.372800pt;}
.fs3b{font-size:66.885333pt;}
.fs35{font-size:67.437867pt;}
.fs39{font-size:67.751467pt;}
.fs33{font-size:68.718933pt;}
.fs3a{font-size:69.723200pt;}
.fs52{font-size:70.304000pt;}
.fs57{font-size:72.512000pt;}
.fs56{font-size:72.550400pt;}
.fs5a{font-size:74.013333pt;}
.fs4b{font-size:77.929600pt;}
.fs2a{font-size:78.197867pt;}
.fs58{font-size:78.817600pt;}
.fs2f{font-size:82.078933pt;}
.fs31{font-size:83.474667pt;}
.y148{bottom:-0.701333pt;}
.y0{bottom:0.000000pt;}
.y134{bottom:0.617333pt;}
.y3f{bottom:1.434667pt;}
.yc6{bottom:1.436000pt;}
.y6e{bottom:1.456000pt;}
.yca{bottom:1.469333pt;}
.y69{bottom:1.476000pt;}
.y6c{bottom:1.496000pt;}
.y47{bottom:1.502667pt;}
.y3b{bottom:1.506667pt;}
.y41{bottom:1.558667pt;}
.y3d{bottom:1.594667pt;}
.y122{bottom:1.608000pt;}
.y45{bottom:1.609333pt;}
.y4b{bottom:1.640000pt;}
.yda{bottom:1.869333pt;}
.y118{bottom:1.877333pt;}
.y115{bottom:1.878667pt;}
.y5e{bottom:2.088000pt;}
.y5b{bottom:2.089333pt;}
.y150{bottom:2.122667pt;}
.y140{bottom:2.190667pt;}
.ybc{bottom:2.328000pt;}
.yb7{bottom:2.329333pt;}
.y121{bottom:2.542667pt;}
.y13e{bottom:2.698667pt;}
.y11c{bottom:2.700000pt;}
.y43{bottom:2.864000pt;}
.y193{bottom:3.032000pt;}
.ycd{bottom:3.033333pt;}
.y130{bottom:3.138667pt;}
.y113{bottom:3.140000pt;}
.y59{bottom:3.148000pt;}
.y57{bottom:3.201333pt;}
.y51{bottom:3.341333pt;}
.y109{bottom:3.364000pt;}
.y10d{bottom:3.365333pt;}
.y53{bottom:3.434667pt;}
.y4d{bottom:3.640000pt;}
.y7e{bottom:3.754667pt;}
.y6{bottom:3.888000pt;}
.y39{bottom:3.929333pt;}
.y35{bottom:3.945333pt;}
.y55{bottom:3.996000pt;}
.y30{bottom:3.998667pt;}
.y4f{bottom:4.021333pt;}
.y33{bottom:4.052000pt;}
.ye{bottom:4.072000pt;}
.y2{bottom:4.084000pt;}
.y37{bottom:4.110667pt;}
.y8{bottom:4.224000pt;}
.y49{bottom:4.228000pt;}
.y4{bottom:4.321333pt;}
.yc{bottom:4.361333pt;}
.y11f{bottom:4.381333pt;}
.y7b{bottom:4.437333pt;}
.y12{bottom:4.445333pt;}
.y175{bottom:4.853333pt;}
.y173{bottom:4.854667pt;}
.y76{bottom:4.856000pt;}
.y181{bottom:4.981333pt;}
.y17b{bottom:4.982667pt;}
.y84{bottom:5.016000pt;}
.y183{bottom:5.032000pt;}
.y80{bottom:5.096000pt;}
.y70{bottom:5.337333pt;}
.y27{bottom:5.658667pt;}
.y22{bottom:5.660000pt;}
.y74{bottom:5.896000pt;}
.y82{bottom:6.188000pt;}
.ya{bottom:7.762667pt;}
.y20{bottom:8.530667pt;}
.y1e{bottom:8.673333pt;}
.y18{bottom:9.052000pt;}
.y1a{bottom:9.309333pt;}
.y14{bottom:9.862667pt;}
.y1c{bottom:10.826667pt;}
.y16{bottom:10.896000pt;}
.y10{bottom:11.456000pt;}
.y7d{bottom:13.312000pt;}
.y88{bottom:18.694667pt;}
.y8a{bottom:18.696000pt;}
.y19f{bottom:97.857333pt;}
.y1ac{bottom:97.957333pt;}
.y194{bottom:97.958667pt;}
.yfc{bottom:100.697333pt;}
.ydd{bottom:101.102667pt;}
.ycb{bottom:107.389333pt;}
.y1c9{bottom:109.277333pt;}
.y1ee{bottom:112.353333pt;}
.y1e5{bottom:112.500000pt;}
.ydc{bottom:115.300000pt;}
.y1a9{bottom:115.400000pt;}
.yc8{bottom:115.401333pt;}
.y16c{bottom:120.410667pt;}
.y21b{bottom:124.218667pt;}
.y210{bottom:124.512000pt;}
.y16d{bottom:130.957333pt;}
.y154{bottom:132.129333pt;}
.y145{bottom:134.180000pt;}
.y15d{bottom:153.592000pt;}
.y11d{bottom:163.769333pt;}
.y168{bottom:166.406667pt;}
.y13c{bottom:166.552000pt;}
.y1c7{bottom:166.553333pt;}
.y1e3{bottom:166.698667pt;}
.y14e{bottom:168.164000pt;}
.y11a{bottom:168.896000pt;}
.y219{bottom:198.698667pt;}
.y1d9{bottom:199.978667pt;}
.y15c{bottom:202.596000pt;}
.y21c{bottom:204.265333pt;}
.y1db{bottom:205.545333pt;}
.y211{bottom:233.854667pt;}
.y1cb{bottom:235.134667pt;}
.y15a{bottom:240.938667pt;}
.y159{bottom:253.389333pt;}
.y212{bottom:258.464000pt;}
.y160{bottom:261.106667pt;}
.ye8{bottom:262.573333pt;}
.y1d2{bottom:263.553333pt;}
.y1a8{bottom:265.134667pt;}
.y1ad{bottom:269.089333pt;}
.y1cc{bottom:271.756000pt;}
.y5f{bottom:272.997333pt;}
.y65{bottom:273.376000pt;}
.y67{bottom:274.516000pt;}
.y61{bottom:275.274667pt;}
.y63{bottom:275.654667pt;}
.y1d3{bottom:276.297333pt;}
.y54{bottom:278.998667pt;}
.y58{bottom:279.037333pt;}
.y52{bottom:279.345333pt;}
.y48{bottom:279.761333pt;}
.y50{bottom:280.177333pt;}
.y167{bottom:280.298667pt;}
.y6a{bottom:281.809333pt;}
.y56{bottom:281.836000pt;}
.y62{bottom:282.110667pt;}
.y4e{bottom:282.180000pt;}
.y4c{bottom:282.289333pt;}
.y1d1{bottom:283.328000pt;}
.y16e{bottom:285.718667pt;}
.yde{bottom:286.912000pt;}
.yfd{bottom:287.013333pt;}
.y1a1{bottom:289.573333pt;}
.y213{bottom:294.353333pt;}
.yb0{bottom:301.050667pt;}
.yad{bottom:301.824000pt;}
.y64{bottom:302.238667pt;}
.y1d5{bottom:306.033333pt;}
.y3a{bottom:306.280000pt;}
.y4a{bottom:306.705333pt;}
.y3c{bottom:307.041333pt;}
.y46{bottom:307.050667pt;}
.y42{bottom:307.797333pt;}
.ydf{bottom:307.801333pt;}
.yfe{bottom:307.902667pt;}
.y44{bottom:308.281333pt;}
.y6b{bottom:308.436000pt;}
.y3e{bottom:308.889333pt;}
.y40{bottom:309.084000pt;}
.y68{bottom:310.664000pt;}
.y6d{bottom:310.837333pt;}
.y66{bottom:311.733333pt;}
.y5a{bottom:312.308000pt;}
.y5c{bottom:312.872000pt;}
.y1a2{bottom:313.404000pt;}
.y60{bottom:314.012000pt;}
.y5d{bottom:315.150667pt;}
.y161{bottom:315.308000pt;}
.y75{bottom:317.196000pt;}
.y78{bottom:317.896000pt;}
.y184{bottom:319.193333pt;}
.y1cd{bottom:319.509333pt;}
.y186{bottom:321.726667pt;}
.y77{bottom:324.412000pt;}
.y73{bottom:325.113333pt;}
.y1d4{bottom:327.713333pt;}
.yab{bottom:329.210667pt;}
.yaf{bottom:329.716000pt;}
.y214{bottom:330.094667pt;}
.ye0{bottom:332.037333pt;}
.yff{bottom:332.138667pt;}
.y8c{bottom:338.238667pt;}
.y158{bottom:339.869333pt;}
.y1a3{bottom:343.521333pt;}
.y182{bottom:348.522667pt;}
.y16f{bottom:350.429333pt;}
.y185{bottom:351.893333pt;}
.ye1{bottom:356.172000pt;}
.y100{bottom:356.273333pt;}
.y162{bottom:359.840000pt;}
.y8b{bottom:362.684000pt;}
.y215{bottom:365.984000pt;}
.y1ce{bottom:367.264000pt;}
.yb1{bottom:367.672000pt;}
.yac{bottom:370.274667pt;}
.yae{bottom:370.958667pt;}
.y1a4{bottom:373.537333pt;}
.y1d6{bottom:374.148000pt;}
.y187{bottom:376.226667pt;}
.y188{bottom:379.860000pt;}
.ye2{bottom:380.408000pt;}
.y101{bottom:380.509333pt;}
.y119{bottom:394.538667pt;}
.y120{bottom:397.614667pt;}
.y216{bottom:401.726667pt;}
.y11e{bottom:402.449333pt;}
.y1a5{bottom:403.553333pt;}
.ye3{bottom:404.542667pt;}
.y102{bottom:404.644000pt;}
.y25{bottom:406.425333pt;}
.y2c{bottom:407.454667pt;}
.y163{bottom:407.593333pt;}
.y2e{bottom:410.541333pt;}
.y28{bottom:412.600000pt;}
.y2a{bottom:413.629333pt;}
.y1cf{bottom:415.017333pt;}
.y170{bottom:416.892000pt;}
.y1d7{bottom:420.730667pt;}
.y1b{bottom:422.688000pt;}
.y1f{bottom:422.794667pt;}
.y19{bottom:423.626667pt;}
.yf{bottom:424.756000pt;}
.y17{bottom:425.882667pt;}
.ye4{bottom:428.778667pt;}
.y103{bottom:428.880000pt;}
.y31{bottom:430.306667pt;}
.y1d{bottom:430.376000pt;}
.y29{bottom:431.122667pt;}
.y15{bottom:431.310667pt;}
.y13{bottom:431.604000pt;}
.y108{bottom:432.038667pt;}
.y1a6{bottom:433.670667pt;}
.y106{bottom:436.586667pt;}
.ye7{bottom:436.688000pt;}
.y171{bottom:437.372000pt;}
.y217{bottom:437.614667pt;}
.y72{bottom:440.861333pt;}
.y15e{bottom:443.222667pt;}
.y1ab{bottom:448.172000pt;}
.y105{bottom:451.493333pt;}
.ye6{bottom:451.594667pt;}
.ye5{bottom:452.913333pt;}
.y104{bottom:453.014667pt;}
.y164{bottom:455.348000pt;}
.y117{bottom:457.966667pt;}
.y1d8{bottom:459.109333pt;}
.y116{bottom:461.481333pt;}
.y1d0{bottom:462.772000pt;}
.y10a{bottom:463.093333pt;}
.y1a7{bottom:463.688000pt;}
.ya6{bottom:468.077333pt;}
.ya3{bottom:469.148000pt;}
.ya8{bottom:472.912000pt;}
.y218{bottom:473.357333pt;}
.ye9{bottom:473.600000pt;}
.y107{bottom:473.701333pt;}
.y1aa{bottom:476.261333pt;}
.y114{bottom:477.741333pt;}
.y112{bottom:481.257333pt;}
.y2b{bottom:485.661333pt;}
.y1{bottom:496.612000pt;}
.ydb{bottom:496.813333pt;}
.y11{bottom:497.765333pt;}
.y3{bottom:498.677333pt;}
.yd{bottom:498.701333pt;}
.y19e{bottom:499.373333pt;}
.y10b{bottom:499.861333pt;}
.y9{bottom:500.722667pt;}
.yb{bottom:502.033333pt;}
.y32{bottom:502.456000pt;}
.y36{bottom:502.529333pt;}
.y165{bottom:503.101333pt;}
.y1a0{bottom:503.228000pt;}
.y21a{bottom:503.533333pt;}
.y5{bottom:503.685333pt;}
.y7{bottom:504.212000pt;}
.y1da{bottom:504.813333pt;}
.y2f{bottom:508.490667pt;}
.y34{bottom:508.960000pt;}
.ya7{bottom:509.881333pt;}
.y2d{bottom:511.388000pt;}
.ya4{bottom:512.724000pt;}
.y21{bottom:512.946667pt;}
.y23{bottom:514.474667pt;}
.yaa{bottom:515.234667pt;}
.y26{bottom:517.562667pt;}
.y38{bottom:518.109333pt;}
.y24{bottom:520.649333pt;}
.yce{bottom:521.152000pt;}
.yf0{bottom:521.253333pt;}
.y196{bottom:523.712000pt;}
.y7f{bottom:531.278667pt;}
.y16b{bottom:531.812000pt;}
.y10c{bottom:536.628000pt;}
.ya5{bottom:537.746667pt;}
.ycf{bottom:541.737333pt;}
.ya2{bottom:541.773333pt;}
.y15f{bottom:541.960000pt;}
.yf1{bottom:542.142667pt;}
.y15b{bottom:543.424000pt;}
.ya9{bottom:543.446667pt;}
.y79{bottom:547.445333pt;}
.y197{bottom:547.541333pt;}
.y166{bottom:550.856000pt;}
.y16a{bottom:551.588000pt;}
.y17e{bottom:555.294667pt;}
.y17f{bottom:562.490667pt;}
.y17c{bottom:564.478667pt;}
.yd0{bottom:565.364000pt;}
.yf2{bottom:566.378667pt;}
.y10e{bottom:573.396000pt;}
.y198{bottom:577.660000pt;}
.y169{bottom:584.986667pt;}
.yd1{bottom:588.992000pt;}
.yf3{bottom:590.513333pt;}
.y17a{bottom:593.521333pt;}
.y17d{bottom:596.860000pt;}
.y199{bottom:607.676000pt;}
.y10f{bottom:610.017333pt;}
.yd2{bottom:612.620000pt;}
.yf4{bottom:614.749333pt;}
.y81{bottom:615.601333pt;}
.y8e{bottom:617.810667pt;}
.y1c6{bottom:631.658667pt;}
.y206{bottom:631.978667pt;}
.y1ca{bottom:635.906667pt;}
.y12c{bottom:636.138667pt;}
.yd3{bottom:636.248000pt;}
.y147{bottom:636.870667pt;}
.y20f{bottom:637.545333pt;}
.y19a{bottom:637.692000pt;}
.y133{bottom:638.189333pt;}
.yf5{bottom:638.884000pt;}
.y146{bottom:641.705333pt;}
.y1e6{bottom:641.852000pt;}
.y132{bottom:643.024000pt;}
.y180{bottom:644.342667pt;}
.y8d{bottom:646.238667pt;}
.y110{bottom:646.785333pt;}
.ya0{bottom:657.524000pt;}
.yfa{bottom:658.150667pt;}
.yd8{bottom:658.456000pt;}
.y9c{bottom:659.736000pt;}
.yd4{bottom:659.874667pt;}
.y99{bottom:659.916000pt;}
.yf6{bottom:663.120000pt;}
.y1b8{bottom:666.814667pt;}
.y204{bottom:667.134667pt;}
.y19b{bottom:667.809333pt;}
.y155{bottom:671.176000pt;}
.y135{bottom:671.294667pt;}
.y1dc{bottom:671.441333pt;}
.yf9{bottom:673.057333pt;}
.yd7{bottom:673.362667pt;}
.y123{bottom:673.638667pt;}
.y8f{bottom:674.673333pt;}
.y1fc{bottom:679.878667pt;}
.y19d{bottom:682.108000pt;}
.yd5{bottom:683.502667pt;}
.y111{bottom:683.552000pt;}
.y9e{bottom:686.053333pt;}
.y71{bottom:686.993333pt;}
.yf7{bottom:687.254667pt;}
.yf8{bottom:687.964000pt;}
.yd6{bottom:688.269333pt;}
.y19c{bottom:697.825333pt;}
.y1f6{bottom:699.566667pt;}
.y9a{bottom:699.642667pt;}
.ya1{bottom:699.869333pt;}
.y205{bottom:701.265333pt;}
.y11b{bottom:701.716000pt;}
.y1b9{bottom:703.436000pt;}
.y136{bottom:703.961333pt;}
.y124{bottom:704.693333pt;}
.y1e8{bottom:705.718667pt;}
.y1dd{bottom:705.865333pt;}
.yd9{bottom:707.840000pt;}
.y1ef{bottom:707.916000pt;}
.yfb{bottom:707.941333pt;}
.y1bf{bottom:708.709333pt;}
.y1fd{bottom:711.666667pt;}
.y1fb{bottom:712.164000pt;}
.y149{bottom:715.826667pt;}
.y1c1{bottom:715.886667pt;}
.y1c2{bottom:716.473333pt;}
.y156{bottom:717.014667pt;}
.y1f4{bottom:720.366667pt;}
.y9d{bottom:725.514667pt;}
.y9b{bottom:726.124000pt;}
.y9f{bottom:728.096000pt;}
.yc7{bottom:731.373333pt;}
.ycc{bottom:733.300000pt;}
.y190{bottom:733.613333pt;}
.y1b6{bottom:734.938667pt;}
.y1c0{bottom:736.834667pt;}
.y195{bottom:737.569333pt;}
.y1be{bottom:738.006667pt;}
.y125{bottom:741.461333pt;}
.y1fa{bottom:741.753333pt;}
.y1f9{bottom:742.486667pt;}
.y1fe{bottom:743.600000pt;}
.y137{bottom:743.658667pt;}
.y87{bottom:748.900000pt;}
.y1e9{bottom:749.224000pt;}
.y1de{bottom:749.370667pt;}
.y89{bottom:750.289333pt;}
.y1ba{bottom:751.189333pt;}
.y20a{bottom:754.440000pt;}
.yb6{bottom:754.697333pt;}
.y1f0{bottom:755.669333pt;}
.y85{bottom:755.984000pt;}
.y157{bottom:757.281333pt;}
.y189{bottom:758.053333pt;}
.yb8{bottom:763.520000pt;}
.y14a{bottom:763.580000pt;}
.y174{bottom:772.074667pt;}
.y1ff{bottom:775.386667pt;}
.y126{bottom:778.228000pt;}
.y20c{bottom:779.634667pt;}
.y18a{bottom:781.884000pt;}
.y138{bottom:783.501333pt;}
.y1b7{bottom:786.325333pt;}
.yb9{bottom:789.986667pt;}
.yc3{bottom:791.406667pt;}
.yed{bottom:792.217333pt;}
.y1ea{bottom:792.584000pt;}
.y1df{bottom:792.730667pt;}
.yc2{bottom:794.144000pt;}
.y20b{bottom:794.869333pt;}
.yec{bottom:794.956000pt;}
.y1bb{bottom:798.944000pt;}
.y172{bottom:800.368000pt;}
.y1f1{bottom:803.424000pt;}
.y176{bottom:803.620000pt;}
.y7a{bottom:804.364000pt;}
.y1c3{bottom:804.949333pt;}
.y200{bottom:807.173333pt;}
.yc5{bottom:809.050667pt;}
.yef{bottom:809.558667pt;}
.y1f5{bottom:810.162667pt;}
.y14b{bottom:811.333333pt;}
.yc4{bottom:811.789333pt;}
.y18b{bottom:812.001333pt;}
.yee{bottom:812.296000pt;}
.y127{bottom:814.996000pt;}
.yba{bottom:816.453333pt;}
.y1af{bottom:817.997333pt;}
.y209{bottom:823.286667pt;}
.y139{bottom:823.345333pt;}
.y1b3{bottom:826.236000pt;}
.y20d{bottom:826.802667pt;}
.yb2{bottom:834.213333pt;}
.y1b5{bottom:835.156000pt;}
.y1eb{bottom:835.944000pt;}
.y1e0{bottom:836.089333pt;}
.y201{bottom:839.108000pt;}
.y18c{bottom:842.017333pt;}
.ybb{bottom:842.820000pt;}
.y177{bottom:844.806667pt;}
.y1bc{bottom:846.697333pt;}
.y93{bottom:849.664000pt;}
.y96{bottom:850.064000pt;}
.y91{bottom:850.421333pt;}
.y1f2{bottom:851.177333pt;}
.y128{bottom:851.617333pt;}
.y1c4{bottom:852.850667pt;}
.y208{bottom:854.049333pt;}
.y144{bottom:854.986667pt;}
.y1f8{bottom:856.597333pt;}
.y1b1{bottom:856.664000pt;}
.y14c{bottom:859.088000pt;}
.y13a{bottom:863.042667pt;}
.ybd{bottom:869.286667pt;}
.y1ae{bottom:869.501333pt;}
.y143{bottom:869.928000pt;}
.y153{bottom:870.806667pt;}
.y202{bottom:870.894667pt;}
.y18d{bottom:872.033333pt;}
.y1e7{bottom:874.812000pt;}
.y95{bottom:877.050667pt;}
.y98{bottom:877.556000pt;}
.y1b4{bottom:878.190667pt;}
.y1ec{bottom:879.449333pt;}
.y1e1{bottom:879.596000pt;}
.y83{bottom:881.382667pt;}
.y142{bottom:884.869333pt;}
.y1b2{bottom:887.100000pt;}
.y129{bottom:888.385333pt;}
.y20e{bottom:888.618667pt;}
.y131{bottom:889.117333pt;}
.y152{bottom:890.582667pt;}
.y1c5{bottom:891.229333pt;}
.y92{bottom:892.569333pt;}
.y12f{bottom:892.633333pt;}
.y1bd{bottom:894.452000pt;}
.y1f7{bottom:895.122667pt;}
.ybe{bottom:895.753333pt;}
.y1f3{bottom:898.932000pt;}
.y1b0{bottom:899.666667pt;}
.y141{bottom:899.810667pt;}
.y18e{bottom:902.150667pt;}
.y203{bottom:902.681333pt;}
.y13b{bottom:902.886667pt;}
.y179{bottom:905.270667pt;}
.y14d{bottom:906.841333pt;}
.y178{bottom:908.774667pt;}
.y12e{bottom:908.892000pt;}
.y151{bottom:910.357333pt;}
.y12d{bottom:912.408000pt;}
.y13f{bottom:914.752000pt;}
.yc1{bottom:915.224000pt;}
.yb3{bottom:915.813333pt;}
.yeb{bottom:916.338667pt;}
.y192{bottom:917.464000pt;}
.yc0{bottom:917.961333pt;}
.y94{bottom:918.114667pt;}
.y97{bottom:918.798667pt;}
.yea{bottom:919.077333pt;}
.y90{bottom:920.665333pt;}
.ybf{bottom:922.220000pt;}
.y1ed{bottom:922.808000pt;}
.y1e2{bottom:922.954667pt;}
.y12a{bottom:925.152000pt;}
.y6f{bottom:927.594667pt;}
.y18f{bottom:932.166667pt;}
.y1c8{bottom:936.493333pt;}
.y207{bottom:936.813333pt;}
.y14f{bottom:940.533333pt;}
.y13d{bottom:940.973333pt;}
.yc9{bottom:941.081333pt;}
.y1e4{bottom:941.118667pt;}
.y12b{bottom:943.316000pt;}
.yb4{bottom:944.613333pt;}
.y191{bottom:944.741333pt;}
.y86{bottom:947.292000pt;}
.y7c{bottom:952.498667pt;}
.yb5{bottom:971.013333pt;}
.h31{height:4.558667pt;}
.h54{height:4.582667pt;}
.h49{height:4.652000pt;}
.h4b{height:4.704000pt;}
.h4f{height:4.786667pt;}
.h3d{height:4.804000pt;}
.h43{height:4.822667pt;}
.h52{height:4.898667pt;}
.h45{height:4.937333pt;}
.h39{height:4.941333pt;}
.h2d{height:4.966667pt;}
.h3f{height:5.181333pt;}
.h51{height:5.182667pt;}
.h33{height:5.293333pt;}
.h2f{height:5.564000pt;}
.h47{height:5.593333pt;}
.h41{height:5.622667pt;}
.h37{height:5.705333pt;}
.h3b{height:5.848000pt;}
.h9f{height:5.858667pt;}
.h35{height:5.966667pt;}
.h4d{height:6.836000pt;}
.h96{height:7.177333pt;}
.h7b{height:7.300000pt;}
.h7d{height:7.301333pt;}
.h80{height:7.809333pt;}
.h93{height:8.056000pt;}
.h83{height:9.532000pt;}
.h8a{height:9.668000pt;}
.ha1{height:11.278667pt;}
.h32{height:12.010105pt;}
.h55{height:12.010307pt;}
.h4a{height:12.012937pt;}
.h4c{height:12.016816pt;}
.h50{height:12.027096pt;}
.h3e{height:12.029980pt;}
.h44{height:12.033307pt;}
.h53{height:12.049104pt;}
.h46{height:12.059392pt;}
.h3a{height:12.060284pt;}
.h2e{height:12.105776pt;}
.h40{height:12.154269pt;}
.h7a{height:12.168000pt;}
.h78{height:12.169333pt;}
.h34{height:12.217609pt;}
.h9b{height:12.304000pt;}
.h99{height:12.305333pt;}
.h5{height:12.349333pt;}
.h27{height:12.420000pt;}
.h30{height:12.448089pt;}
.h48{height:12.482112pt;}
.h42{height:12.515198pt;}
.h1d{height:12.608000pt;}
.h38{height:12.625700pt;}
.h1f{height:12.744000pt;}
.h3c{height:12.863284pt;}
.h24{height:12.968000pt;}
.h11{height:13.017333pt;}
.h17{height:13.069333pt;}
.h36{height:13.141674pt;}
.h26{height:13.272000pt;}
.h19{height:13.380000pt;}
.hd{height:13.388000pt;}
.h1{height:13.457333pt;}
.h92{height:13.476000pt;}
.h9e{height:13.477333pt;}
.h29{height:13.622667pt;}
.h98{height:13.769333pt;}
.h8e{height:13.770667pt;}
.h13{height:14.041333pt;}
.h7{height:14.338667pt;}
.h2b{height:14.406667pt;}
.h5e{height:15.017333pt;}
.h3{height:15.076000pt;}
.h1b{height:15.158667pt;}
.h15{height:15.234667pt;}
.hb{height:15.462667pt;}
.hb2{height:15.616000pt;}
.h82{height:15.617333pt;}
.hf{height:15.846667pt;}
.h9{height:16.170667pt;}
.h95{height:16.258667pt;}
.h88{height:16.260000pt;}
.h87{height:17.577333pt;}
.h85{height:17.578667pt;}
.h21{height:18.522667pt;}
.h23{height:18.524000pt;}
.h66{height:18.696000pt;}
.hac{height:18.840000pt;}
.haa{height:18.841333pt;}
.haf{height:19.337333pt;}
.had{height:19.338667pt;}
.hb0{height:19.529333pt;}
.h5b{height:20.061333pt;}
.h56{height:20.280000pt;}
.h58{height:20.281333pt;}
.h4e{height:21.017684pt;}
.h62{height:21.056000pt;}
.h68{height:21.057333pt;}
.h60{height:21.844000pt;}
.h90{height:22.557333pt;}
.h9d{height:22.558667pt;}
.h59{height:24.358667pt;}
.h5d{height:24.360000pt;}
.h7c{height:26.229357pt;}
.h94{height:28.111262pt;}
.h7f{height:28.344609pt;}
.h97{height:29.333510pt;}
.h69{height:32.374667pt;}
.h2a{height:32.543415pt;}
.h12{height:32.543420pt;}
.h18{height:32.543425pt;}
.h20{height:32.543427pt;}
.h14{height:32.543430pt;}
.h16{height:32.543433pt;}
.ha{height:32.543436pt;}
.h1e{height:32.543437pt;}
.h25{height:32.543442pt;}
.h10{height:32.543449pt;}
.he{height:32.543451pt;}
.h4{height:32.543455pt;}
.h8{height:32.543462pt;}
.h28{height:32.543468pt;}
.h1c{height:32.543476pt;}
.hc{height:32.543479pt;}
.h6{height:32.543495pt;}
.h1a{height:32.543499pt;}
.h2{height:32.599468pt;}
.h77{height:33.918750pt;}
.h84{height:34.267392pt;}
.h8b{height:34.833543pt;}
.h61{height:37.780332pt;}
.h2c{height:40.679343pt;}
.ha0{height:40.944672pt;}
.h79{height:43.997595pt;}
.h9a{height:45.222513pt;}
.h64{height:46.088000pt;}
.h5f{height:48.574735pt;}
.h8f{height:48.889202pt;}
.h8d{height:49.500298pt;}
.ha5{height:51.724059pt;}
.h67{height:53.704164pt;}
.h81{height:56.266356pt;}
.h22{height:56.950827pt;}
.h89{height:58.667131pt;}
.ha7{height:58.672465pt;}
.h5c{height:59.691766pt;}
.h71{height:61.723227pt;}
.hab{height:61.891326pt;}
.h70{height:62.772195pt;}
.ha3{height:63.124469pt;}
.hae{height:63.528870pt;}
.h86{height:63.556013pt;}
.hb1{height:64.154590pt;}
.h63{height:64.337675pt;}
.h6f{height:64.496398pt;}
.h57{height:65.108865pt;}
.h74{height:65.644297pt;}
.h75{height:66.096398pt;}
.h6e{height:66.186578pt;}
.h72{height:66.494359pt;}
.h6d{height:67.443875pt;}
.h73{height:68.429508pt;}
.ha6{height:68.965203pt;}
.ha9{height:68.999531pt;}
.hb5{height:71.166562pt;}
.hb4{height:71.204250pt;}
.h5a{height:76.746930pt;}
.hb7{height:77.355164pt;}
.h91{height:81.278137pt;}
.h65{height:82.720175pt;}
.h6c{height:84.695116pt;}
.hb8{height:92.510535pt;}
.hba{height:92.515869pt;}
.hb6{height:98.128497pt;}
.h76{height:108.009529pt;}
.h9c{height:108.558138pt;}
.ha8{height:119.785202pt;}
.ha2{height:139.060469pt;}
.hb9{height:160.048039pt;}
.h6a{height:179.792487pt;}
.h6b{height:204.878901pt;}
.hb3{height:236.174667pt;}
.h7e{height:236.176000pt;}
.h8c{height:341.162667pt;}
.ha4{height:566.096000pt;}
.h0{height:1056.000000pt;}
.w1b{width:5.585333pt;}
.w2e{width:5.624000pt;}
.w27{width:5.729333pt;}
.w28{width:5.806667pt;}
.w2c{width:5.933333pt;}
.w21{width:5.961333pt;}
.w24{width:5.989333pt;}
.w2d{width:6.105333pt;}
.w25{width:6.166667pt;}
.w1f{width:6.172000pt;}
.w22{width:6.549333pt;}
.w1c{width:6.724000pt;}
.w19{width:7.100000pt;}
.w1a{width:7.166667pt;}
.w26{width:7.217333pt;}
.w23{width:7.265333pt;}
.w1e{width:7.408000pt;}
.w2b{width:7.445333pt;}
.w29{width:7.446667pt;}
.w2a{width:7.448000pt;}
.w20{width:7.657333pt;}
.w1d{width:7.881333pt;}
.w3{width:11.113333pt;}
.w16{width:11.192000pt;}
.wf{width:11.401333pt;}
.w10{width:11.554667pt;}
.w13{width:11.806667pt;}
.w9{width:11.860000pt;}
.wc{width:11.920000pt;}
.w15{width:12.148000pt;}
.wd{width:12.272000pt;}
.w7{width:12.282667pt;}
.w18{width:12.348000pt;}
.w17{width:12.550667pt;}
.w14{width:13.030667pt;}
.wa{width:13.032000pt;}
.w4{width:13.380000pt;}
.w1{width:14.125333pt;}
.w2{width:14.260000pt;}
.wab{width:14.284000pt;}
.we{width:14.361333pt;}
.wb{width:14.456000pt;}
.wae{width:14.661333pt;}
.w6{width:14.740000pt;}
.wb0{width:14.805333pt;}
.wb1{width:14.806667pt;}
.w12{width:14.817333pt;}
.w11{width:14.818667pt;}
.w8{width:15.236000pt;}
.w2f{width:15.486667pt;}
.w30{width:15.488000pt;}
.w5{width:15.680000pt;}
.w34{width:16.658667pt;}
.w32{width:17.493333pt;}
.w31{width:20.630667pt;}
.w33{width:20.632000pt;}
.wac{width:23.746667pt;}
.wad{width:23.748000pt;}
.waf{width:24.376000pt;}
.wb2{width:24.616000pt;}
.w36{width:26.214667pt;}
.w37{width:49.969333pt;}
.w5c{width:62.466667pt;}
.w72{width:62.568000pt;}
.wce{width:62.669333pt;}
.wc4{width:65.509333pt;}
.wbb{width:65.610667pt;}
.wa3{width:66.210667pt;}
.w3d{width:69.904000pt;}
.w4e{width:70.477333pt;}
.w6b{width:70.985333pt;}
.w35{width:72.750667pt;}
.w47{width:73.216000pt;}
.w3e{width:85.101333pt;}
.w3b{width:85.868000pt;}
.w65{width:87.818667pt;}
.w64{width:88.426667pt;}
.w75{width:88.730667pt;}
.wcd{width:89.034667pt;}
.w60{width:89.340000pt;}
.w74{width:90.049333pt;}
.w5f{width:90.657333pt;}
.w78{width:91.469333pt;}
.w4d{width:91.570667pt;}
.wc3{width:91.976000pt;}
.w6a{width:92.077333pt;}
.waa{width:92.138667pt;}
.w4c{width:94.510667pt;}
.w69{width:95.728000pt;}
.w3a{width:97.262667pt;}
.wa6{width:97.412000pt;}
.w5b{width:99.074667pt;}
.w71{width:99.176000pt;}
.w46{width:102.928000pt;}
.w8b{width:110.741333pt;}
.w39{width:113.153333pt;}
.wcc{width:115.502667pt;}
.wc2{width:118.341333pt;}
.wba{width:118.442667pt;}
.w4b{width:118.950667pt;}
.wfe{width:120.117333pt;}
.w68{width:120.166667pt;}
.w111{width:121.728000pt;}
.w4a{width:126.252000pt;}
.w67{width:128.178667pt;}
.w95{width:128.760000pt;}
.w7c{width:129.198667pt;}
.w11d{width:131.249333pt;}
.we9{width:131.396000pt;}
.w45{width:132.640000pt;}
.wd4{width:135.058667pt;}
.w5a{width:135.682667pt;}
.w70{width:135.784000pt;}
.w63{width:138.014667pt;}
.w49{width:138.825333pt;}
.w77{width:139.840000pt;}
.w106{width:140.038667pt;}
.w66{width:140.752000pt;}
.wcb{width:141.868000pt;}
.wc1{width:144.808000pt;}
.wb9{width:144.910667pt;}
.wd6{width:146.337333pt;}
.w113{width:147.949333pt;}
.w73{width:149.270667pt;}
.w5e{width:149.878667pt;}
.wf1{width:151.025333pt;}
.wa2{width:152.050667pt;}
.w6f{width:156.673333pt;}
.w44{width:162.352000pt;}
.wfd{width:165.966667pt;}
.wca{width:168.334667pt;}
.w6e{width:168.638667pt;}
.w6d{width:169.856000pt;}
.w110{width:170.800000pt;}
.wb8{width:171.276000pt;}
.w59{width:172.289333pt;}
.w61{width:173.912000pt;}
.w76{width:174.013333pt;}
.w82{width:175.048000pt;}
.w90{width:177.832000pt;}
.w54{width:179.793333pt;}
.w6c{width:181.821333pt;}
.wc6{width:183.545333pt;}
.wbe{width:183.646667pt;}
.w81{width:184.424000pt;}
.w8f{width:187.206667pt;}
.w112{width:190.869333pt;}
.w43{width:192.064000pt;}
.we1{width:193.945333pt;}
.wc0{width:194.598667pt;}
.wc9{width:194.700000pt;}
.wb7{width:197.742667pt;}
.w55{width:197.945333pt;}
.wd7{width:199.072000pt;}
.w11c{width:199.950667pt;}
.we8{width:200.244000pt;}
.w38{width:202.362667pt;}
.w105{width:203.760000pt;}
.w8a{width:208.886667pt;}
.w58{width:208.897333pt;}
.w50{width:211.330667pt;}
.wd3{width:211.377333pt;}
.wfc{width:211.816000pt;}
.w94{width:214.745333pt;}
.w7b{width:215.038667pt;}
.wa5{width:217.968000pt;}
.w10f{width:220.018667pt;}
.wa9{width:220.605333pt;}
.wbf{width:221.066667pt;}
.wc8{width:221.168000pt;}
.w42{width:221.877333pt;}
.w4f{width:223.297333pt;}
.wb6{width:224.108000pt;}
.w52{width:227.049333pt;}
.we0{width:230.273333pt;}
.w9e{width:231.592000pt;}
.w87{width:231.884000pt;}
.w91{width:232.030667pt;}
.wa7{width:234.228000pt;}
.wa1{width:238.037333pt;}
.w51{width:239.014667pt;}
.wf0{width:241.552000pt;}
.w57{width:245.505333pt;}
.wb5{width:247.533333pt;}
.wf4{width:247.850667pt;}
.w103{width:248.290667pt;}
.w109{width:248.584000pt;}
.w97{width:251.220000pt;}
.wec{width:251.513333pt;}
.w41{width:251.589333pt;}
.w84{width:251.660000pt;}
.w104{width:254.150667pt;}
.w9d{width:254.589333pt;}
.w86{width:255.029333pt;}
.wfb{width:257.518667pt;}
.wd8{width:262.646667pt;}
.w99{width:265.136000pt;}
.w9b{width:265.576000pt;}
.w9a{width:266.161333pt;}
.w11b{width:268.652000pt;}
.we7{width:268.798667pt;}
.w10e{width:269.092000pt;}
.w116{width:273.193333pt;}
.wb4{width:273.898667pt;}
.w9c{width:273.925333pt;}
.wc7{width:274.000000pt;}
.w108{width:274.072000pt;}
.w85{width:274.365333pt;}
.wdd{width:279.492000pt;}
.wed{width:279.785333pt;}
.w40{width:281.301333pt;}
.w56{width:282.112000pt;}
.w118{width:282.129333pt;}
.w102{width:282.568000pt;}
.wd2{width:287.694667pt;}
.wcf{width:287.792000pt;}
.wbd{width:289.109333pt;}
.wc5{width:289.514667pt;}
.wf3{width:296.630667pt;}
.w107{width:296.777333pt;}
.wb3{width:297.324000pt;}
.w93{width:300.585333pt;}
.w7a{width:301.025333pt;}
.wfa{width:303.369333pt;}
.w114{width:303.808000pt;}
.wd9{width:306.445333pt;}
.w89{width:307.030667pt;}
.w101{width:308.349333pt;}
.w3f{width:311.013333pt;}
.w117{width:317.432000pt;}
.w10d{width:318.164000pt;}
.w5d{width:319.329333pt;}
.w48{width:320.849333pt;}
.wa0{width:323.877333pt;}
.wdf{width:330.176000pt;}
.wef{width:331.933333pt;}
.w115{width:332.665333pt;}
.w11a{width:337.353333pt;}
.we6{width:337.500000pt;}
.w62{width:339.710667pt;}
.wbc{width:339.711333pt;}
.w53{width:339.712000pt;}
.wf9{width:349.218667pt;}
.w100{width:352.294667pt;}
.w80{width:353.760000pt;}
.we2{width:354.638667pt;}
.w8e{width:356.542667pt;}
.w7f{width:356.836000pt;}
.w8d{width:359.618667pt;}
.wd1{width:364.160000pt;}
.we3{width:364.453333pt;}
.w10c{width:367.236000pt;}
.w7e{width:373.096000pt;}
.wdb{width:374.121333pt;}
.w8c{width:375.878667pt;}
.we4{width:380.126667pt;}
.w98{width:381.152000pt;}
.w92{width:386.572000pt;}
.w79{width:386.865333pt;}
.wdc{width:387.304000pt;}
.wf8{width:394.921333pt;}
.wde{width:403.564000pt;}
.w88{width:405.176000pt;}
.w119{width:406.054667pt;}
.we5{width:406.201333pt;}
.wff{width:407.812000pt;}
.wda{width:409.130667pt;}
.w9f{width:409.716000pt;}
.w3c{width:410.510667pt;}
.w10b{width:416.308000pt;}
.wee{width:422.461333pt;}
.wd5{width:439.306667pt;}
.wea{width:439.453333pt;}
.wf5{width:439.600000pt;}
.wd0{width:440.478667pt;}
.wf7{width:440.772000pt;}
.wa4{width:443.701333pt;}
.wf2{width:448.096000pt;}
.web{width:448.242667pt;}
.w7d{width:448.388000pt;}
.w96{width:456.884000pt;}
.wf6{width:457.177333pt;}
.w11e{width:461.278667pt;}
.w10a{width:461.572000pt;}
.w83{width:490.722667pt;}
.wa8{width:566.095733pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x25{left:1.034667pt;}
.x6{left:2.057333pt;}
.x2{left:3.365333pt;}
.x4{left:4.461333pt;}
.xab{left:5.851333pt;}
.x71{left:6.794667pt;}
.x84{left:8.924000pt;}
.xc{left:9.853333pt;}
.x68{left:11.458667pt;}
.x93{left:12.890667pt;}
.x7c{left:14.501333pt;}
.x8d{left:16.553333pt;}
.x7a{left:20.088000pt;}
.x86{left:25.056000pt;}
.xdf{left:33.704000pt;}
.xde{left:34.729333pt;}
.xcc{left:39.270667pt;}
.xa8{left:41.549333pt;}
.xa0{left:44.918667pt;}
.xd3{left:47.913333pt;}
.x94{left:57.076000pt;}
.xae{left:59.273333pt;}
.xa9{left:96.028267pt;}
.xbe{left:124.868667pt;}
.xb3{left:141.826667pt;}
.x92{left:143.921333pt;}
.xbd{left:145.250667pt;}
.xb0{left:147.084000pt;}
.x3f{left:151.694667pt;}
.x37{left:152.786667pt;}
.xb6{left:156.304000pt;}
.x42{left:163.452000pt;}
.xb8{left:167.256000pt;}
.x58{left:171.842667pt;}
.xdb{left:173.072000pt;}
.xbf{left:175.470667pt;}
.xc4{left:176.788000pt;}
.x9b{left:177.760000pt;}
.x43{left:184.290667pt;}
.x8e{left:186.256000pt;}
.xa4{left:190.942667pt;}
.x48{left:194.068000pt;}
.xc9{left:195.337333pt;}
.x59{left:197.052000pt;}
.xd4{left:212.182667pt;}
.x61{left:215.230667pt;}
.x23{left:216.249333pt;}
.x49{left:218.476000pt;}
.x5a{left:222.261333pt;}
.xa1{left:224.928000pt;}
.xd8{left:226.832000pt;}
.xd1{left:228.442667pt;}
.x96{left:229.468000pt;}
.xce{left:231.080000pt;}
.x39{left:233.757333pt;}
.x53{left:235.881333pt;}
.x60{left:238.945333pt;}
.xb1{left:240.846667pt;}
.x4a{left:242.893333pt;}
.x3a{left:244.618667pt;}
.x8c{left:247.778667pt;}
.x38{left:252.344000pt;}
.x9d{left:253.492000pt;}
.xd0{left:254.517333pt;}
.x51{left:259.052000pt;}
.xcb{left:260.522667pt;}
.x8f{left:261.548000pt;}
.x5f{left:262.661333pt;}
.xb9{left:266.837333pt;}
.x47{left:269.010667pt;}
.xc0{left:269.981333pt;}
.x46{left:273.713333pt;}
.x99{left:275.025333pt;}
.x90{left:277.808000pt;}
.x91{left:280.884000pt;}
.x52{left:282.222667pt;}
.xd6{left:285.425333pt;}
.x3e{left:286.705333pt;}
.xb4{left:289.918667pt;}
.xad{left:291.093067pt;}
.x45{left:293.025333pt;}
.xc1{left:296.245333pt;}
.xd2{left:297.144000pt;}
.xb2{left:300.434667pt;}
.x78{left:302.749333pt;}
.xcf{left:304.468000pt;}
.x85{left:307.825333pt;}
.xb7{left:308.904000pt;}
.xa2{left:310.766667pt;}
.xaa{left:311.975733pt;}
.x3c{left:314.126667pt;}
.xdc{left:316.480000pt;}
.xba{left:319.669333pt;}
.x3d{left:321.274667pt;}
.xc2{left:322.712000pt;}
.xd9{left:326.294667pt;}
.x97{left:327.613333pt;}
.x40{left:330.786667pt;}
.x65{left:333.706667pt;}
.xd5{left:338.013333pt;}
.x6e{left:340.210667pt;}
.xaf{left:344.483733pt;}
.xbb{left:346.137333pt;}
.xc8{left:348.064000pt;}
.xc3{left:349.077333pt;}
.x67{left:350.046667pt;}
.xda{left:352.076000pt;}
.xcd{left:355.152000pt;}
.x95{left:360.278667pt;}
.xdd{left:361.450667pt;}
.x22{left:365.496000pt;}
.xac{left:366.425067pt;}
.x9f{left:368.482667pt;}
.x9e{left:369.508000pt;}
.x7d{left:371.268000pt;}
.xbc{left:372.502667pt;}
.x31{left:374.284000pt;}
.x34{left:375.317333pt;}
.xd7{left:377.125333pt;}
.xc7{left:378.044000pt;}
.x69{left:379.758667pt;}
.x2a{left:381.368000pt;}
.x35{left:382.296000pt;}
.x9c{left:383.424000pt;}
.x4b{left:385.150667pt;}
.x18{left:386.193333pt;}
.x1e{left:388.252000pt;}
.x20{left:389.624000pt;}
.x33{left:390.832000pt;}
.x66{left:393.706667pt;}
.x2c{left:395.122667pt;}
.x24{left:396.537333pt;}
.x30{left:398.588000pt;}
.x10{left:400.289333pt;}
.x1f{left:402.137333pt;}
.x2b{left:403.288000pt;}
.x28{left:404.541333pt;}
.x5b{left:406.945333pt;}
.x7e{left:407.874667pt;}
.x4c{left:408.865333pt;}
.x2e{left:410.232000pt;}
.xd{left:411.168000pt;}
.x1a{left:413.977333pt;}
.xa6{left:416.676000pt;}
.x1c{left:419.122667pt;}
.x2d{left:420.261333pt;}
.x77{left:422.045333pt;}
.x27{left:422.956000pt;}
.x2f{left:424.445333pt;}
.x98{left:425.757333pt;}
.x12{left:427.662667pt;}
.x32{left:428.582667pt;}
.x1{left:430.477333pt;}
.x4d{left:432.581333pt;}
.x17{left:434.558667pt;}
.x29{left:436.289333pt;}
.x75{left:437.762667pt;}
.x6a{left:439.182667pt;}
.x26{left:440.716000pt;}
.x11{left:443.909333pt;}
.xb5{left:445.085333pt;}
.xa{left:446.402667pt;}
.x36{left:447.617333pt;}
.x76{left:449.729333pt;}
.x62{left:451.461333pt;}
.x9a{left:456.812000pt;}
.x14{left:457.726667pt;}
.x3{left:460.070667pt;}
.x41{left:461.480000pt;}
.x7b{left:463.114667pt;}
.x1d{left:465.430667pt;}
.x6b{left:468.996000pt;}
.xa5{left:473.366667pt;}
.x5{left:474.397333pt;}
.x13{left:477.684000pt;}
.x83{left:479.468000pt;}
.x79{left:481.266667pt;}
.x9{left:483.046667pt;}
.x16{left:486.010667pt;}
.xca{left:488.306667pt;}
.xf{left:491.686667pt;}
.x1b{left:494.242667pt;}
.x7{left:499.442667pt;}
.x80{left:503.501333pt;}
.x54{left:505.362667pt;}
.x15{left:508.649333pt;}
.xb{left:509.578667pt;}
.x8b{left:513.540000pt;}
.x87{left:515.365333pt;}
.x8{left:518.388000pt;}
.x89{left:520.308000pt;}
.x6f{left:522.234667pt;}
.xe{left:523.189333pt;}
.x55{left:528.077333pt;}
.x19{left:530.260000pt;}
.x21{left:532.118667pt;}
.x3b{left:533.514667pt;}
.x70{left:534.808000pt;}
.xa7{left:537.232000pt;}
.x44{left:540.096000pt;}
.x72{left:542.109333pt;}
.x7f{left:554.305333pt;}
.x6c{left:558.132000pt;}
.x81{left:562.722667pt;}
.x82{left:564.040000pt;}
.x88{left:564.953333pt;}
.x73{left:566.549333pt;}
.xa3{left:568.433333pt;}
.x74{left:569.489333pt;}
.xc6{left:584.358667pt;}
.x6d{left:587.844000pt;}
.x8a{left:590.074667pt;}
.x56{left:591.321333pt;}
.x4e{left:593.150667pt;}
.x5d{left:601.848000pt;}
.xc5{left:605.768000pt;}
.x64{left:613.801333pt;}
.x57{left:615.941333pt;}
.x4f{left:616.865333pt;}
.x5c{left:626.145333pt;}
.x63{left:636.972000pt;}
.x50{left:640.581333pt;}
.x5e{left:650.441333pt;}
}


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