
/* 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_36162e25cfac.woff")format("woff");}.ff1{font-family:ff1;line-height:0.691000;font-style:normal;font-weight: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_4ee976315aeb.woff")format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight: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_ab7b78100ae1.woff")format("woff");}.ff3{font-family:ff3;line-height:1.161000;font-style:normal;font-weight: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_a58f7836026f.woff")format("woff");}.ff4{font-family:ff4;line-height:0.736000;font-style:normal;font-weight: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_1ae56354975e.woff")format("woff");}.ff5{font-family:ff5;line-height:0.660000;font-style:normal;font-weight: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_79dcdc6f476d.woff")format("woff");}.ff6{font-family:ff6;line-height:0.885000;font-style:normal;font-weight: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_78c8c422da92.woff")format("woff");}.ff7{font-family:ff7;line-height:1.191000;font-style:normal;font-weight: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_563a03aed1d4.woff")format("woff");}.ff8{font-family:ff8;line-height:0.482000;font-style:normal;font-weight: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_4120cf41b560.woff")format("woff");}.ff9{font-family:ff9;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_4bba38ef9ae8.woff")format("woff");}.ffa{font-family:ffa;line-height:2.262000;font-style:normal;font-weight: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_ece20980b836.woff")format("woff");}.ffb{font-family:ffb;line-height:0.900000;font-style:normal;font-weight: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_6ec7a86b72d2.woff")format("woff");}.ffc{font-family:ffc;line-height:0.744000;font-style:normal;font-weight: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_a919ca3d151f.woff")format("woff");}.ffd{font-family:ffd;line-height:0.703000;font-style:normal;font-weight: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_0f5a835b5319.woff")format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_e671c3c083c4.woff")format("woff");}.fff{font-family:fff;line-height:0.499000;font-style:normal;font-weight: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_a78133e5ec61.woff")format("woff");}.ff10{font-family:ff10;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-129.090000px;}
.v9{vertical-align:-44.520000px;}
.v8{vertical-align:-35.346000px;}
.v2{vertical-align:-17.358000px;}
.v5{vertical-align:-11.760000px;}
.vf{vertical-align:-10.074000px;}
.vd{vertical-align:-8.964000px;}
.v3{vertical-align:-7.266000px;}
.v0{vertical-align:0.000000px;}
.v15{vertical-align:5.280000px;}
.ve{vertical-align:8.070000px;}
.v10{vertical-align:10.074000px;}
.v6{vertical-align:11.760000px;}
.v14{vertical-align:15.168000px;}
.v17{vertical-align:18.012000px;}
.v18{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v16{vertical-align:28.908000px;}
.va{vertical-align:40.464000px;}
.vc{vertical-align:48.450000px;}
.v7{vertical-align:74.718000px;}
.vb{vertical-align:89.454000px;}
.v12{vertical-align:123.450000px;}
.v13{vertical-align:144.906000px;}
.v11{vertical-align:169.524000px;}
.ls7{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.001133px;}
.ls10{letter-spacing:0.003178px;}
.lsf{letter-spacing:0.004800px;}
.ls19{letter-spacing:0.149108px;}
.ls17{letter-spacing:0.246600px;}
.ls2e{letter-spacing:0.252600px;}
.ls4f{letter-spacing:0.434370px;}
.ls59{letter-spacing:0.542815px;}
.ls12{letter-spacing:0.548815px;}
.ls2d{letter-spacing:0.564571px;}
.ls16{letter-spacing:0.570571px;}
.ls62{letter-spacing:0.603044px;}
.ls65{letter-spacing:0.609044px;}
.ls64{letter-spacing:0.670800px;}
.ls5f{letter-spacing:0.675178px;}
.ls61{letter-spacing:0.676800px;}
.ls11{letter-spacing:0.717483px;}
.ls35{letter-spacing:0.748200px;}
.ls14{letter-spacing:0.748424px;}
.ls37{letter-spacing:0.748766px;}
.ls52{letter-spacing:0.763200px;}
.ls29{letter-spacing:0.888571px;}
.ls1e{letter-spacing:0.992725px;}
.ls20{letter-spacing:0.994766px;}
.ls38{letter-spacing:0.998725px;}
.ls5b{letter-spacing:1.000200px;}
.ls4d{letter-spacing:1.017497px;}
.ls1c{letter-spacing:1.131785px;}
.ls56{letter-spacing:1.135142px;}
.ls4e{letter-spacing:1.147363px;}
.ls5e{letter-spacing:1.160383px;}
.ls40{letter-spacing:1.275044px;}
.ls8{letter-spacing:1.275394px;}
.ls3c{letter-spacing:1.281044px;}
.ls57{letter-spacing:1.312115px;}
.ls46{letter-spacing:1.313108px;}
.ls13{letter-spacing:1.315609px;}
.ls58{letter-spacing:1.458571px;}
.ls28{letter-spacing:1.476843px;}
.ls5c{letter-spacing:1.491986px;}
.ls23{letter-spacing:1.495283px;}
.ls55{letter-spacing:1.591200px;}
.ls51{letter-spacing:1.852407px;}
.ls2{letter-spacing:1.861130px;}
.ls2a{letter-spacing:2.154600px;}
.ls1d{letter-spacing:2.274002px;}
.ls15{letter-spacing:2.902766px;}
.ls39{letter-spacing:2.904476px;}
.ls67{letter-spacing:2.988600px;}
.ls0{letter-spacing:2.989200px;}
.ls45{letter-spacing:3.136494px;}
.ls44{letter-spacing:3.142494px;}
.ls42{letter-spacing:3.514348px;}
.ls50{letter-spacing:3.553200px;}
.ls25{letter-spacing:3.684374px;}
.ls21{letter-spacing:3.737108px;}
.ls1f{letter-spacing:3.876571px;}
.ls32{letter-spacing:4.008374px;}
.ls53{letter-spacing:4.255363px;}
.ls2f{letter-spacing:4.620571px;}
.ls27{letter-spacing:7.918200px;}
.ls4c{letter-spacing:8.486400px;}
.ls54{letter-spacing:8.930815px;}
.ls3{letter-spacing:10.461300px;}
.ls24{letter-spacing:11.456383px;}
.ls6{letter-spacing:11.954850px;}
.lsc{letter-spacing:12.345483px;}
.ls2c{letter-spacing:13.089483px;}
.ls69{letter-spacing:13.448400px;}
.ls68{letter-spacing:13.454400px;}
.ls6a{letter-spacing:13.583835px;}
.ls6b{letter-spacing:13.644518px;}
.ls18{letter-spacing:13.836571px;}
.ls63{letter-spacing:14.055044px;}
.ls66{letter-spacing:14.061044px;}
.ls5a{letter-spacing:14.713200px;}
.ls9{letter-spacing:14.943900px;}
.lsd{letter-spacing:15.123227px;}
.ls30{letter-spacing:15.672843px;}
.ls22{letter-spacing:15.690017px;}
.ls2b{letter-spacing:15.930571px;}
.lse{letter-spacing:16.258963px;}
.ls31{letter-spacing:17.835483px;}
.ls1{letter-spacing:17.929200px;}
.ls1b{letter-spacing:18.069483px;}
.ls43{letter-spacing:18.082494px;}
.ls48{letter-spacing:18.095675px;}
.ls34{letter-spacing:18.100200px;}
.ls33{letter-spacing:18.101108px;}
.ls3b{letter-spacing:19.055501px;}
.ls3f{letter-spacing:19.061501px;}
.ls47{letter-spacing:19.407886px;}
.ls4a{letter-spacing:20.286583px;}
.ls36{letter-spacing:20.359200px;}
.ls1a{letter-spacing:20.610017px;}
.ls3e{letter-spacing:23.658088px;}
.ls3a{letter-spacing:23.664088px;}
.ls3d{letter-spacing:23.685802px;}
.ls41{letter-spacing:23.691802px;}
.ls26{letter-spacing:24.495483px;}
.ls4b{letter-spacing:25.245483px;}
.ls49{letter-spacing:31.875483px;}
.ls5d{letter-spacing:49.036766px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls60{letter-spacing:71.732496px;}
.lsb{letter-spacing:225.427200px;}
.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;}
}
.ws71{word-spacing:-14.943900px;}
.ws45{word-spacing:-13.449600px;}
.ws2a{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws7{word-spacing:-10.460700px;}
.ws7b{word-spacing:-3.526760px;}
.wsa5{word-spacing:-3.108331px;}
.ws4a{word-spacing:-2.689902px;}
.ws8f{word-spacing:-2.570351px;}
.ws55{word-spacing:-2.567830px;}
.ws4b{word-spacing:-2.331248px;}
.wsd2{word-spacing:-1.990541px;}
.ws4{word-spacing:-1.908367px;}
.ws58{word-spacing:-1.853044px;}
.wsa4{word-spacing:-1.793268px;}
.wscb{word-spacing:-1.721549px;}
.wsc0{word-spacing:-1.613952px;}
.wsef{word-spacing:-1.506355px;}
.ws68{word-spacing:-1.494390px;}
.wsee{word-spacing:-1.452557px;}
.ws17{word-spacing:-1.344960px;}
.ws3{word-spacing:-1.322630px;}
.ws39{word-spacing:-1.315063px;}
.wsb5{word-spacing:-1.255288px;}
.wsc2{word-spacing:-1.237363px;}
.ws38{word-spacing:-1.195512px;}
.wsd7{word-spacing:-1.183565px;}
.ws1d{word-spacing:-1.135736px;}
.wsf0{word-spacing:-1.129766px;}
.ws9b{word-spacing:-0.956410px;}
.wsd9{word-spacing:-0.860774px;}
.ws9a{word-spacing:-0.836858px;}
.wse3{word-spacing:-0.753178px;}
.ws51{word-spacing:-0.717307px;}
.wsc9{word-spacing:-0.699379px;}
.ws50{word-spacing:-0.657532px;}
.ws5c{word-spacing:-0.591782px;}
.ws41{word-spacing:-0.478205px;}
.ws26{word-spacing:-0.358654px;}
.ws5d{word-spacing:-0.322790px;}
.ws34{word-spacing:-0.298878px;}
.wsba{word-spacing:-0.268992px;}
.ws1c{word-spacing:-0.239102px;}
.wsbf{word-spacing:-0.215194px;}
.ws88{word-spacing:-0.179527px;}
.ws1e{word-spacing:-0.179327px;}
.wsc8{word-spacing:-0.161395px;}
.ws4c{word-spacing:-0.125226px;}
.ws25{word-spacing:-0.119551px;}
.ws15{word-spacing:-0.107597px;}
.ws52{word-spacing:-0.059776px;}
.ws48{word-spacing:-0.053798px;}
.wsac{word-spacing:-0.007411px;}
.wsaa{word-spacing:-0.007229px;}
.wsae{word-spacing:-0.005040px;}
.wsad{word-spacing:-0.004291px;}
.wsc7{word-spacing:-0.004243px;}
.ws1{word-spacing:-0.004183px;}
.ws6{word-spacing:-0.003506px;}
.ws29{word-spacing:-0.001643px;}
.ws0{word-spacing:0.000000px;}
.wsab{word-spacing:0.001709px;}
.ws49{word-spacing:0.053798px;}
.ws31{word-spacing:0.059776px;}
.ws14{word-spacing:0.107597px;}
.ws1f{word-spacing:0.119551px;}
.ws16{word-spacing:0.161395px;}
.ws2f{word-spacing:0.179327px;}
.ws8{word-spacing:0.209214px;}
.ws13{word-spacing:0.215194px;}
.ws5f{word-spacing:0.239102px;}
.wsa7{word-spacing:0.268992px;}
.wsa{word-spacing:0.292900px;}
.ws37{word-spacing:0.298878px;}
.wsd3{word-spacing:0.322790px;}
.ws42{word-spacing:0.358654px;}
.wsec{word-spacing:0.376589px;}
.ws79{word-spacing:0.418429px;}
.ws73{word-spacing:0.430387px;}
.ws35{word-spacing:0.478205px;}
.ws7c{word-spacing:0.537980px;}
.wsd1{word-spacing:0.591782px;}
.ws59{word-spacing:0.597756px;}
.wsed{word-spacing:0.645581px;}
.wsa6{word-spacing:0.657532px;}
.ws72{word-spacing:0.699379px;}
.wsf1{word-spacing:0.806976px;}
.ws75{word-spacing:0.860774px;}
.ws32{word-spacing:0.896634px;}
.ws33{word-spacing:0.956410px;}
.ws3d{word-spacing:1.016185px;}
.ws43{word-spacing:1.075961px;}
.wsc1{word-spacing:1.129766px;}
.ws74{word-spacing:1.183565px;}
.ws3a{word-spacing:1.195512px;}
.ws53{word-spacing:1.255288px;}
.ws64{word-spacing:1.315063px;}
.ws27{word-spacing:1.374839px;}
.wse6{word-spacing:1.398758px;}
.ws22{word-spacing:1.434614px;}
.ws96{word-spacing:1.475338px;}
.wsa8{word-spacing:1.494390px;}
.ws3b{word-spacing:1.554166px;}
.wseb{word-spacing:1.560154px;}
.wsdc{word-spacing:1.613952px;}
.wsa1{word-spacing:1.721549px;}
.wsc6{word-spacing:1.775347px;}
.ws2e{word-spacing:1.793268px;}
.wsb2{word-spacing:1.853044px;}
.wsbb{word-spacing:1.882944px;}
.ws2b{word-spacing:1.912819px;}
.ws1a{word-spacing:1.972595px;}
.wse0{word-spacing:1.990541px;}
.ws9{word-spacing:2.008454px;}
.ws7f{word-spacing:2.032370px;}
.wsa0{word-spacing:2.044339px;}
.ws76{word-spacing:2.092146px;}
.ws61{word-spacing:2.151922px;}
.wscc{word-spacing:2.151936px;}
.ws70{word-spacing:2.271473px;}
.ws86{word-spacing:2.331248px;}
.ws9d{word-spacing:2.402700px;}
.ws9c{word-spacing:2.450800px;}
.ws40{word-spacing:2.510575px;}
.ws3f{word-spacing:2.570351px;}
.ws8d{word-spacing:2.630126px;}
.ws36{word-spacing:2.809453px;}
.wsdb{word-spacing:2.851315px;}
.ws5a{word-spacing:2.869229px;}
.ws12{word-spacing:2.869236px;}
.ws8c{word-spacing:2.905114px;}
.ws5e{word-spacing:2.929004px;}
.wsc3{word-spacing:2.958912px;}
.ws2d{word-spacing:2.988780px;}
.wsb0{word-spacing:3.048556px;}
.wsb9{word-spacing:3.066509px;}
.ws20{word-spacing:3.108331px;}
.wse8{word-spacing:3.224074px;}
.wsf3{word-spacing:3.224170px;}
.wsd6{word-spacing:3.224266px;}
.wsce{word-spacing:3.224851px;}
.wse2{word-spacing:3.225667px;}
.wsdd{word-spacing:3.226214px;}
.wse5{word-spacing:3.226646px;}
.ws77{word-spacing:3.227882px;}
.ws8b{word-spacing:3.227904px;}
.wsca{word-spacing:3.228518px;}
.wsb7{word-spacing:3.347434px;}
.wsc5{word-spacing:3.389299px;}
.wsa9{word-spacing:3.407209px;}
.wsb8{word-spacing:3.443098px;}
.ws5b{word-spacing:3.466985px;}
.wsd5{word-spacing:3.496896px;}
.ws4d{word-spacing:3.526760px;}
.ws19{word-spacing:3.586536px;}
.ws95{word-spacing:3.658291px;}
.ws23{word-spacing:3.706087px;}
.ws24{word-spacing:3.765863px;}
.wsda{word-spacing:3.765888px;}
.ws93{word-spacing:3.819686px;}
.ws30{word-spacing:3.825638px;}
.ws67{word-spacing:3.945190px;}
.wsa2{word-spacing:4.004965px;}
.wsd0{word-spacing:4.034880px;}
.ws8e{word-spacing:4.064741px;}
.wsb4{word-spacing:4.124516px;}
.ws92{word-spacing:4.142477px;}
.wsb6{word-spacing:4.244068px;}
.ws9f{word-spacing:4.303843px;}
.wsc4{word-spacing:4.303872px;}
.ws85{word-spacing:4.363619px;}
.ws28{word-spacing:4.662497px;}
.ws62{word-spacing:4.841824px;}
.wsb3{word-spacing:4.901599px;}
.ws7d{word-spacing:5.260253px;}
.wsf2{word-spacing:5.326042px;}
.ws3c{word-spacing:5.379804px;}
.ws2c{word-spacing:5.499355px;}
.ws87{word-spacing:5.559131px;}
.ws91{word-spacing:5.595034px;}
.wse1{word-spacing:5.810227px;}
.ws90{word-spacing:5.971622px;}
.ws1b{word-spacing:6.037336px;}
.ws10{word-spacing:6.067206px;}
.wsbc{word-spacing:6.079219px;}
.ws11{word-spacing:6.150892px;}
.ws63{word-spacing:6.156887px;}
.wscf{word-spacing:6.186816px;}
.ws7e{word-spacing:6.276438px;}
.wse7{word-spacing:6.294413px;}
.wsb1{word-spacing:6.336214px;}
.ws6f{word-spacing:6.455765px;}
.ws6e{word-spacing:6.515540px;}
.ws98{word-spacing:6.574800px;}
.wsaf{word-spacing:6.575316px;}
.ws78{word-spacing:6.814418px;}
.wsea{word-spacing:6.939994px;}
.ws89{word-spacing:6.993745px;}
.ws60{word-spacing:7.053521px;}
.ws8a{word-spacing:7.113296px;}
.ws3e{word-spacing:7.173072px;}
.wsbe{word-spacing:7.585574px;}
.ws18{word-spacing:7.746970px;}
.ws57{word-spacing:7.950155px;}
.wsbd{word-spacing:8.015962px;}
.ws6c{word-spacing:8.249033px;}
.wscd{word-spacing:8.338752px;}
.ws4f{word-spacing:8.368584px;}
.ws83{word-spacing:8.503541px;}
.wse{word-spacing:8.661460px;}
.wsdf{word-spacing:9.141398px;}
.wsd8{word-spacing:9.141830px;}
.wsd4{word-spacing:9.142454px;}
.wse9{word-spacing:9.144048px;}
.wsde{word-spacing:9.145594px;}
.ws6d{word-spacing:9.145667px;}
.ws82{word-spacing:9.545959px;}
.ws80{word-spacing:9.551959px;}
.ws21{word-spacing:10.580281px;}
.wse4{word-spacing:12.642624px;}
.ws5{word-spacing:15.483541px;}
.ws94{word-spacing:15.548400px;}
.wsb{word-spacing:16.142252px;}
.wsc{word-spacing:16.151321px;}
.wsd{word-spacing:17.699504px;}
.wsf{word-spacing:27.448877px;}
.ws56{word-spacing:246.634126px;}
.ws44{word-spacing:253.117985px;}
.ws97{word-spacing:257.925126px;}
.ws54{word-spacing:266.599176px;}
.ws65{word-spacing:301.328800px;}
.ws99{word-spacing:390.812873px;}
.ws4e{word-spacing:394.220082px;}
.ws69{word-spacing:428.009400px;}
.ws6a{word-spacing:442.949400px;}
.wsa3{word-spacing:446.105303px;}
.ws6b{word-spacing:452.202414px;}
.ws66{word-spacing:514.985609px;}
.ws9e{word-spacing:621.427138px;}
.ws7a{word-spacing:679.110592px;}
.ws81{word-spacing:839.727629px;}
.ws84{word-spacing:916.120846px;}
.ws46{word-spacing:1478.667533px;}
.ws47{word-spacing:1480.173533px;}
._7a{margin-left:-20.980927px;}
._0{margin-left:-11.943245px;}
._30{margin-left:-8.600119px;}
._b{margin-left:-6.993792px;}
._18{margin-left:-5.971622px;}
._a{margin-left:-4.949453px;}
._5{margin-left:-3.849538px;}
._62{margin-left:-2.393663px;}
._3{margin-left:-1.322630px;}
._4{width:1.091170px;}
._1{width:2.993983px;}
._60{width:4.670064px;}
._61{width:5.943997px;}
._64{width:9.033683px;}
._5c{width:10.288970px;}
._7{width:12.971268px;}
._8{width:14.276177px;}
._77{width:15.359963px;}
._c{width:16.471450px;}
._75{width:17.475341px;}
._d{width:18.506650px;}
._17{width:19.546621px;}
._12{width:20.801909px;}
._f{width:22.535401px;}
._10{width:23.671138px;}
._6{width:25.946136px;}
._66{width:26.958796px;}
._15{width:28.094532px;}
._11{width:30.246454px;}
._67{width:31.486607px;}
._9{width:32.637384px;}
._76{width:34.012316px;}
._16{width:35.626258px;}
._e{width:37.502003px;}
._63{width:39.579014px;}
._2{width:54.423634px;}
._79{width:60.445613px;}
._78{width:61.868160px;}
._1a{width:68.502838px;}
._6e{width:72.322538px;}
._1b{width:82.774262px;}
._19{width:174.625150px;}
._20{width:209.767564px;}
._2b{width:215.155996px;}
._70{width:235.336537px;}
._46{width:248.427394px;}
._1c{width:253.780637px;}
._69{width:273.771642px;}
._1f{width:276.979807px;}
._26{width:281.717920px;}
._43{width:284.591632px;}
._68{width:287.817642px;}
._29{width:291.251231px;}
._47{width:299.774634px;}
._40{width:301.627724px;}
._49{width:304.086044px;}
._2a{width:307.545451px;}
._53{width:311.968856px;}
._2d{width:319.794080px;}
._45{width:329.781985px;}
._73{width:332.173009px;}
._2f{width:333.437562px;}
._4d{width:344.039932px;}
._6f{width:345.710717px;}
._25{width:348.336929px;}
._71{width:351.891390px;}
._44{width:353.215650px;}
._23{width:357.870241px;}
._42{width:366.197974px;}
._28{width:370.543266px;}
._4c{width:375.988524px;}
._1e{width:377.678978px;}
._4e{width:386.688356px;}
._4f{width:391.143552px;}
._39{width:392.426814px;}
._48{width:398.115688px;}
._2c{width:399.143200px;}
._51{width:401.632256px;}
._24{width:405.387917px;}
._3c{width:407.617384px;}
._22{width:411.017026px;}
._72{width:412.282505px;}
._2e{width:417.467709px;}
._27{width:419.751137px;}
._21{width:434.022562px;}
._36{width:435.166368px;}
._1d{width:448.293986px;}
._33{width:458.538628px;}
._6d{width:460.391671px;}
._74{width:461.706734px;}
._55{width:467.035943px;}
._3b{width:470.613299px;}
._5d{width:473.123874px;}
._6c{width:475.335571px;}
._5f{width:477.427717px;}
._41{width:478.981883px;}
._6b{width:481.970663px;}
._5a{width:483.299928px;}
._3f{width:485.557199px;}
._6a{width:490.279471px;}
._3d{width:492.080306px;}
._5b{width:504.854600px;}
._59{width:519.013770px;}
._5e{width:526.862138px;}
._50{width:529.366776px;}
._57{width:549.337764px;}
._3a{width:565.843397px;}
._54{width:574.191934px;}
._52{width:585.382451px;}
._38{width:598.473307px;}
._4b{width:612.998778px;}
._37{width:622.144445px;}
._4a{width:623.280181px;}
._3e{width:638.351200px;}
._56{width:639.718471px;}
._32{width:645.516704px;}
._58{width:654.841698px;}
._31{width:673.252583px;}
._34{width:689.332219px;}
._35{width:708.520187px;}
._13{width:890.200852px;}
._65{width:2493.266700px;}
._14{width:2517.176700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(137,92,52);}
.fs7{font-size:35.865600px;}
.fse{font-size:37.371600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fsc{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fsd{font-size:56.058000px;}
.fsa{font-size:57.085698px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:147.405960px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.425340px;}
.y9{bottom:14.151273px;}
.y2{bottom:15.837920px;}
.y4c{bottom:31.890000px;}
.y1bf{bottom:86.217000px;}
.y156{bottom:88.993500px;}
.y1a3{bottom:91.269000px;}
.yd3{bottom:94.623000px;}
.y20f{bottom:95.173500px;}
.y12a{bottom:96.138000px;}
.y116{bottom:96.148500px;}
.y1cd{bottom:96.519000px;}
.y22{bottom:102.823500px;}
.y248{bottom:103.557000px;}
.y4b{bottom:103.621500px;}
.y1be{bottom:105.450000px;}
.y155{bottom:107.823000px;}
.y83{bottom:109.366500px;}
.y1a2{bottom:110.098500px;}
.y20e{bottom:112.434000px;}
.yd2{bottom:113.452500px;}
.y129{bottom:114.967500px;}
.y115{bottom:114.978000px;}
.y1cc{bottom:115.348500px;}
.y21{bottom:120.711000px;}
.y247{bottom:120.817500px;}
.y4a{bottom:122.449500px;}
.ya3{bottom:122.689500px;}
.y1e7{bottom:125.256000px;}
.y82{bottom:128.196000px;}
.y1a1{bottom:128.928000px;}
.y20d{bottom:129.694500px;}
.y154{bottom:131.136000px;}
.yd1{bottom:132.282000px;}
.y1bd{bottom:133.650000px;}
.y128{bottom:133.797000px;}
.y197{bottom:135.928500px;}
.y246{bottom:138.078000px;}
.y114{bottom:138.289500px;}
.y20{bottom:138.600000px;}
.y196{bottom:139.281000px;}
.y192{bottom:140.431500px;}
.y49{bottom:141.279000px;}
.ya2{bottom:141.519000px;}
.y1e6{bottom:144.085500px;}
.y20c{bottom:146.955000px;}
.y81{bottom:147.025500px;}
.y1a0{bottom:147.757500px;}
.y1cb{bottom:148.914000px;}
.y191{bottom:150.682500px;}
.yd0{bottom:151.111500px;}
.y127{bottom:152.626500px;}
.y1bc{bottom:152.883000px;}
.y245{bottom:155.338500px;}
.y1f{bottom:156.487500px;}
.y195{bottom:158.502000px;}
.y48{bottom:160.108500px;}
.ya1{bottom:160.348500px;}
.y1e5{bottom:162.915000px;}
.yf6{bottom:163.027500px;}
.y20b{bottom:164.215500px;}
.y153{bottom:164.760000px;}
.y80{bottom:165.855000px;}
.y19f{bottom:166.587000px;}
.y1ca{bottom:168.147000px;}
.y193{bottom:168.376500px;}
.ycf{bottom:169.941000px;}
.y126{bottom:171.456000px;}
.y113{bottom:171.913500px;}
.y194{bottom:172.168500px;}
.y244{bottom:172.599000px;}
.y1e{bottom:174.375000px;}
.y47{bottom:178.938000px;}
.ya0{bottom:179.178000px;}
.yf5{bottom:180.961500px;}
.y20a{bottom:181.476000px;}
.y1e4{bottom:181.744500px;}
.y152{bottom:183.589500px;}
.y7f{bottom:184.684500px;}
.yce{bottom:188.770500px;}
.y243{bottom:189.858000px;}
.y112{bottom:190.743000px;}
.y1d{bottom:192.264000px;}
.y1c9{bottom:196.345500px;}
.y46{bottom:197.767500px;}
.y9f{bottom:198.007500px;}
.y1c5{bottom:198.036000px;}
.y209{bottom:198.736500px;}
.yf4{bottom:198.894000px;}
.y19e{bottom:200.152500px;}
.y1e3{bottom:200.574000px;}
.y151{bottom:202.419000px;}
.y7e{bottom:203.514000px;}
.y125{bottom:205.021500px;}
.y190{bottom:205.377000px;}
.y242{bottom:207.118500px;}
.ycd{bottom:207.600000px;}
.y111{bottom:209.572500px;}
.y1c{bottom:210.151500px;}
.y1c8{bottom:215.578500px;}
.y208{bottom:215.995500px;}
.y45{bottom:216.597000px;}
.yf3{bottom:216.826500px;}
.y9e{bottom:216.837000px;}
.y1c4{bottom:217.269000px;}
.y165{bottom:217.947000px;}
.y175{bottom:219.378000px;}
.y19d{bottom:219.385500px;}
.y1e2{bottom:219.403500px;}
.y150{bottom:221.248500px;}
.y7d{bottom:222.343500px;}
.y18f{bottom:224.206500px;}
.y124{bottom:224.254500px;}
.y241{bottom:224.379000px;}
.ycc{bottom:226.429500px;}
.y1b{bottom:228.039000px;}
.y110{bottom:228.402000px;}
.y207{bottom:233.256000px;}
.yf2{bottom:234.759000px;}
.y44{bottom:235.426500px;}
.y9d{bottom:235.666500px;}
.y1e1{bottom:238.233000px;}
.y174{bottom:238.611000px;}
.y14f{bottom:240.078000px;}
.y7c{bottom:241.173000px;}
.y240{bottom:241.639500px;}
.y18e{bottom:243.036000px;}
.y123{bottom:243.487500px;}
.ycb{bottom:245.259000px;}
.y164{bottom:246.145500px;}
.y10f{bottom:247.231500px;}
.y206{bottom:250.516500px;}
.yf1{bottom:252.691500px;}
.y43{bottom:254.256000px;}
.y9c{bottom:254.496000px;}
.y23f{bottom:258.900000px;}
.y14e{bottom:258.907500px;}
.y7b{bottom:260.002500px;}
.y1e0{bottom:261.546000px;}
.y18d{bottom:261.865500px;}
.yca{bottom:264.088500px;}
.y205{bottom:267.777000px;}
.yf0{bottom:270.625500px;}
.y42{bottom:273.085500px;}
.y23e{bottom:276.160500px;}
.y9b{bottom:277.807500px;}
.y7a{bottom:278.832000px;}
.y1df{bottom:280.375500px;}
.y18c{bottom:280.695000px;}
.yc9{bottom:282.918000px;}
.y204{bottom:285.037500px;}
.yef{bottom:288.558000px;}
.y14d{bottom:289.948500px;}
.y41{bottom:291.915000px;}
.y23d{bottom:293.421000px;}
.y10e{bottom:294.636000px;}
.y79{bottom:297.661500px;}
.y1de{bottom:299.205000px;}
.y18b{bottom:299.524500px;}
.y1bb{bottom:300.862500px;}
.y1b9{bottom:301.176000px;}
.y203{bottom:302.298000px;}
.yc8{bottom:306.231000px;}
.yee{bottom:306.490500px;}
.y1a{bottom:307.299000px;}
.y23c{bottom:310.681500px;}
.y40{bottom:310.744500px;}
.y10d{bottom:312.570000px;}
.y9a{bottom:314.212500px;}
.y78{bottom:316.491000px;}
.y18a{bottom:318.354000px;}
.y202{bottom:319.558500px;}
.y1ba{bottom:320.095500px;}
.y1b8{bottom:320.409000px;}
.y1dd{bottom:322.516500px;}
.y19{bottom:325.186500px;}
.y23b{bottom:327.940500px;}
.y3f{bottom:329.574000px;}
.y10c{bottom:330.502500px;}
.yed{bottom:331.924500px;}
.y99{bottom:333.445500px;}
.y77{bottom:335.320500px;}
.y201{bottom:336.819000px;}
.y189{bottom:337.183500px;}
.yc7{bottom:339.853500px;}
.y1dc{bottom:341.346000px;}
.y18{bottom:343.074000px;}
.y23a{bottom:345.201000px;}
.y3e{bottom:348.403500px;}
.y200{bottom:354.079500px;}
.y76{bottom:354.150000px;}
.y98{bottom:354.174000px;}
.y10b{bottom:355.936500px;}
.y188{bottom:356.013000px;}
.yc6{bottom:358.683000px;}
.y1db{bottom:360.175500px;}
.y17{bottom:360.963000px;}
.y239{bottom:362.461500px;}
.yec{bottom:364.590000px;}
.y3d{bottom:367.233000px;}
.y1ff{bottom:371.338500px;}
.y75{bottom:372.979500px;}
.y187{bottom:374.842500px;}
.yc5{bottom:377.512500px;}
.y1da{bottom:379.005000px;}
.y238{bottom:379.722000px;}
.y3c{bottom:386.062500px;}
.y1fe{bottom:388.599000px;}
.y10a{bottom:388.602000px;}
.y74{bottom:391.809000px;}
.y186{bottom:393.672000px;}
.y237{bottom:396.982500px;}
.y1d9{bottom:397.834500px;}
.y16{bottom:399.024000px;}
.yc4{bottom:400.825500px;}
.yeb{bottom:401.694000px;}
.y3b{bottom:404.892000px;}
.y1fd{bottom:405.859500px;}
.y73{bottom:410.638500px;}
.y185{bottom:412.501500px;}
.y14c{bottom:413.778000px;}
.y236{bottom:414.243000px;}
.y1d8{bottom:416.664000px;}
.y15{bottom:416.913000px;}
.yea{bottom:420.523500px;}
.y1fc{bottom:423.120000px;}
.y109{bottom:425.706000px;}
.y3a{bottom:428.205000px;}
.y72{bottom:429.468000px;}
.y235{bottom:431.503500px;}
.y14b{bottom:432.607500px;}
.y14{bottom:434.800500px;}
.y1d7{bottom:435.493500px;}
.ye9{bottom:439.353000px;}
.y163{bottom:440.376000px;}
.y1fb{bottom:440.380500px;}
.y184{bottom:443.218500px;}
.y108{bottom:444.535500px;}
.yc3{bottom:445.092000px;}
.y71{bottom:448.297500px;}
.y234{bottom:448.764000px;}
.y149{bottom:451.437000px;}
.y14a{bottom:454.081500px;}
.y1d6{bottom:454.323000px;}
.y1fa{bottom:457.641000px;}
.ye8{bottom:458.182500px;}
.y162{bottom:459.205500px;}
.yc2{bottom:463.024500px;}
.y107{bottom:463.365000px;}
.y233{bottom:466.024500px;}
.y70{bottom:467.127000px;}
.y148{bottom:470.266500px;}
.y13{bottom:470.622000px;}
.y1f9{bottom:474.901500px;}
.ye7{bottom:477.012000px;}
.y1d5{bottom:477.636000px;}
.y161{bottom:478.035000px;}
.yc1{bottom:480.957000px;}
.y106{bottom:482.194500px;}
.y232{bottom:483.283500px;}
.y6f{bottom:485.956500px;}
.y147{bottom:489.096000px;}
.ye6{bottom:495.841500px;}
.y1d4{bottom:496.465500px;}
.y1f8{bottom:496.644000px;}
.y160{bottom:496.864500px;}
.yc0{bottom:498.891000px;}
.y39{bottom:499.851000px;}
.y231{bottom:500.544000px;}
.y105{bottom:501.024000px;}
.y6e{bottom:504.786000px;}
.y12{bottom:506.442000px;}
.y146{bottom:507.925500px;}
.ye5{bottom:514.671000px;}
.y1d3{bottom:515.295000px;}
.y15f{bottom:515.694000px;}
.ybf{bottom:516.823500px;}
.y230{bottom:517.804500px;}
.y38{bottom:519.307500px;}
.y104{bottom:519.853500px;}
.y6d{bottom:523.615500px;}
.y11{bottom:524.329500px;}
.y145{bottom:526.755000px;}
.y1f7{bottom:530.268000px;}
.y1c7{bottom:531.450000px;}
.y97{bottom:532.209000px;}
.ye4{bottom:533.500500px;}
.y1d2{bottom:534.124500px;}
.y15e{bottom:534.523500px;}
.ybe{bottom:534.756000px;}
.y22f{bottom:535.065000px;}
.y103{bottom:538.683000px;}
.y1c3{bottom:539.964000px;}
.y10{bottom:542.218500px;}
.y6c{bottom:542.445000px;}
.y144{bottom:545.584500px;}
.y1f6{bottom:547.842000px;}
.y1c6{bottom:550.683000px;}
.y22e{bottom:552.325500px;}
.ye3{bottom:552.330000px;}
.y1d1{bottom:552.954000px;}
.y15d{bottom:553.353000px;}
.y37{bottom:556.698000px;}
.y102{bottom:557.512500px;}
.y1c2{bottom:559.197000px;}
.yf{bottom:560.106000px;}
.ybd{bottom:560.818500px;}
.y6b{bottom:561.274500px;}
.y143{bottom:564.414000px;}
.y22d{bottom:569.586000px;}
.y15c{bottom:572.182500px;}
.y1f5{bottom:574.383000px;}
.ye2{bottom:575.641500px;}
.y36{bottom:576.154500px;}
.y1d0{bottom:576.265500px;}
.y101{bottom:576.342000px;}
.ye{bottom:577.993500px;}
.y6a{bottom:580.104000px;}
.y142{bottom:583.243500px;}
.y22c{bottom:586.846500px;}
.y15b{bottom:591.012000px;}
.y1f4{bottom:591.957000px;}
.ybc{bottom:593.484000px;}
.y100{bottom:595.171500px;}
.y35{bottom:595.612500px;}
.yd{bottom:595.882500px;}
.y69{bottom:598.932000px;}
.y141{bottom:602.073000px;}
.y22b{bottom:604.107000px;}
.ye1{bottom:609.265500px;}
.y1f3{bottom:609.531000px;}
.y15a{bottom:609.841500px;}
.y173{bottom:610.290000px;}
.yc{bottom:613.770000px;}
.yff{bottom:614.001000px;}
.y34{bottom:615.069000px;}
.y1cf{bottom:615.660000px;}
.y68{bottom:617.761500px;}
.y140{bottom:620.902500px;}
.y22a{bottom:621.366000px;}
.ye0{bottom:628.095000px;}
.y159{bottom:628.671000px;}
.y172{bottom:629.119500px;}
.ybb{bottom:630.588000px;}
.yb{bottom:631.657500px;}
.yfe{bottom:632.830500px;}
.y33{bottom:634.525500px;}
.y1ce{bottom:634.893000px;}
.y1f2{bottom:636.072000px;}
.y67{bottom:636.591000px;}
.y229{bottom:638.626500px;}
.y13f{bottom:639.732000px;}
.y1b7{bottom:645.534000px;}
.ydf{bottom:646.924500px;}
.y158{bottom:647.500500px;}
.y171{bottom:647.949000px;}
.yba{bottom:649.417500px;}
.yfd{bottom:651.660000px;}
.y1f1{bottom:653.646000px;}
.y32{bottom:653.983500px;}
.y8{bottom:654.028555px;}
.y66{bottom:655.420500px;}
.y228{bottom:655.887000px;}
.y13e{bottom:658.561500px;}
.y1b6{bottom:664.363500px;}
.yde{bottom:665.754000px;}
.y170{bottom:666.778500px;}
.yb9{bottom:668.247000px;}
.yfc{bottom:670.488000px;}
.y1f0{bottom:671.220000px;}
.y227{bottom:673.147500px;}
.y31{bottom:673.440000px;}
.y65{bottom:674.250000px;}
.y13d{bottom:677.391000px;}
.y157{bottom:681.066000px;}
.y1b5{bottom:683.193000px;}
.ydd{bottom:684.583500px;}
.y16f{bottom:685.608000px;}
.yb8{bottom:687.076500px;}
.yfb{bottom:689.317500px;}
.y226{bottom:690.408000px;}
.y30{bottom:692.898000px;}
.y64{bottom:693.079500px;}
.y1ef{bottom:697.761000px;}
.y1b4{bottom:702.022500px;}
.ydc{bottom:703.413000px;}
.y16e{bottom:704.436000px;}
.yb7{bottom:705.906000px;}
.y225{bottom:707.668500px;}
.yfa{bottom:708.147000px;}
.y63{bottom:711.909000px;}
.y13c{bottom:711.910500px;}
.y2f{bottom:712.354500px;}
.y96{bottom:719.905650px;}
.y1b3{bottom:720.852000px;}
.ydb{bottom:722.242500px;}
.y16d{bottom:723.265500px;}
.y1ee{bottom:724.300500px;}
.yb6{bottom:724.735500px;}
.y224{bottom:724.929000px;}
.y62{bottom:730.738500px;}
.y2e{bottom:731.811000px;}
.y95{bottom:737.031187px;}
.y1b2{bottom:739.681500px;}
.yda{bottom:741.072000px;}
.yf9{bottom:741.714000px;}
.y16c{bottom:742.095000px;}
.y223{bottom:742.189500px;}
.yb5{bottom:743.565000px;}
.y13b{bottom:746.431500px;}
.y61{bottom:749.568000px;}
.y1ed{bottom:750.841500px;}
.y2d{bottom:751.269000px;}
.y94{bottom:754.158157px;}
.y1b1{bottom:758.511000px;}
.y222{bottom:759.450000px;}
.yd9{bottom:759.901500px;}
.y16b{bottom:760.924500px;}
.yb4{bottom:762.394500px;}
.y122{bottom:766.956000px;}
.y13a{bottom:768.241500px;}
.y60{bottom:768.397500px;}
.y1ec{bottom:768.415500px;}
.yf8{bottom:769.912500px;}
.y93{bottom:771.283695px;}
.y221{bottom:776.709000px;}
.y1b0{bottom:777.339000px;}
.y139{bottom:778.494000px;}
.yb3{bottom:781.224000px;}
.y16a{bottom:784.237500px;}
.y121{bottom:784.888500px;}
.y2c{bottom:785.140500px;}
.y5f{bottom:787.227000px;}
.y92{bottom:788.409232px;}
.yd8{bottom:793.467000px;}
.y220{bottom:793.969500px;}
.y1eb{bottom:794.956500px;}
.y1af{bottom:796.168500px;}
.yb2{bottom:800.053500px;}
.y2b{bottom:801.279000px;}
.y120{bottom:802.821000px;}
.y138{bottom:802.986000px;}
.y91{bottom:805.534770px;}
.y5e{bottom:806.056500px;}
.y21f{bottom:811.230000px;}
.y1ea{bottom:812.530500px;}
.yd7{bottom:812.700000px;}
.y169{bottom:814.665000px;}
.y1ae{bottom:814.998000px;}
.yb1{bottom:818.883000px;}
.y11f{bottom:820.755000px;}
.y2a{bottom:821.758500px;}
.y137{bottom:821.815500px;}
.y90{bottom:822.660308px;}
.y5d{bottom:824.886000px;}
.y21e{bottom:828.490500px;}
.y1e9{bottom:830.104500px;}
.y183{bottom:830.244000px;}
.yd6{bottom:831.933000px;}
.y29{bottom:833.559000px;}
.y1ad{bottom:833.827500px;}
.y168{bottom:833.898000px;}
.yb0{bottom:837.712500px;}
.y136{bottom:840.645000px;}
.y5c{bottom:843.715500px;}
.y21d{bottom:845.751000px;}
.y11e{bottom:846.187500px;}
.y8f{bottom:846.949778px;}
.y1e8{bottom:847.678500px;}
.y182{bottom:848.176500px;}
.y28{bottom:849.697500px;}
.y1ac{bottom:852.657000px;}
.y167{bottom:853.131000px;}
.yaf{bottom:856.542000px;}
.y135{bottom:859.474500px;}
.y19c{bottom:859.873500px;}
.yd5{bottom:860.133000px;}
.y5b{bottom:862.545000px;}
.y21c{bottom:863.011500px;}
.y181{bottom:866.109000px;}
.y27{bottom:870.177000px;}
.y1ab{bottom:871.486500px;}
.y134{bottom:878.304000px;}
.y19b{bottom:878.703000px;}
.y8e{bottom:878.809500px;}
.y11d{bottom:878.854500px;}
.y21b{bottom:880.272000px;}
.y166{bottom:881.329500px;}
.y5a{bottom:881.374500px;}
.y26{bottom:881.977500px;}
.y180{bottom:884.043000px;}
.y1c1{bottom:897.084000px;}
.y133{bottom:897.133500px;}
.y19a{bottom:897.532500px;}
.y11c{bottom:898.086000px;}
.y59{bottom:900.204000px;}
.y17f{bottom:901.975500px;}
.y25{bottom:902.457000px;}
.yae{bottom:903.946500px;}
.y24{bottom:914.256000px;}
.y21a{bottom:914.793000px;}
.y8d{bottom:915.913500px;}
.y132{bottom:915.963000px;}
.y199{bottom:916.362000px;}
.y1aa{bottom:918.891000px;}
.y58{bottom:919.033500px;}
.y17e{bottom:919.908000px;}
.yad{bottom:921.879000px;}
.y219{bottom:932.052000px;}
.y23{bottom:934.735500px;}
.y8c{bottom:934.743000px;}
.y11b{bottom:935.191500px;}
.y1a9{bottom:936.825000px;}
.y17d{bottom:937.840500px;}
.y57{bottom:937.863000px;}
.yac{bottom:939.811500px;}
.yf7{bottom:942.165000px;}
.y218{bottom:949.312500px;}
.y130{bottom:951.906000px;}
.y8b{bottom:953.572500px;}
.y11a{bottom:954.021000px;}
.y131{bottom:954.550500px;}
.y1a8{bottom:954.757500px;}
.y17c{bottom:955.773000px;}
.y56{bottom:956.692500px;}
.yab{bottom:957.745500px;}
.y1c0{bottom:958.054500px;}
.y217{bottom:966.573000px;}
.y7{bottom:970.215000px;}
.y12f{bottom:972.402000px;}
.y1a7{bottom:972.690000px;}
.y119{bottom:972.849000px;}
.y17b{bottom:973.705500px;}
.y55{bottom:975.522000px;}
.yaa{bottom:975.678000px;}
.y8a{bottom:976.884000px;}
.y216{bottom:983.833500px;}
.y12e{bottom:991.231500px;}
.y17a{bottom:991.639500px;}
.y117{bottom:991.678500px;}
.yd4{bottom:993.252000px;}
.ya9{bottom:994.239000px;}
.y54{bottom:994.351500px;}
.y118{bottom:997.104000px;}
.y1a6{bottom:998.124000px;}
.y215{bottom:1001.094000px;}
.y12d{bottom:1010.061000px;}
.y89{bottom:1010.508000px;}
.ya8{bottom:1012.171500px;}
.y6{bottom:1012.954500px;}
.y53{bottom:1013.181000px;}
.y1a5{bottom:1016.056500px;}
.y179{bottom:1017.073500px;}
.y214{bottom:1018.354500px;}
.y12c{bottom:1028.890500px;}
.y88{bottom:1029.337500px;}
.ya7{bottom:1030.104000px;}
.y52{bottom:1032.010500px;}
.y178{bottom:1035.006000px;}
.y213{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.ya6{bottom:1048.038000px;}
.y87{bottom:1048.167000px;}
.y1a4{bottom:1048.722000px;}
.y51{bottom:1050.840000px;}
.y12b{bottom:1052.202000px;}
.y212{bottom:1052.875500px;}
.y86{bottom:1066.996500px;}
.y177{bottom:1067.671500px;}
.y4{bottom:1069.443000px;}
.y50{bottom:1069.669500px;}
.y211{bottom:1070.134500px;}
.ya5{bottom:1073.472000px;}
.y85{bottom:1085.826000px;}
.y176{bottom:1086.904500px;}
.y210{bottom:1087.395000px;}
.y4f{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y84{bottom:1104.655500px;}
.y198{bottom:1104.873000px;}
.ya4{bottom:1106.137500px;}
.y4e{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4d{bottom:1173.397500px;}
.h7{height:25.508090px;}
.hb{height:32.565965px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.h1e{height:35.503200px;}
.ha{height:37.993262px;}
.h21{height:39.434227px;}
.h14{height:41.250077px;}
.h1a{height:42.043500px;}
.hc{height:43.421105px;}
.h4{height:43.815515px;}
.h16{height:46.445641px;}
.h19{height:46.714950px;}
.hd{height:48.149568px;}
.he{height:48.848947px;}
.h2{height:50.930649px;}
.h11{height:51.091700px;}
.h12{height:51.833814px;}
.hf{height:53.499162px;}
.h10{height:54.276245px;}
.h1d{height:57.078077px;}
.h22{height:57.523262px;}
.h1f{height:62.207897px;}
.h6{height:62.355492px;}
.h13{height:62.946077px;}
.h15{height:76.869936px;}
.h1b{height:84.285515px;}
.h17{height:94.740245px;}
.h18{height:95.286245px;}
.h5{height:96.299136px;}
.h3{height:99.941241px;}
.h20{height:113.292245px;}
.h1c{height:171.915024px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:198.822293px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:57.551633px;}
.xbe{left:62.967000px;}
.x6a{left:85.890000px;}
.x7f{left:89.866500px;}
.x80{left:96.591000px;}
.xc9{left:97.869000px;}
.xa5{left:99.387000px;}
.xc2{left:109.210500px;}
.xc1{left:113.148000px;}
.xc8{left:117.276000px;}
.xbf{left:132.105000px;}
.x6b{left:143.103000px;}
.xc0{left:145.374000px;}
.xc7{left:149.824500px;}
.xc3{left:150.843000px;}
.xcc{left:233.962500px;}
.x69{left:243.664500px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.xcd{left:252.990000px;}
.x66{left:259.708808px;}
.xbd{left:265.750500px;}
.x65{left:268.928378px;}
.x5{left:270.850500px;}
.x51{left:272.605500px;}
.x7d{left:276.834000px;}
.x9e{left:278.257500px;}
.x67{left:279.660668px;}
.x88{left:281.074500px;}
.x9{left:282.786000px;}
.xad{left:284.913000px;}
.x64{left:285.996615px;}
.x52{left:287.550000px;}
.x7b{left:289.260000px;}
.x18{left:291.331500px;}
.x58{left:294.939000px;}
.x76{left:297.669000px;}
.x8a{left:300.645000px;}
.x21{left:303.231000px;}
.x68{left:305.270903px;}
.x19{left:306.276000px;}
.x7{left:309.456000px;}
.x7c{left:311.062500px;}
.xa8{left:314.085000px;}
.x85{left:316.260000px;}
.x22{left:318.175500px;}
.x89{left:319.602000px;}
.x86{left:321.588000px;}
.x8{left:323.920500px;}
.x23{left:325.797000px;}
.xc6{left:327.409500px;}
.x84{left:332.856000px;}
.x82{left:333.879000px;}
.x8b{left:335.085000px;}
.x75{left:337.216500px;}
.x24{left:340.741500px;}
.x31{left:342.582000px;}
.x81{left:346.290000px;}
.x73{left:347.617500px;}
.x74{left:349.171500px;}
.x59{left:350.356500px;}
.x77{left:351.607500px;}
.xba{left:354.186000px;}
.xa{left:355.786500px;}
.x32{left:357.525000px;}
.x83{left:361.099500px;}
.xb{left:363.258000px;}
.x5a{left:365.299500px;}
.xc{left:366.919500px;}
.x5b{left:368.965500px;}
.x40{left:370.656000px;}
.x72{left:372.439500px;}
.xd{left:374.391000px;}
.xd5{left:378.451500px;}
.x5c{left:383.908500px;}
.x5d{left:387.574500px;}
.x16{left:391.146000px;}
.xd3{left:394.576500px;}
.x5f{left:396.990000px;}
.x17{left:398.617500px;}
.x5e{left:402.517500px;}
.x3c{left:411.238500px;}
.x60{left:415.744500px;}
.x2f{left:420.862500px;}
.x3d{left:426.183000px;}
.xa9{left:427.779000px;}
.x61{left:430.689000px;}
.x96{left:432.547500px;}
.x62{left:434.499000px;}
.x30{left:435.807000px;}
.xd4{left:437.346000px;}
.x7e{left:438.393000px;}
.x4d{left:443.554500px;}
.x97{left:445.231500px;}
.x63{left:449.443500px;}
.x33{left:453.486000px;}
.x8d{left:455.614500px;}
.x4e{left:458.499000px;}
.xae{left:460.821000px;}
.x25{left:466.290000px;}
.x34{left:468.430500px;}
.xa4{left:478.161000px;}
.xb2{left:479.863500px;}
.x26{left:481.233000px;}
.x27{left:484.954500px;}
.x95{left:487.459500px;}
.xcb{left:492.180000px;}
.xb3{left:493.920000px;}
.x47{left:495.526500px;}
.xc4{left:498.177000px;}
.x28{left:499.899000px;}
.x9a{left:501.280500px;}
.x12{left:505.567500px;}
.xca{left:508.362000px;}
.x48{left:510.471000px;}
.x13{left:513.039000px;}
.x99{left:519.258000px;}
.x14{left:520.443000px;}
.xb6{left:521.527500px;}
.x7a{left:526.405500px;}
.x15{left:527.916000px;}
.x6c{left:529.785000px;}
.x6d{left:536.509500px;}
.xc5{left:539.434500px;}
.x1e{left:542.847000px;}
.xb0{left:545.079000px;}
.x1f{left:546.658500px;}
.x9d{left:547.986000px;}
.xb7{left:551.143500px;}
.x2b{left:555.678000px;}
.xb1{left:556.789500px;}
.x90{left:560.206500px;}
.x20{left:561.601500px;}
.x91{left:564.652500px;}
.xb8{left:566.736000px;}
.x2c{left:570.621000px;}
.x8e{left:572.386500px;}
.xac{left:574.651500px;}
.x3b{left:577.305000px;}
.xa6{left:578.980500px;}
.x8c{left:588.003000px;}
.x8f{left:592.642500px;}
.xaa{left:595.285500px;}
.xa0{left:597.583500px;}
.xab{left:600.886500px;}
.x92{left:602.235000px;}
.xaf{left:603.555000px;}
.x35{left:605.601000px;}
.xbb{left:607.429500px;}
.x39{left:617.730000px;}
.x36{left:620.545500px;}
.xd2{left:621.876000px;}
.xa3{left:629.488500px;}
.x3a{left:632.674500px;}
.x6e{left:634.159500px;}
.x6f{left:642.376500px;}
.x78{left:647.698500px;}
.x37{left:650.389500px;}
.x79{left:657.169500px;}
.x57{left:659.148000px;}
.x38{left:665.334000px;}
.xe{left:666.681000px;}
.x3e{left:668.922000px;}
.xd6{left:670.050000px;}
.xce{left:672.885000px;}
.xf{left:674.152500px;}
.x10{left:677.907000px;}
.xcf{left:679.609500px;}
.x3f{left:683.865000px;}
.x11{left:685.380000px;}
.x9b{left:688.419000px;}
.xd7{left:696.949500px;}
.x9c{left:702.924000px;}
.x1a{left:709.210500px;}
.x53{left:711.555000px;}
.x93{left:712.555500px;}
.x70{left:714.550500px;}
.x41{left:716.982000px;}
.x71{left:720.522000px;}
.x1b{left:724.155000px;}
.x54{left:726.499500px;}
.x1c{left:727.965000px;}
.x87{left:729.223500px;}
.x42{left:731.925000px;}
.x55{left:733.822500px;}
.x94{left:741.720000px;}
.x1d{left:742.909500px;}
.x43{left:746.938500px;}
.x56{left:748.765500px;}
.xd0{left:752.361000px;}
.xd8{left:755.449500px;}
.x49{left:757.765500px;}
.xbc{left:759.129000px;}
.xd1{left:760.579500px;}
.x44{left:761.881500px;}
.xb9{left:763.902000px;}
.x4a{left:772.710000px;}
.x4b{left:780.331500px;}
.xa1{left:782.266500px;}
.x29{left:783.481500px;}
.xa7{left:789.694500px;}
.xa2{left:790.870500px;}
.x4c{left:795.274500px;}
.x4f{left:796.663500px;}
.x2a{left:798.424500px;}
.x98{left:810.076500px;}
.x50{left:811.608000px;}
.x9f{left:813.886500px;}
.x2d{left:817.863000px;}
.x45{left:819.033000px;}
.xb4{left:828.475500px;}
.x2e{left:832.807500px;}
.x46{left:833.977500px;}
.xb5{left:836.970000px;}
@media print{
.v4{vertical-align:-114.746667pt;}
.v9{vertical-align:-39.573333pt;}
.v8{vertical-align:-31.418667pt;}
.v2{vertical-align:-15.429333pt;}
.v5{vertical-align:-10.453333pt;}
.vf{vertical-align:-8.954667pt;}
.vd{vertical-align:-7.968000pt;}
.v3{vertical-align:-6.458667pt;}
.v0{vertical-align:0.000000pt;}
.v15{vertical-align:4.693333pt;}
.ve{vertical-align:7.173333pt;}
.v10{vertical-align:8.954667pt;}
.v6{vertical-align:10.453333pt;}
.v14{vertical-align:13.482667pt;}
.v17{vertical-align:16.010667pt;}
.v18{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v16{vertical-align:25.696000pt;}
.va{vertical-align:35.968000pt;}
.vc{vertical-align:43.066667pt;}
.v7{vertical-align:66.416000pt;}
.vb{vertical-align:79.514667pt;}
.v12{vertical-align:109.733333pt;}
.v13{vertical-align:128.805333pt;}
.v11{vertical-align:150.688000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.001007pt;}
.ls10{letter-spacing:0.002825pt;}
.lsf{letter-spacing:0.004267pt;}
.ls19{letter-spacing:0.132541pt;}
.ls17{letter-spacing:0.219200pt;}
.ls2e{letter-spacing:0.224533pt;}
.ls4f{letter-spacing:0.386106pt;}
.ls59{letter-spacing:0.482502pt;}
.ls12{letter-spacing:0.487835pt;}
.ls2d{letter-spacing:0.501841pt;}
.ls16{letter-spacing:0.507174pt;}
.ls62{letter-spacing:0.536039pt;}
.ls65{letter-spacing:0.541372pt;}
.ls64{letter-spacing:0.596267pt;}
.ls5f{letter-spacing:0.600158pt;}
.ls61{letter-spacing:0.601600pt;}
.ls11{letter-spacing:0.637762pt;}
.ls35{letter-spacing:0.665067pt;}
.ls14{letter-spacing:0.665266pt;}
.ls37{letter-spacing:0.665570pt;}
.ls52{letter-spacing:0.678400pt;}
.ls29{letter-spacing:0.789841pt;}
.ls1e{letter-spacing:0.882422pt;}
.ls20{letter-spacing:0.884237pt;}
.ls38{letter-spacing:0.887756pt;}
.ls5b{letter-spacing:0.889067pt;}
.ls4d{letter-spacing:0.904442pt;}
.ls1c{letter-spacing:1.006031pt;}
.ls56{letter-spacing:1.009015pt;}
.ls4e{letter-spacing:1.019878pt;}
.ls5e{letter-spacing:1.031452pt;}
.ls40{letter-spacing:1.133372pt;}
.ls8{letter-spacing:1.133683pt;}
.ls3c{letter-spacing:1.138706pt;}
.ls57{letter-spacing:1.166324pt;}
.ls46{letter-spacing:1.167207pt;}
.ls13{letter-spacing:1.169430pt;}
.ls58{letter-spacing:1.296508pt;}
.ls28{letter-spacing:1.312749pt;}
.ls5c{letter-spacing:1.326210pt;}
.ls23{letter-spacing:1.329140pt;}
.ls55{letter-spacing:1.414400pt;}
.ls51{letter-spacing:1.646584pt;}
.ls2{letter-spacing:1.654338pt;}
.ls2a{letter-spacing:1.915200pt;}
.ls1d{letter-spacing:2.021335pt;}
.ls15{letter-spacing:2.580237pt;}
.ls39{letter-spacing:2.581757pt;}
.ls67{letter-spacing:2.656533pt;}
.ls0{letter-spacing:2.657067pt;}
.ls45{letter-spacing:2.787995pt;}
.ls44{letter-spacing:2.793328pt;}
.ls42{letter-spacing:3.123865pt;}
.ls50{letter-spacing:3.158400pt;}
.ls25{letter-spacing:3.274999pt;}
.ls21{letter-spacing:3.321874pt;}
.ls1f{letter-spacing:3.445841pt;}
.ls32{letter-spacing:3.562999pt;}
.ls53{letter-spacing:3.782545pt;}
.ls2f{letter-spacing:4.107174pt;}
.ls27{letter-spacing:7.038400pt;}
.ls4c{letter-spacing:7.543467pt;}
.ls54{letter-spacing:7.938502pt;}
.ls3{letter-spacing:9.298933pt;}
.ls24{letter-spacing:10.183452pt;}
.ls6{letter-spacing:10.626533pt;}
.lsc{letter-spacing:10.973762pt;}
.ls2c{letter-spacing:11.635096pt;}
.ls69{letter-spacing:11.954133pt;}
.ls68{letter-spacing:11.959467pt;}
.ls6a{letter-spacing:12.074520pt;}
.ls6b{letter-spacing:12.128460pt;}
.ls18{letter-spacing:12.299174pt;}
.ls63{letter-spacing:12.493372pt;}
.ls66{letter-spacing:12.498706pt;}
.ls5a{letter-spacing:13.078400pt;}
.ls9{letter-spacing:13.283467pt;}
.lsd{letter-spacing:13.442868pt;}
.ls30{letter-spacing:13.931416pt;}
.ls22{letter-spacing:13.946682pt;}
.ls2b{letter-spacing:14.160508pt;}
.lse{letter-spacing:14.452412pt;}
.ls31{letter-spacing:15.853762pt;}
.ls1{letter-spacing:15.937067pt;}
.ls1b{letter-spacing:16.061762pt;}
.ls43{letter-spacing:16.073328pt;}
.ls48{letter-spacing:16.085044pt;}
.ls34{letter-spacing:16.089067pt;}
.ls33{letter-spacing:16.089874pt;}
.ls3b{letter-spacing:16.938223pt;}
.ls3f{letter-spacing:16.943556pt;}
.ls47{letter-spacing:17.251454pt;}
.ls4a{letter-spacing:18.032518pt;}
.ls36{letter-spacing:18.097067pt;}
.ls1a{letter-spacing:18.320015pt;}
.ls3e{letter-spacing:21.029411pt;}
.ls3a{letter-spacing:21.034745pt;}
.ls3d{letter-spacing:21.054046pt;}
.ls41{letter-spacing:21.059379pt;}
.ls26{letter-spacing:21.773762pt;}
.ls4b{letter-spacing:22.440429pt;}
.ls49{letter-spacing:28.333762pt;}
.ls5d{letter-spacing:43.588237pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls60{letter-spacing:63.762219pt;}
.lsb{letter-spacing:200.379733pt;}
.ws71{word-spacing:-13.283467pt;}
.ws45{word-spacing:-11.955200pt;}
.ws2a{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws7{word-spacing:-9.298400pt;}
.ws7b{word-spacing:-3.134898pt;}
.wsa5{word-spacing:-2.762961pt;}
.ws4a{word-spacing:-2.391024pt;}
.ws8f{word-spacing:-2.284756pt;}
.ws55{word-spacing:-2.282515pt;}
.ws4b{word-spacing:-2.072221pt;}
.wsd2{word-spacing:-1.769370pt;}
.ws4{word-spacing:-1.696326pt;}
.ws58{word-spacing:-1.647150pt;}
.wsa4{word-spacing:-1.594016pt;}
.wscb{word-spacing:-1.530266pt;}
.wsc0{word-spacing:-1.434624pt;}
.wsef{word-spacing:-1.338982pt;}
.ws68{word-spacing:-1.328347pt;}
.wsee{word-spacing:-1.291162pt;}
.ws17{word-spacing:-1.195520pt;}
.ws3{word-spacing:-1.175671pt;}
.ws39{word-spacing:-1.168945pt;}
.wsb5{word-spacing:-1.115811pt;}
.wsc2{word-spacing:-1.099878pt;}
.ws38{word-spacing:-1.062677pt;}
.wsd7{word-spacing:-1.052058pt;}
.ws1d{word-spacing:-1.009543pt;}
.wsf0{word-spacing:-1.004237pt;}
.ws9b{word-spacing:-0.850142pt;}
.wsd9{word-spacing:-0.765133pt;}
.ws9a{word-spacing:-0.743874pt;}
.wse3{word-spacing:-0.669491pt;}
.ws51{word-spacing:-0.637606pt;}
.wsc9{word-spacing:-0.621670pt;}
.ws50{word-spacing:-0.584473pt;}
.ws5c{word-spacing:-0.526029pt;}
.ws41{word-spacing:-0.425071pt;}
.ws26{word-spacing:-0.318803pt;}
.ws5d{word-spacing:-0.286925pt;}
.ws34{word-spacing:-0.265669pt;}
.wsba{word-spacing:-0.239104pt;}
.ws1c{word-spacing:-0.212535pt;}
.wsbf{word-spacing:-0.191283pt;}
.ws88{word-spacing:-0.159580pt;}
.ws1e{word-spacing:-0.159402pt;}
.wsc8{word-spacing:-0.143462pt;}
.ws4c{word-spacing:-0.111312pt;}
.ws25{word-spacing:-0.106268pt;}
.ws15{word-spacing:-0.095642pt;}
.ws52{word-spacing:-0.053134pt;}
.ws48{word-spacing:-0.047821pt;}
.wsac{word-spacing:-0.006588pt;}
.wsaa{word-spacing:-0.006426pt;}
.wsae{word-spacing:-0.004480pt;}
.wsad{word-spacing:-0.003814pt;}
.wsc7{word-spacing:-0.003772pt;}
.ws1{word-spacing:-0.003718pt;}
.ws6{word-spacing:-0.003117pt;}
.ws29{word-spacing:-0.001460pt;}
.ws0{word-spacing:0.000000pt;}
.wsab{word-spacing:0.001519pt;}
.ws49{word-spacing:0.047821pt;}
.ws31{word-spacing:0.053134pt;}
.ws14{word-spacing:0.095642pt;}
.ws1f{word-spacing:0.106268pt;}
.ws16{word-spacing:0.143462pt;}
.ws2f{word-spacing:0.159402pt;}
.ws8{word-spacing:0.185968pt;}
.ws13{word-spacing:0.191283pt;}
.ws5f{word-spacing:0.212535pt;}
.wsa7{word-spacing:0.239104pt;}
.wsa{word-spacing:0.260355pt;}
.ws37{word-spacing:0.265669pt;}
.wsd3{word-spacing:0.286925pt;}
.ws42{word-spacing:0.318803pt;}
.wsec{word-spacing:0.334746pt;}
.ws79{word-spacing:0.371937pt;}
.ws73{word-spacing:0.382566pt;}
.ws35{word-spacing:0.425071pt;}
.ws7c{word-spacing:0.478205pt;}
.wsd1{word-spacing:0.526029pt;}
.ws59{word-spacing:0.531339pt;}
.wsed{word-spacing:0.573850pt;}
.wsa6{word-spacing:0.584473pt;}
.ws72{word-spacing:0.621670pt;}
.wsf1{word-spacing:0.717312pt;}
.ws75{word-spacing:0.765133pt;}
.ws32{word-spacing:0.797008pt;}
.ws33{word-spacing:0.850142pt;}
.ws3d{word-spacing:0.903276pt;}
.ws43{word-spacing:0.956410pt;}
.wsc1{word-spacing:1.004237pt;}
.ws74{word-spacing:1.052058pt;}
.ws3a{word-spacing:1.062677pt;}
.ws53{word-spacing:1.115811pt;}
.ws64{word-spacing:1.168945pt;}
.ws27{word-spacing:1.222079pt;}
.wse6{word-spacing:1.243341pt;}
.ws22{word-spacing:1.275213pt;}
.ws96{word-spacing:1.311411pt;}
.wsa8{word-spacing:1.328347pt;}
.ws3b{word-spacing:1.381481pt;}
.wseb{word-spacing:1.386803pt;}
.wsdc{word-spacing:1.434624pt;}
.wsa1{word-spacing:1.530266pt;}
.wsc6{word-spacing:1.578086pt;}
.ws2e{word-spacing:1.594016pt;}
.wsb2{word-spacing:1.647150pt;}
.wsbb{word-spacing:1.673728pt;}
.ws2b{word-spacing:1.700284pt;}
.ws1a{word-spacing:1.753418pt;}
.wse0{word-spacing:1.769370pt;}
.ws9{word-spacing:1.785293pt;}
.ws7f{word-spacing:1.806551pt;}
.wsa0{word-spacing:1.817190pt;}
.ws76{word-spacing:1.859685pt;}
.ws61{word-spacing:1.912819pt;}
.wscc{word-spacing:1.912832pt;}
.ws70{word-spacing:2.019087pt;}
.ws86{word-spacing:2.072221pt;}
.ws9d{word-spacing:2.135733pt;}
.ws9c{word-spacing:2.178489pt;}
.ws40{word-spacing:2.231622pt;}
.ws3f{word-spacing:2.284756pt;}
.ws8d{word-spacing:2.337890pt;}
.ws36{word-spacing:2.497292pt;}
.wsdb{word-spacing:2.534502pt;}
.ws5a{word-spacing:2.550426pt;}
.ws12{word-spacing:2.550432pt;}
.ws8c{word-spacing:2.582323pt;}
.ws5e{word-spacing:2.603559pt;}
.wsc3{word-spacing:2.630144pt;}
.ws2d{word-spacing:2.656693pt;}
.wsb0{word-spacing:2.709827pt;}
.wsb9{word-spacing:2.725786pt;}
.ws20{word-spacing:2.762961pt;}
.wse8{word-spacing:2.865843pt;}
.wsf3{word-spacing:2.865929pt;}
.wsd6{word-spacing:2.866014pt;}
.wsce{word-spacing:2.866534pt;}
.wse2{word-spacing:2.867260pt;}
.wsdd{word-spacing:2.867746pt;}
.wse5{word-spacing:2.868130pt;}
.ws77{word-spacing:2.869229pt;}
.ws8b{word-spacing:2.869248pt;}
.wsca{word-spacing:2.869794pt;}
.wsb7{word-spacing:2.975497pt;}
.wsc5{word-spacing:3.012710pt;}
.wsa9{word-spacing:3.028630pt;}
.wsb8{word-spacing:3.060531pt;}
.ws5b{word-spacing:3.081764pt;}
.wsd5{word-spacing:3.108352pt;}
.ws4d{word-spacing:3.134898pt;}
.ws19{word-spacing:3.188032pt;}
.ws95{word-spacing:3.251814pt;}
.ws23{word-spacing:3.294300pt;}
.ws24{word-spacing:3.347434pt;}
.wsda{word-spacing:3.347456pt;}
.ws93{word-spacing:3.395277pt;}
.ws30{word-spacing:3.400567pt;}
.ws67{word-spacing:3.506835pt;}
.wsa2{word-spacing:3.559969pt;}
.wsd0{word-spacing:3.586560pt;}
.ws8e{word-spacing:3.613103pt;}
.wsb4{word-spacing:3.666237pt;}
.ws92{word-spacing:3.682202pt;}
.wsb6{word-spacing:3.772505pt;}
.ws9f{word-spacing:3.825638pt;}
.wsc4{word-spacing:3.825664pt;}
.ws85{word-spacing:3.878772pt;}
.ws28{word-spacing:4.144442pt;}
.ws62{word-spacing:4.303843pt;}
.wsb3{word-spacing:4.356977pt;}
.ws7d{word-spacing:4.675780pt;}
.wsf2{word-spacing:4.734259pt;}
.ws3c{word-spacing:4.782048pt;}
.ws2c{word-spacing:4.888316pt;}
.ws87{word-spacing:4.941450pt;}
.ws91{word-spacing:4.973363pt;}
.wse1{word-spacing:5.164646pt;}
.ws90{word-spacing:5.308109pt;}
.ws1b{word-spacing:5.366521pt;}
.ws10{word-spacing:5.393072pt;}
.wsbc{word-spacing:5.403750pt;}
.ws11{word-spacing:5.467459pt;}
.ws63{word-spacing:5.472788pt;}
.wscf{word-spacing:5.499392pt;}
.ws7e{word-spacing:5.579056pt;}
.wse7{word-spacing:5.595034pt;}
.wsb1{word-spacing:5.632190pt;}
.ws6f{word-spacing:5.738458pt;}
.ws6e{word-spacing:5.791591pt;}
.ws98{word-spacing:5.844267pt;}
.wsaf{word-spacing:5.844725pt;}
.ws78{word-spacing:6.057261pt;}
.wsea{word-spacing:6.168883pt;}
.ws89{word-spacing:6.216662pt;}
.ws60{word-spacing:6.269796pt;}
.ws8a{word-spacing:6.322930pt;}
.ws3e{word-spacing:6.376064pt;}
.wsbe{word-spacing:6.742733pt;}
.ws18{word-spacing:6.886195pt;}
.ws57{word-spacing:7.066804pt;}
.wsbd{word-spacing:7.125299pt;}
.ws6c{word-spacing:7.332474pt;}
.wscd{word-spacing:7.412224pt;}
.ws4f{word-spacing:7.438741pt;}
.ws83{word-spacing:7.558703pt;}
.wse{word-spacing:7.699075pt;}
.wsdf{word-spacing:8.125687pt;}
.wsd8{word-spacing:8.126071pt;}
.wsd4{word-spacing:8.126626pt;}
.wse9{word-spacing:8.128043pt;}
.wsde{word-spacing:8.129417pt;}
.ws6d{word-spacing:8.129482pt;}
.ws82{word-spacing:8.485297pt;}
.ws80{word-spacing:8.490630pt;}
.ws21{word-spacing:9.404694pt;}
.wse4{word-spacing:11.237888pt;}
.ws5{word-spacing:13.763148pt;}
.ws94{word-spacing:13.820800pt;}
.wsb{word-spacing:14.348669pt;}
.wsc{word-spacing:14.356730pt;}
.wsd{word-spacing:15.732893pt;}
.wsf{word-spacing:24.399002pt;}
.ws56{word-spacing:219.230334pt;}
.ws44{word-spacing:224.993764pt;}
.ws97{word-spacing:229.266779pt;}
.ws54{word-spacing:236.977045pt;}
.ws65{word-spacing:267.847822pt;}
.ws99{word-spacing:347.389220pt;}
.ws4e{word-spacing:350.417851pt;}
.ws69{word-spacing:380.452800pt;}
.ws6a{word-spacing:393.732800pt;}
.wsa3{word-spacing:396.538047pt;}
.ws6b{word-spacing:401.957701pt;}
.ws66{word-spacing:457.764986pt;}
.ws9e{word-spacing:552.379678pt;}
.ws7a{word-spacing:603.653859pt;}
.ws81{word-spacing:746.424559pt;}
.ws84{word-spacing:814.329641pt;}
.ws46{word-spacing:1314.371140pt;}
.ws47{word-spacing:1315.709807pt;}
._7a{margin-left:-18.649713pt;}
._0{margin-left:-10.616218pt;}
._30{margin-left:-7.644550pt;}
._b{margin-left:-6.216704pt;}
._18{margin-left:-5.308109pt;}
._a{margin-left:-4.399514pt;}
._5{margin-left:-3.421811pt;}
._62{margin-left:-2.127700pt;}
._3{margin-left:-1.175671pt;}
._4{width:0.969929pt;}
._1{width:2.661318pt;}
._60{width:4.151168pt;}
._61{width:5.283553pt;}
._64{width:8.029940pt;}
._5c{width:9.145751pt;}
._7{width:11.530016pt;}
._8{width:12.689935pt;}
._77{width:13.653300pt;}
._c{width:14.641289pt;}
._75{width:15.533636pt;}
._d{width:16.450355pt;}
._17{width:17.374774pt;}
._12{width:18.490586pt;}
._f{width:20.031468pt;}
._10{width:21.041011pt;}
._6{width:23.063232pt;}
._66{width:23.963374pt;}
._15{width:24.972917pt;}
._11{width:26.885737pt;}
._67{width:27.988095pt;}
._9{width:29.011008pt;}
._76{width:30.233170pt;}
._16{width:31.667785pt;}
._e{width:33.335114pt;}
._63{width:35.181346pt;}
._2{width:48.376563pt;}
._79{width:53.729434pt;}
._78{width:54.993920pt;}
._1a{width:60.891411pt;}
._6e{width:64.286701pt;}
._1b{width:73.577122pt;}
._19{width:155.222356pt;}
._20{width:186.460057pt;}
._2b{width:191.249774pt;}
._70{width:209.188033pt;}
._46{width:220.824350pt;}
._1c{width:225.582789pt;}
._69{width:243.352571pt;}
._1f{width:246.204273pt;}
._26{width:250.415929pt;}
._43{width:252.970339pt;}
._68{width:255.837904pt;}
._29{width:258.889983pt;}
._47{width:266.466341pt;}
._40{width:268.113533pt;}
._49{width:270.298706pt;}
._2a{width:273.373734pt;}
._53{width:277.305650pt;}
._2d{width:284.261405pt;}
._45{width:293.139542pt;}
._73{width:295.264897pt;}
._2f{width:296.388944pt;}
._4d{width:305.813273pt;}
._6f{width:307.298415pt;}
._25{width:309.632826pt;}
._71{width:312.792347pt;}
._44{width:313.969467pt;}
._23{width:318.106881pt;}
._42{width:325.509310pt;}
._28{width:329.371792pt;}
._4c{width:334.212021pt;}
._1e{width:335.714647pt;}
._4e{width:343.722983pt;}
._4f{width:347.683157pt;}
._39{width:348.823835pt;}
._48{width:353.880611pt;}
._2c{width:354.793956pt;}
._51{width:357.006450pt;}
._24{width:360.344815pt;}
._3c{width:362.326563pt;}
._22{width:365.348467pt;}
._72{width:366.473338pt;}
._2e{width:371.082408pt;}
._27{width:373.112122pt;}
._21{width:385.797833pt;}
._36{width:386.814549pt;}
._1d{width:398.483543pt;}
._33{width:407.589891pt;}
._6d{width:409.237041pt;}
._74{width:410.405986pt;}
._55{width:415.143060pt;}
._3b{width:418.322932pt;}
._5d{width:420.554555pt;}
._6c{width:422.520508pt;}
._5f{width:424.380193pt;}
._41{width:425.761674pt;}
._6b{width:428.418367pt;}
._5a{width:429.599936pt;}
._3f{width:431.606399pt;}
._6a{width:435.803974pt;}
._3d{width:437.404717pt;}
._5b{width:448.759645pt;}
._59{width:461.345573pt;}
._5e{width:468.321901pt;}
._50{width:470.548245pt;}
._57{width:488.300235pt;}
._3a{width:502.971908pt;}
._54{width:510.392830pt;}
._52{width:520.339956pt;}
._38{width:531.976273pt;}
._4b{width:544.887803pt;}
._37{width:553.017284pt;}
._4a{width:554.026828pt;}
._3e{width:567.423289pt;}
._56{width:568.638641pt;}
._32{width:573.792626pt;}
._58{width:582.081509pt;}
._31{width:598.446740pt;}
._34{width:612.739750pt;}
._35{width:629.795722pt;}
._13{width:791.289646pt;}
._65{width:2216.237067pt;}
._14{width:2237.490400pt;}
.fs7{font-size:31.880533pt;}
.fse{font-size:33.219200pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fsc{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fsd{font-size:49.829333pt;}
.fsa{font-size:50.742843pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:131.027520pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.044747pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:14.078151pt;}
.y4c{bottom:28.346667pt;}
.y1bf{bottom:76.637333pt;}
.y156{bottom:79.105333pt;}
.y1a3{bottom:81.128000pt;}
.yd3{bottom:84.109333pt;}
.y20f{bottom:84.598667pt;}
.y12a{bottom:85.456000pt;}
.y116{bottom:85.465333pt;}
.y1cd{bottom:85.794667pt;}
.y22{bottom:91.398667pt;}
.y248{bottom:92.050667pt;}
.y4b{bottom:92.108000pt;}
.y1be{bottom:93.733333pt;}
.y155{bottom:95.842667pt;}
.y83{bottom:97.214667pt;}
.y1a2{bottom:97.865333pt;}
.y20e{bottom:99.941333pt;}
.yd2{bottom:100.846667pt;}
.y129{bottom:102.193333pt;}
.y115{bottom:102.202667pt;}
.y1cc{bottom:102.532000pt;}
.y21{bottom:107.298667pt;}
.y247{bottom:107.393333pt;}
.y4a{bottom:108.844000pt;}
.ya3{bottom:109.057333pt;}
.y1e7{bottom:111.338667pt;}
.y82{bottom:113.952000pt;}
.y1a1{bottom:114.602667pt;}
.y20d{bottom:115.284000pt;}
.y154{bottom:116.565333pt;}
.yd1{bottom:117.584000pt;}
.y1bd{bottom:118.800000pt;}
.y128{bottom:118.930667pt;}
.y197{bottom:120.825333pt;}
.y246{bottom:122.736000pt;}
.y114{bottom:122.924000pt;}
.y20{bottom:123.200000pt;}
.y196{bottom:123.805333pt;}
.y192{bottom:124.828000pt;}
.y49{bottom:125.581333pt;}
.ya2{bottom:125.794667pt;}
.y1e6{bottom:128.076000pt;}
.y20c{bottom:130.626667pt;}
.y81{bottom:130.689333pt;}
.y1a0{bottom:131.340000pt;}
.y1cb{bottom:132.368000pt;}
.y191{bottom:133.940000pt;}
.yd0{bottom:134.321333pt;}
.y127{bottom:135.668000pt;}
.y1bc{bottom:135.896000pt;}
.y245{bottom:138.078667pt;}
.y1f{bottom:139.100000pt;}
.y195{bottom:140.890667pt;}
.y48{bottom:142.318667pt;}
.ya1{bottom:142.532000pt;}
.y1e5{bottom:144.813333pt;}
.yf6{bottom:144.913333pt;}
.y20b{bottom:145.969333pt;}
.y153{bottom:146.453333pt;}
.y80{bottom:147.426667pt;}
.y19f{bottom:148.077333pt;}
.y1ca{bottom:149.464000pt;}
.y193{bottom:149.668000pt;}
.ycf{bottom:151.058667pt;}
.y126{bottom:152.405333pt;}
.y113{bottom:152.812000pt;}
.y194{bottom:153.038667pt;}
.y244{bottom:153.421333pt;}
.y1e{bottom:155.000000pt;}
.y47{bottom:159.056000pt;}
.ya0{bottom:159.269333pt;}
.yf5{bottom:160.854667pt;}
.y20a{bottom:161.312000pt;}
.y1e4{bottom:161.550667pt;}
.y152{bottom:163.190667pt;}
.y7f{bottom:164.164000pt;}
.yce{bottom:167.796000pt;}
.y243{bottom:168.762667pt;}
.y112{bottom:169.549333pt;}
.y1d{bottom:170.901333pt;}
.y1c9{bottom:174.529333pt;}
.y46{bottom:175.793333pt;}
.y9f{bottom:176.006667pt;}
.y1c5{bottom:176.032000pt;}
.y209{bottom:176.654667pt;}
.yf4{bottom:176.794667pt;}
.y19e{bottom:177.913333pt;}
.y1e3{bottom:178.288000pt;}
.y151{bottom:179.928000pt;}
.y7e{bottom:180.901333pt;}
.y125{bottom:182.241333pt;}
.y190{bottom:182.557333pt;}
.y242{bottom:184.105333pt;}
.ycd{bottom:184.533333pt;}
.y111{bottom:186.286667pt;}
.y1c{bottom:186.801333pt;}
.y1c8{bottom:191.625333pt;}
.y208{bottom:191.996000pt;}
.y45{bottom:192.530667pt;}
.yf3{bottom:192.734667pt;}
.y9e{bottom:192.744000pt;}
.y1c4{bottom:193.128000pt;}
.y165{bottom:193.730667pt;}
.y175{bottom:195.002667pt;}
.y19d{bottom:195.009333pt;}
.y1e2{bottom:195.025333pt;}
.y150{bottom:196.665333pt;}
.y7d{bottom:197.638667pt;}
.y18f{bottom:199.294667pt;}
.y124{bottom:199.337333pt;}
.y241{bottom:199.448000pt;}
.ycc{bottom:201.270667pt;}
.y1b{bottom:202.701333pt;}
.y110{bottom:203.024000pt;}
.y207{bottom:207.338667pt;}
.yf2{bottom:208.674667pt;}
.y44{bottom:209.268000pt;}
.y9d{bottom:209.481333pt;}
.y1e1{bottom:211.762667pt;}
.y174{bottom:212.098667pt;}
.y14f{bottom:213.402667pt;}
.y7c{bottom:214.376000pt;}
.y240{bottom:214.790667pt;}
.y18e{bottom:216.032000pt;}
.y123{bottom:216.433333pt;}
.ycb{bottom:218.008000pt;}
.y164{bottom:218.796000pt;}
.y10f{bottom:219.761333pt;}
.y206{bottom:222.681333pt;}
.yf1{bottom:224.614667pt;}
.y43{bottom:226.005333pt;}
.y9c{bottom:226.218667pt;}
.y23f{bottom:230.133333pt;}
.y14e{bottom:230.140000pt;}
.y7b{bottom:231.113333pt;}
.y1e0{bottom:232.485333pt;}
.y18d{bottom:232.769333pt;}
.yca{bottom:234.745333pt;}
.y205{bottom:238.024000pt;}
.yf0{bottom:240.556000pt;}
.y42{bottom:242.742667pt;}
.y23e{bottom:245.476000pt;}
.y9b{bottom:246.940000pt;}
.y7a{bottom:247.850667pt;}
.y1df{bottom:249.222667pt;}
.y18c{bottom:249.506667pt;}
.yc9{bottom:251.482667pt;}
.y204{bottom:253.366667pt;}
.yef{bottom:256.496000pt;}
.y14d{bottom:257.732000pt;}
.y41{bottom:259.480000pt;}
.y23d{bottom:260.818667pt;}
.y10e{bottom:261.898667pt;}
.y79{bottom:264.588000pt;}
.y1de{bottom:265.960000pt;}
.y18b{bottom:266.244000pt;}
.y1bb{bottom:267.433333pt;}
.y1b9{bottom:267.712000pt;}
.y203{bottom:268.709333pt;}
.yc8{bottom:272.205333pt;}
.yee{bottom:272.436000pt;}
.y1a{bottom:273.154667pt;}
.y23c{bottom:276.161333pt;}
.y40{bottom:276.217333pt;}
.y10d{bottom:277.840000pt;}
.y9a{bottom:279.300000pt;}
.y78{bottom:281.325333pt;}
.y18a{bottom:282.981333pt;}
.y202{bottom:284.052000pt;}
.y1ba{bottom:284.529333pt;}
.y1b8{bottom:284.808000pt;}
.y1dd{bottom:286.681333pt;}
.y19{bottom:289.054667pt;}
.y23b{bottom:291.502667pt;}
.y3f{bottom:292.954667pt;}
.y10c{bottom:293.780000pt;}
.yed{bottom:295.044000pt;}
.y99{bottom:296.396000pt;}
.y77{bottom:298.062667pt;}
.y201{bottom:299.394667pt;}
.y189{bottom:299.718667pt;}
.yc7{bottom:302.092000pt;}
.y1dc{bottom:303.418667pt;}
.y18{bottom:304.954667pt;}
.y23a{bottom:306.845333pt;}
.y3e{bottom:309.692000pt;}
.y200{bottom:314.737333pt;}
.y76{bottom:314.800000pt;}
.y98{bottom:314.821333pt;}
.y10b{bottom:316.388000pt;}
.y188{bottom:316.456000pt;}
.yc6{bottom:318.829333pt;}
.y1db{bottom:320.156000pt;}
.y17{bottom:320.856000pt;}
.y239{bottom:322.188000pt;}
.yec{bottom:324.080000pt;}
.y3d{bottom:326.429333pt;}
.y1ff{bottom:330.078667pt;}
.y75{bottom:331.537333pt;}
.y187{bottom:333.193333pt;}
.yc5{bottom:335.566667pt;}
.y1da{bottom:336.893333pt;}
.y238{bottom:337.530667pt;}
.y3c{bottom:343.166667pt;}
.y1fe{bottom:345.421333pt;}
.y10a{bottom:345.424000pt;}
.y74{bottom:348.274667pt;}
.y186{bottom:349.930667pt;}
.y237{bottom:352.873333pt;}
.y1d9{bottom:353.630667pt;}
.y16{bottom:354.688000pt;}
.yc4{bottom:356.289333pt;}
.yeb{bottom:357.061333pt;}
.y3b{bottom:359.904000pt;}
.y1fd{bottom:360.764000pt;}
.y73{bottom:365.012000pt;}
.y185{bottom:366.668000pt;}
.y14c{bottom:367.802667pt;}
.y236{bottom:368.216000pt;}
.y1d8{bottom:370.368000pt;}
.y15{bottom:370.589333pt;}
.yea{bottom:373.798667pt;}
.y1fc{bottom:376.106667pt;}
.y109{bottom:378.405333pt;}
.y3a{bottom:380.626667pt;}
.y72{bottom:381.749333pt;}
.y235{bottom:383.558667pt;}
.y14b{bottom:384.540000pt;}
.y14{bottom:386.489333pt;}
.y1d7{bottom:387.105333pt;}
.ye9{bottom:390.536000pt;}
.y163{bottom:391.445333pt;}
.y1fb{bottom:391.449333pt;}
.y184{bottom:393.972000pt;}
.y108{bottom:395.142667pt;}
.yc3{bottom:395.637333pt;}
.y71{bottom:398.486667pt;}
.y234{bottom:398.901333pt;}
.y149{bottom:401.277333pt;}
.y14a{bottom:403.628000pt;}
.y1d6{bottom:403.842667pt;}
.y1fa{bottom:406.792000pt;}
.ye8{bottom:407.273333pt;}
.y162{bottom:408.182667pt;}
.yc2{bottom:411.577333pt;}
.y107{bottom:411.880000pt;}
.y233{bottom:414.244000pt;}
.y70{bottom:415.224000pt;}
.y148{bottom:418.014667pt;}
.y13{bottom:418.330667pt;}
.y1f9{bottom:422.134667pt;}
.ye7{bottom:424.010667pt;}
.y1d5{bottom:424.565333pt;}
.y161{bottom:424.920000pt;}
.yc1{bottom:427.517333pt;}
.y106{bottom:428.617333pt;}
.y232{bottom:429.585333pt;}
.y6f{bottom:431.961333pt;}
.y147{bottom:434.752000pt;}
.ye6{bottom:440.748000pt;}
.y1d4{bottom:441.302667pt;}
.y1f8{bottom:441.461333pt;}
.y160{bottom:441.657333pt;}
.yc0{bottom:443.458667pt;}
.y39{bottom:444.312000pt;}
.y231{bottom:444.928000pt;}
.y105{bottom:445.354667pt;}
.y6e{bottom:448.698667pt;}
.y12{bottom:450.170667pt;}
.y146{bottom:451.489333pt;}
.ye5{bottom:457.485333pt;}
.y1d3{bottom:458.040000pt;}
.y15f{bottom:458.394667pt;}
.ybf{bottom:459.398667pt;}
.y230{bottom:460.270667pt;}
.y38{bottom:461.606667pt;}
.y104{bottom:462.092000pt;}
.y6d{bottom:465.436000pt;}
.y11{bottom:466.070667pt;}
.y145{bottom:468.226667pt;}
.y1f7{bottom:471.349333pt;}
.y1c7{bottom:472.400000pt;}
.y97{bottom:473.074667pt;}
.ye4{bottom:474.222667pt;}
.y1d2{bottom:474.777333pt;}
.y15e{bottom:475.132000pt;}
.ybe{bottom:475.338667pt;}
.y22f{bottom:475.613333pt;}
.y103{bottom:478.829333pt;}
.y1c3{bottom:479.968000pt;}
.y10{bottom:481.972000pt;}
.y6c{bottom:482.173333pt;}
.y144{bottom:484.964000pt;}
.y1f6{bottom:486.970667pt;}
.y1c6{bottom:489.496000pt;}
.y22e{bottom:490.956000pt;}
.ye3{bottom:490.960000pt;}
.y1d1{bottom:491.514667pt;}
.y15d{bottom:491.869333pt;}
.y37{bottom:494.842667pt;}
.y102{bottom:495.566667pt;}
.y1c2{bottom:497.064000pt;}
.yf{bottom:497.872000pt;}
.ybd{bottom:498.505333pt;}
.y6b{bottom:498.910667pt;}
.y143{bottom:501.701333pt;}
.y22d{bottom:506.298667pt;}
.y15c{bottom:508.606667pt;}
.y1f5{bottom:510.562667pt;}
.ye2{bottom:511.681333pt;}
.y36{bottom:512.137333pt;}
.y1d0{bottom:512.236000pt;}
.y101{bottom:512.304000pt;}
.ye{bottom:513.772000pt;}
.y6a{bottom:515.648000pt;}
.y142{bottom:518.438667pt;}
.y22c{bottom:521.641333pt;}
.y15b{bottom:525.344000pt;}
.y1f4{bottom:526.184000pt;}
.ybc{bottom:527.541333pt;}
.y100{bottom:529.041333pt;}
.y35{bottom:529.433333pt;}
.yd{bottom:529.673333pt;}
.y69{bottom:532.384000pt;}
.y141{bottom:535.176000pt;}
.y22b{bottom:536.984000pt;}
.ye1{bottom:541.569333pt;}
.y1f3{bottom:541.805333pt;}
.y15a{bottom:542.081333pt;}
.y173{bottom:542.480000pt;}
.yc{bottom:545.573333pt;}
.yff{bottom:545.778667pt;}
.y34{bottom:546.728000pt;}
.y1cf{bottom:547.253333pt;}
.y68{bottom:549.121333pt;}
.y140{bottom:551.913333pt;}
.y22a{bottom:552.325333pt;}
.ye0{bottom:558.306667pt;}
.y159{bottom:558.818667pt;}
.y172{bottom:559.217333pt;}
.ybb{bottom:560.522667pt;}
.yb{bottom:561.473333pt;}
.yfe{bottom:562.516000pt;}
.y33{bottom:564.022667pt;}
.y1ce{bottom:564.349333pt;}
.y1f2{bottom:565.397333pt;}
.y67{bottom:565.858667pt;}
.y229{bottom:567.668000pt;}
.y13f{bottom:568.650667pt;}
.y1b7{bottom:573.808000pt;}
.ydf{bottom:575.044000pt;}
.y158{bottom:575.556000pt;}
.y171{bottom:575.954667pt;}
.yba{bottom:577.260000pt;}
.yfd{bottom:579.253333pt;}
.y1f1{bottom:581.018667pt;}
.y32{bottom:581.318667pt;}
.y8{bottom:581.358715pt;}
.y66{bottom:582.596000pt;}
.y228{bottom:583.010667pt;}
.y13e{bottom:585.388000pt;}
.y1b6{bottom:590.545333pt;}
.yde{bottom:591.781333pt;}
.y170{bottom:592.692000pt;}
.yb9{bottom:593.997333pt;}
.yfc{bottom:595.989333pt;}
.y1f0{bottom:596.640000pt;}
.y227{bottom:598.353333pt;}
.y31{bottom:598.613333pt;}
.y65{bottom:599.333333pt;}
.y13d{bottom:602.125333pt;}
.y157{bottom:605.392000pt;}
.y1b5{bottom:607.282667pt;}
.ydd{bottom:608.518667pt;}
.y16f{bottom:609.429333pt;}
.yb8{bottom:610.734667pt;}
.yfb{bottom:612.726667pt;}
.y226{bottom:613.696000pt;}
.y30{bottom:615.909333pt;}
.y64{bottom:616.070667pt;}
.y1ef{bottom:620.232000pt;}
.y1b4{bottom:624.020000pt;}
.ydc{bottom:625.256000pt;}
.y16e{bottom:626.165333pt;}
.yb7{bottom:627.472000pt;}
.y225{bottom:629.038667pt;}
.yfa{bottom:629.464000pt;}
.y63{bottom:632.808000pt;}
.y13c{bottom:632.809333pt;}
.y2f{bottom:633.204000pt;}
.y96{bottom:639.916133pt;}
.y1b3{bottom:640.757333pt;}
.ydb{bottom:641.993333pt;}
.y16d{bottom:642.902667pt;}
.y1ee{bottom:643.822667pt;}
.yb6{bottom:644.209333pt;}
.y224{bottom:644.381333pt;}
.y62{bottom:649.545333pt;}
.y2e{bottom:650.498667pt;}
.y95{bottom:655.138833pt;}
.y1b2{bottom:657.494667pt;}
.yda{bottom:658.730667pt;}
.yf9{bottom:659.301333pt;}
.y16c{bottom:659.640000pt;}
.y223{bottom:659.724000pt;}
.yb5{bottom:660.946667pt;}
.y13b{bottom:663.494667pt;}
.y61{bottom:666.282667pt;}
.y1ed{bottom:667.414667pt;}
.y2d{bottom:667.794667pt;}
.y94{bottom:670.362807pt;}
.y1b1{bottom:674.232000pt;}
.y222{bottom:675.066667pt;}
.yd9{bottom:675.468000pt;}
.y16b{bottom:676.377333pt;}
.yb4{bottom:677.684000pt;}
.y122{bottom:681.738667pt;}
.y13a{bottom:682.881333pt;}
.y60{bottom:683.020000pt;}
.y1ec{bottom:683.036000pt;}
.yf8{bottom:684.366667pt;}
.y93{bottom:685.585507pt;}
.y221{bottom:690.408000pt;}
.y1b0{bottom:690.968000pt;}
.y139{bottom:691.994667pt;}
.yb3{bottom:694.421333pt;}
.y16a{bottom:697.100000pt;}
.y121{bottom:697.678667pt;}
.y2c{bottom:697.902667pt;}
.y5f{bottom:699.757333pt;}
.y92{bottom:700.808207pt;}
.yd8{bottom:705.304000pt;}
.y220{bottom:705.750667pt;}
.y1eb{bottom:706.628000pt;}
.y1af{bottom:707.705333pt;}
.yb2{bottom:711.158667pt;}
.y2b{bottom:712.248000pt;}
.y120{bottom:713.618667pt;}
.y138{bottom:713.765333pt;}
.y91{bottom:716.030907pt;}
.y5e{bottom:716.494667pt;}
.y21f{bottom:721.093333pt;}
.y1ea{bottom:722.249333pt;}
.yd7{bottom:722.400000pt;}
.y169{bottom:724.146667pt;}
.y1ae{bottom:724.442667pt;}
.yb1{bottom:727.896000pt;}
.y11f{bottom:729.560000pt;}
.y2a{bottom:730.452000pt;}
.y137{bottom:730.502667pt;}
.y90{bottom:731.253607pt;}
.y5d{bottom:733.232000pt;}
.y21e{bottom:736.436000pt;}
.y1e9{bottom:737.870667pt;}
.y183{bottom:737.994667pt;}
.yd6{bottom:739.496000pt;}
.y29{bottom:740.941333pt;}
.y1ad{bottom:741.180000pt;}
.y168{bottom:741.242667pt;}
.yb0{bottom:744.633333pt;}
.y136{bottom:747.240000pt;}
.y5c{bottom:749.969333pt;}
.y21d{bottom:751.778667pt;}
.y11e{bottom:752.166667pt;}
.y8f{bottom:752.844247pt;}
.y1e8{bottom:753.492000pt;}
.y182{bottom:753.934667pt;}
.y28{bottom:755.286667pt;}
.y1ac{bottom:757.917333pt;}
.y167{bottom:758.338667pt;}
.yaf{bottom:761.370667pt;}
.y135{bottom:763.977333pt;}
.y19c{bottom:764.332000pt;}
.yd5{bottom:764.562667pt;}
.y5b{bottom:766.706667pt;}
.y21c{bottom:767.121333pt;}
.y181{bottom:769.874667pt;}
.y27{bottom:773.490667pt;}
.y1ab{bottom:774.654667pt;}
.y134{bottom:780.714667pt;}
.y19b{bottom:781.069333pt;}
.y8e{bottom:781.164000pt;}
.y11d{bottom:781.204000pt;}
.y21b{bottom:782.464000pt;}
.y166{bottom:783.404000pt;}
.y5a{bottom:783.444000pt;}
.y26{bottom:783.980000pt;}
.y180{bottom:785.816000pt;}
.y1c1{bottom:797.408000pt;}
.y133{bottom:797.452000pt;}
.y19a{bottom:797.806667pt;}
.y11c{bottom:798.298667pt;}
.y59{bottom:800.181333pt;}
.y17f{bottom:801.756000pt;}
.y25{bottom:802.184000pt;}
.yae{bottom:803.508000pt;}
.y24{bottom:812.672000pt;}
.y21a{bottom:813.149333pt;}
.y8d{bottom:814.145333pt;}
.y132{bottom:814.189333pt;}
.y199{bottom:814.544000pt;}
.y1aa{bottom:816.792000pt;}
.y58{bottom:816.918667pt;}
.y17e{bottom:817.696000pt;}
.yad{bottom:819.448000pt;}
.y219{bottom:828.490667pt;}
.y23{bottom:830.876000pt;}
.y8c{bottom:830.882667pt;}
.y11b{bottom:831.281333pt;}
.y1a9{bottom:832.733333pt;}
.y17d{bottom:833.636000pt;}
.y57{bottom:833.656000pt;}
.yac{bottom:835.388000pt;}
.yf7{bottom:837.480000pt;}
.y218{bottom:843.833333pt;}
.y130{bottom:846.138667pt;}
.y8b{bottom:847.620000pt;}
.y11a{bottom:848.018667pt;}
.y131{bottom:848.489333pt;}
.y1a8{bottom:848.673333pt;}
.y17c{bottom:849.576000pt;}
.y56{bottom:850.393333pt;}
.yab{bottom:851.329333pt;}
.y1c0{bottom:851.604000pt;}
.y217{bottom:859.176000pt;}
.y7{bottom:862.413333pt;}
.y12f{bottom:864.357333pt;}
.y1a7{bottom:864.613333pt;}
.y119{bottom:864.754667pt;}
.y17b{bottom:865.516000pt;}
.y55{bottom:867.130667pt;}
.yaa{bottom:867.269333pt;}
.y8a{bottom:868.341333pt;}
.y216{bottom:874.518667pt;}
.y12e{bottom:881.094667pt;}
.y17a{bottom:881.457333pt;}
.y117{bottom:881.492000pt;}
.yd4{bottom:882.890667pt;}
.ya9{bottom:883.768000pt;}
.y54{bottom:883.868000pt;}
.y118{bottom:886.314667pt;}
.y1a6{bottom:887.221333pt;}
.y215{bottom:889.861333pt;}
.y12d{bottom:897.832000pt;}
.y89{bottom:898.229333pt;}
.ya8{bottom:899.708000pt;}
.y6{bottom:900.404000pt;}
.y53{bottom:900.605333pt;}
.y1a5{bottom:903.161333pt;}
.y179{bottom:904.065333pt;}
.y214{bottom:905.204000pt;}
.y12c{bottom:914.569333pt;}
.y88{bottom:914.966667pt;}
.ya7{bottom:915.648000pt;}
.y52{bottom:917.342667pt;}
.y178{bottom:920.005333pt;}
.y213{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.ya6{bottom:931.589333pt;}
.y87{bottom:931.704000pt;}
.y1a4{bottom:932.197333pt;}
.y51{bottom:934.080000pt;}
.y12b{bottom:935.290667pt;}
.y212{bottom:935.889333pt;}
.y86{bottom:948.441333pt;}
.y177{bottom:949.041333pt;}
.y4{bottom:950.616000pt;}
.y50{bottom:950.817333pt;}
.y211{bottom:951.230667pt;}
.ya5{bottom:954.197333pt;}
.y85{bottom:965.178667pt;}
.y176{bottom:966.137333pt;}
.y210{bottom:966.573333pt;}
.y4f{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y84{bottom:981.916000pt;}
.y198{bottom:982.109333pt;}
.ya4{bottom:983.233333pt;}
.y4e{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4d{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.hb{height:28.947524pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.h1e{height:31.558400pt;}
.ha{height:33.771789pt;}
.h21{height:35.052646pt;}
.h14{height:36.666735pt;}
.h1a{height:37.372000pt;}
.hc{height:38.596538pt;}
.h4{height:38.947124pt;}
.h16{height:41.285014pt;}
.h19{height:41.524400pt;}
.hd{height:42.799616pt;}
.he{height:43.421286pt;}
.h2{height:45.271688pt;}
.h11{height:45.414844pt;}
.h12{height:46.074501pt;}
.hf{height:47.554811pt;}
.h10{height:48.245551pt;}
.h1d{height:50.736068pt;}
.h22{height:51.131789pt;}
.h1f{height:55.295908pt;}
.h6{height:55.427104pt;}
.h13{height:55.952068pt;}
.h15{height:68.328832pt;}
.h1b{height:74.920458pt;}
.h17{height:84.213551pt;}
.h18{height:84.698884pt;}
.h5{height:85.599232pt;}
.h3{height:88.836659pt;}
.h20{height:100.704218pt;}
.h1c{height:152.813355pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:176.730927pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:51.157007pt;}
.xbe{left:55.970667pt;}
.x6a{left:76.346667pt;}
.x7f{left:79.881333pt;}
.x80{left:85.858667pt;}
.xc9{left:86.994667pt;}
.xa5{left:88.344000pt;}
.xc2{left:97.076000pt;}
.xc1{left:100.576000pt;}
.xc8{left:104.245333pt;}
.xbf{left:117.426667pt;}
.x6b{left:127.202667pt;}
.xc0{left:129.221333pt;}
.xc7{left:133.177333pt;}
.xc3{left:134.082667pt;}
.xcc{left:207.966667pt;}
.x69{left:216.590667pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.xcd{left:224.880000pt;}
.x66{left:230.852273pt;}
.xbd{left:236.222667pt;}
.x65{left:239.047447pt;}
.x5{left:240.756000pt;}
.x51{left:242.316000pt;}
.x7d{left:246.074667pt;}
.x9e{left:247.340000pt;}
.x67{left:248.587260pt;}
.x88{left:249.844000pt;}
.x9{left:251.365333pt;}
.xad{left:253.256000pt;}
.x64{left:254.219213pt;}
.x52{left:255.600000pt;}
.x7b{left:257.120000pt;}
.x18{left:258.961333pt;}
.x58{left:262.168000pt;}
.x76{left:264.594667pt;}
.x8a{left:267.240000pt;}
.x21{left:269.538667pt;}
.x68{left:271.351913pt;}
.x19{left:272.245333pt;}
.x7{left:275.072000pt;}
.x7c{left:276.500000pt;}
.xa8{left:279.186667pt;}
.x85{left:281.120000pt;}
.x22{left:282.822667pt;}
.x89{left:284.090667pt;}
.x86{left:285.856000pt;}
.x8{left:287.929333pt;}
.x23{left:289.597333pt;}
.xc6{left:291.030667pt;}
.x84{left:295.872000pt;}
.x82{left:296.781333pt;}
.x8b{left:297.853333pt;}
.x75{left:299.748000pt;}
.x24{left:302.881333pt;}
.x31{left:304.517333pt;}
.x81{left:307.813333pt;}
.x73{left:308.993333pt;}
.x74{left:310.374667pt;}
.x59{left:311.428000pt;}
.x77{left:312.540000pt;}
.xba{left:314.832000pt;}
.xa{left:316.254667pt;}
.x32{left:317.800000pt;}
.x83{left:320.977333pt;}
.xb{left:322.896000pt;}
.x5a{left:324.710667pt;}
.xc{left:326.150667pt;}
.x5b{left:327.969333pt;}
.x40{left:329.472000pt;}
.x72{left:331.057333pt;}
.xd{left:332.792000pt;}
.xd5{left:336.401333pt;}
.x5c{left:341.252000pt;}
.x5d{left:344.510667pt;}
.x16{left:347.685333pt;}
.xd3{left:350.734667pt;}
.x5f{left:352.880000pt;}
.x17{left:354.326667pt;}
.x5e{left:357.793333pt;}
.x3c{left:365.545333pt;}
.x60{left:369.550667pt;}
.x2f{left:374.100000pt;}
.x3d{left:378.829333pt;}
.xa9{left:380.248000pt;}
.x61{left:382.834667pt;}
.x96{left:384.486667pt;}
.x62{left:386.221333pt;}
.x30{left:387.384000pt;}
.xd4{left:388.752000pt;}
.x7e{left:389.682667pt;}
.x4d{left:394.270667pt;}
.x97{left:395.761333pt;}
.x63{left:399.505333pt;}
.x33{left:403.098667pt;}
.x8d{left:404.990667pt;}
.x4e{left:407.554667pt;}
.xae{left:409.618667pt;}
.x25{left:414.480000pt;}
.x34{left:416.382667pt;}
.xa4{left:425.032000pt;}
.xb2{left:426.545333pt;}
.x26{left:427.762667pt;}
.x27{left:431.070667pt;}
.x95{left:433.297333pt;}
.xcb{left:437.493333pt;}
.xb3{left:439.040000pt;}
.x47{left:440.468000pt;}
.xc4{left:442.824000pt;}
.x28{left:444.354667pt;}
.x9a{left:445.582667pt;}
.x12{left:449.393333pt;}
.xca{left:451.877333pt;}
.x48{left:453.752000pt;}
.x13{left:456.034667pt;}
.x99{left:461.562667pt;}
.x14{left:462.616000pt;}
.xb6{left:463.580000pt;}
.x7a{left:467.916000pt;}
.x15{left:469.258667pt;}
.x6c{left:470.920000pt;}
.x6d{left:476.897333pt;}
.xc5{left:479.497333pt;}
.x1e{left:482.530667pt;}
.xb0{left:484.514667pt;}
.x1f{left:485.918667pt;}
.x9d{left:487.098667pt;}
.xb7{left:489.905333pt;}
.x2b{left:493.936000pt;}
.xb1{left:494.924000pt;}
.x90{left:497.961333pt;}
.x20{left:499.201333pt;}
.x91{left:501.913333pt;}
.xb8{left:503.765333pt;}
.x2c{left:507.218667pt;}
.x8e{left:508.788000pt;}
.xac{left:510.801333pt;}
.x3b{left:513.160000pt;}
.xa6{left:514.649333pt;}
.x8c{left:522.669333pt;}
.x8f{left:526.793333pt;}
.xaa{left:529.142667pt;}
.xa0{left:531.185333pt;}
.xab{left:534.121333pt;}
.x92{left:535.320000pt;}
.xaf{left:536.493333pt;}
.x35{left:538.312000pt;}
.xbb{left:539.937333pt;}
.x39{left:549.093333pt;}
.x36{left:551.596000pt;}
.xd2{left:552.778667pt;}
.xa3{left:559.545333pt;}
.x3a{left:562.377333pt;}
.x6e{left:563.697333pt;}
.x6f{left:571.001333pt;}
.x78{left:575.732000pt;}
.x37{left:578.124000pt;}
.x79{left:584.150667pt;}
.x57{left:585.909333pt;}
.x38{left:591.408000pt;}
.xe{left:592.605333pt;}
.x3e{left:594.597333pt;}
.xd6{left:595.600000pt;}
.xce{left:598.120000pt;}
.xf{left:599.246667pt;}
.x10{left:602.584000pt;}
.xcf{left:604.097333pt;}
.x3f{left:607.880000pt;}
.x11{left:609.226667pt;}
.x9b{left:611.928000pt;}
.xd7{left:619.510667pt;}
.x9c{left:624.821333pt;}
.x1a{left:630.409333pt;}
.x53{left:632.493333pt;}
.x93{left:633.382667pt;}
.x70{left:635.156000pt;}
.x41{left:637.317333pt;}
.x71{left:640.464000pt;}
.x1b{left:643.693333pt;}
.x54{left:645.777333pt;}
.x1c{left:647.080000pt;}
.x87{left:648.198667pt;}
.x42{left:650.600000pt;}
.x55{left:652.286667pt;}
.x94{left:659.306667pt;}
.x1d{left:660.364000pt;}
.x43{left:663.945333pt;}
.x56{left:665.569333pt;}
.xd0{left:668.765333pt;}
.xd8{left:671.510667pt;}
.x49{left:673.569333pt;}
.xbc{left:674.781333pt;}
.xd1{left:676.070667pt;}
.x44{left:677.228000pt;}
.xb9{left:679.024000pt;}
.x4a{left:686.853333pt;}
.x4b{left:693.628000pt;}
.xa1{left:695.348000pt;}
.x29{left:696.428000pt;}
.xa7{left:701.950667pt;}
.xa2{left:702.996000pt;}
.x4c{left:706.910667pt;}
.x4f{left:708.145333pt;}
.x2a{left:709.710667pt;}
.x98{left:720.068000pt;}
.x50{left:721.429333pt;}
.x9f{left:723.454667pt;}
.x2d{left:726.989333pt;}
.x45{left:728.029333pt;}
.xb4{left:736.422667pt;}
.x2e{left:740.273333pt;}
.x46{left:741.313333pt;}
.xb5{left:743.973333pt;}
}


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