
/* 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_dc971e365849.woff")format("woff");}.ff1{font-family:ff1;line-height:1.010000;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_dfe6386b0d84.woff")format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_a58f7836026f.woff")format("woff");}.ff3{font-family:ff3;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:ff4;src:url("fonts/font_0003_1ae56354975e.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_79dcdc6f476d.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_9377ae7ccb9f.woff")format("woff");}.ff6{font-family:ff6;line-height:1.151000;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;}
.me{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);}
.m3{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);}
.m1{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);}
.m23{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);}
.md{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);}
.m17{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);}
.m16{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);}
.m20{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);}
.m14{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);}
.m1a{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);}
.mb{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);}
.mf{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);}
.m1d{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);}
.m13{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);}
.m1e{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);}
.m29{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);}
.m15{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);}
.m1c{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);}
.m1b{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);}
.m18{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);}
.m4{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);}
.mc{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);}
.m8{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);}
.m5{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);}
.m19{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);}
.m22{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);}
.m26{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);}
.m6{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);}
.m12{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);}
.m24{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);}
.m21{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);}
.m27{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);}
.m28{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);}
.ma{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);}
.m9{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);}
.m10{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);}
.m25{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);}
.m2{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);}
.m11{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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000600px;}
.ls9{letter-spacing:0.001133px;}
.lsa{letter-spacing:0.003178px;}
.ls10{letter-spacing:0.004800px;}
.ls6{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls1{letter-spacing:10.455300px;}
.ls4{letter-spacing:11.954850px;}
.ls12{letter-spacing:12.821829px;}
.ls11{letter-spacing:12.962645px;}
.lse{letter-spacing:13.448400px;}
.lsd{letter-spacing:13.454400px;}
.lsf{letter-spacing:13.497459px;}
.lsc{letter-spacing:13.562521px;}
.ls3{letter-spacing:25.105654px;}
.ls7{letter-spacing:2793.191700px;}
.lsb{letter-spacing:2794.391700px;}
.ls8{letter-spacing:2795.585700px;}
.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;}
}
.ws39{word-spacing:-14.943900px;}
.ws5c{word-spacing:-13.449600px;}
.ws2c{word-spacing:-11.955150px;}
.ws5{word-spacing:-10.460700px;}
.ws38{word-spacing:-3.227882px;}
.ws86{word-spacing:-3.048556px;}
.ws8a{word-spacing:-2.988780px;}
.ws6d{word-spacing:-2.809453px;}
.ws92{word-spacing:-2.689902px;}
.wsc0{word-spacing:-2.528525px;}
.ws37{word-spacing:-2.271473px;}
.wsc3{word-spacing:-2.259533px;}
.ws4e{word-spacing:-2.211697px;}
.wscf{word-spacing:-2.098138px;}
.ws3a{word-spacing:-2.032370px;}
.ws8c{word-spacing:-1.972595px;}
.ws3c{word-spacing:-1.912819px;}
.ws2{word-spacing:-1.908367px;}
.ws3b{word-spacing:-1.853044px;}
.ws50{word-spacing:-1.793268px;}
.ws55{word-spacing:-1.733492px;}
.ws29{word-spacing:-1.673717px;}
.wsa0{word-spacing:-1.613941px;}
.ws3f{word-spacing:-1.554166px;}
.ws9f{word-spacing:-1.494390px;}
.ws88{word-spacing:-1.434614px;}
.ws9e{word-spacing:-1.374839px;}
.ws1{word-spacing:-1.322630px;}
.ws87{word-spacing:-1.195512px;}
.ws43{word-spacing:-1.135736px;}
.wsb1{word-spacing:-1.075961px;}
.ws9d{word-spacing:-1.016185px;}
.ws99{word-spacing:-0.896634px;}
.wsed{word-spacing:-0.860774px;}
.wsaa{word-spacing:-0.777083px;}
.ws31{word-spacing:-0.717307px;}
.wsea{word-spacing:-0.699379px;}
.ws9c{word-spacing:-0.657532px;}
.ws84{word-spacing:-0.597756px;}
.ws8d{word-spacing:-0.478205px;}
.ws74{word-spacing:-0.418429px;}
.ws32{word-spacing:-0.358654px;}
.ws16{word-spacing:-0.322790px;}
.ws24{word-spacing:-0.298878px;}
.ws67{word-spacing:-0.268992px;}
.ws22{word-spacing:-0.239102px;}
.ws14{word-spacing:-0.215194px;}
.ws1e{word-spacing:-0.179327px;}
.ws59{word-spacing:-0.161395px;}
.ws20{word-spacing:-0.119551px;}
.ws19{word-spacing:-0.107597px;}
.ws21{word-spacing:-0.059776px;}
.wsc1{word-spacing:-0.053798px;}
.wsbe{word-spacing:-0.008131px;}
.wsca{word-spacing:-0.006221px;}
.wsc2{word-spacing:-0.005779px;}
.wscd{word-spacing:-0.005290px;}
.wse1{word-spacing:-0.003082px;}
.ws4{word-spacing:-0.002297px;}
.wsd1{word-spacing:-0.001459px;}
.ws2b{word-spacing:-0.000904px;}
.wsdd{word-spacing:-0.000221px;}
.ws0{word-spacing:0.000000px;}
.wsce{word-spacing:0.001670px;}
.wsc5{word-spacing:0.053798px;}
.ws26{word-spacing:0.059776px;}
.ws5f{word-spacing:0.107597px;}
.ws44{word-spacing:0.119551px;}
.ws12{word-spacing:0.161395px;}
.ws27{word-spacing:0.179327px;}
.ws7{word-spacing:0.209214px;}
.ws18{word-spacing:0.215194px;}
.ws1f{word-spacing:0.239102px;}
.wsc4{word-spacing:0.268992px;}
.ws9{word-spacing:0.292900px;}
.ws2a{word-spacing:0.298878px;}
.wsdc{word-spacing:0.322790px;}
.ws28{word-spacing:0.358654px;}
.ws56{word-spacing:0.418429px;}
.wsa5{word-spacing:0.430387px;}
.ws69{word-spacing:0.478205px;}
.wsb6{word-spacing:0.537980px;}
.ws60{word-spacing:0.591782px;}
.ws76{word-spacing:0.597756px;}
.ws7d{word-spacing:0.657532px;}
.ws46{word-spacing:0.717307px;}
.ws47{word-spacing:0.777083px;}
.ws91{word-spacing:0.836858px;}
.ws75{word-spacing:0.956410px;}
.wsa1{word-spacing:1.075961px;}
.wsbf{word-spacing:1.129766px;}
.ws81{word-spacing:1.135736px;}
.ws54{word-spacing:1.255288px;}
.ws1c{word-spacing:1.315063px;}
.wsc9{word-spacing:1.344960px;}
.ws8e{word-spacing:1.374839px;}
.ws45{word-spacing:1.434614px;}
.wsac{word-spacing:1.494390px;}
.ws94{word-spacing:1.554166px;}
.ws66{word-spacing:1.560154px;}
.wsa3{word-spacing:1.613941px;}
.wse4{word-spacing:1.667750px;}
.wsa6{word-spacing:1.673717px;}
.ws4a{word-spacing:1.733492px;}
.wsc8{word-spacing:1.775347px;}
.wsb8{word-spacing:1.793268px;}
.ws1d{word-spacing:1.853044px;}
.ws96{word-spacing:1.912819px;}
.wsd5{word-spacing:1.990541px;}
.ws8{word-spacing:2.008454px;}
.ws9a{word-spacing:2.032370px;}
.wsd8{word-spacing:2.044339px;}
.ws6c{word-spacing:2.092146px;}
.wsc7{word-spacing:2.098138px;}
.wsb0{word-spacing:2.151922px;}
.ws78{word-spacing:2.211697px;}
.ws77{word-spacing:2.271473px;}
.ws13{word-spacing:2.313331px;}
.ws15{word-spacing:2.367130px;}
.wsa9{word-spacing:2.391024px;}
.wsb7{word-spacing:2.450800px;}
.ws98{word-spacing:2.510575px;}
.ws3e{word-spacing:2.570351px;}
.wse9{word-spacing:2.582323px;}
.wsbb{word-spacing:2.636122px;}
.ws8b{word-spacing:2.689902px;}
.ws17{word-spacing:2.689920px;}
.ws82{word-spacing:2.749678px;}
.ws57{word-spacing:2.809453px;}
.ws80{word-spacing:2.869229px;}
.ws11{word-spacing:2.869236px;}
.ws6e{word-spacing:2.929004px;}
.wsdb{word-spacing:2.958912px;}
.ws6b{word-spacing:2.988780px;}
.wsa7{word-spacing:3.048556px;}
.wsae{word-spacing:3.108331px;}
.wsb3{word-spacing:3.168107px;}
.wsee{word-spacing:3.174106px;}
.wseb{word-spacing:3.214704px;}
.wse2{word-spacing:3.222902px;}
.wsd6{word-spacing:3.224275px;}
.wsba{word-spacing:3.224822px;}
.wse5{word-spacing:3.225082px;}
.wse7{word-spacing:3.227030px;}
.wsa4{word-spacing:3.227882px;}
.wsbd{word-spacing:3.227904px;}
.wsec{word-spacing:3.281702px;}
.ws33{word-spacing:3.347434px;}
.ws25{word-spacing:3.407209px;}
.wse6{word-spacing:3.443098px;}
.ws35{word-spacing:3.466985px;}
.ws49{word-spacing:3.526760px;}
.ws52{word-spacing:3.586536px;}
.ws53{word-spacing:3.646312px;}
.ws68{word-spacing:3.825638px;}
.ws4f{word-spacing:3.885414px;}
.ws4d{word-spacing:3.945190px;}
.ws41{word-spacing:4.004965px;}
.ws2e{word-spacing:4.064741px;}
.ws85{word-spacing:4.124516px;}
.wsdf{word-spacing:4.142477px;}
.wsad{word-spacing:4.303843px;}
.ws6a{word-spacing:4.363619px;}
.ws79{word-spacing:4.423394px;}
.wsb2{word-spacing:4.483170px;}
.ws30{word-spacing:4.602721px;}
.wsd3{word-spacing:4.626662px;}
.wsaf{word-spacing:4.841824px;}
.wse8{word-spacing:4.895654px;}
.ws2f{word-spacing:4.901599px;}
.wsd4{word-spacing:4.949453px;}
.ws34{word-spacing:4.961375px;}
.wsde{word-spacing:5.003251px;}
.ws58{word-spacing:5.021150px;}
.ws42{word-spacing:5.080926px;}
.ws9b{word-spacing:5.140702px;}
.wsa2{word-spacing:5.200477px;}
.ws89{word-spacing:5.260253px;}
.ws7e{word-spacing:5.320028px;}
.ws2d{word-spacing:5.379804px;}
.wsd7{word-spacing:5.433638px;}
.ws3d{word-spacing:5.499355px;}
.ws48{word-spacing:5.559131px;}
.ws7b{word-spacing:5.618906px;}
.ws83{word-spacing:5.678682px;}
.ws93{word-spacing:5.798233px;}
.wsb4{word-spacing:5.917784px;}
.wscc{word-spacing:5.917824px;}
.wsf{word-spacing:6.067206px;}
.ws4c{word-spacing:6.097111px;}
.ws10{word-spacing:6.150892px;}
.ws95{word-spacing:6.276438px;}
.ws73{word-spacing:6.294413px;}
.wsab{word-spacing:6.395989px;}
.ws72{word-spacing:6.402010px;}
.ws36{word-spacing:6.455765px;}
.ws7a{word-spacing:6.515540px;}
.ws97{word-spacing:6.635092px;}
.ws8f{word-spacing:6.814418px;}
.ws7f{word-spacing:6.874194px;}
.wsb9{word-spacing:6.993745px;}
.ws23{word-spacing:7.053521px;}
.ws90{word-spacing:7.113296px;}
.ws40{word-spacing:7.173072px;}
.ws4b{word-spacing:7.591501px;}
.wsb5{word-spacing:7.770828px;}
.ws1b{word-spacing:7.830604px;}
.ws7c{word-spacing:7.890379px;}
.ws51{word-spacing:8.189257px;}
.wsa8{word-spacing:8.249033px;}
.ws71{word-spacing:8.338752px;}
.wsd{word-spacing:8.661460px;}
.wse3{word-spacing:9.138835px;}
.wscb{word-spacing:9.141504px;}
.wsd2{word-spacing:9.142003px;}
.wsbc{word-spacing:9.143347px;}
.wsd0{word-spacing:9.143846px;}
.wsd9{word-spacing:9.144211px;}
.wse0{word-spacing:9.145219px;}
.wsda{word-spacing:9.145296px;}
.wsc6{word-spacing:9.145930px;}
.ws6{word-spacing:10.460700px;}
.ws1a{word-spacing:11.297664px;}
.ws5b{word-spacing:11.728051px;}
.ws3{word-spacing:15.483541px;}
.wsa{word-spacing:16.142252px;}
.wsb{word-spacing:16.151321px;}
.ws61{word-spacing:17.161690px;}
.wsc{word-spacing:17.699504px;}
.ws5d{word-spacing:17.699674px;}
.ws5e{word-spacing:18.721843px;}
.ws63{word-spacing:23.886490px;}
.ws62{word-spacing:24.585869px;}
.ws5a{word-spacing:25.123853px;}
.wse{word-spacing:27.448877px;}
.ws6f{word-spacing:31.741056px;}
.ws70{word-spacing:34.861363px;}
.ws65{word-spacing:55.143360px;}
.ws64{word-spacing:57.564288px;}
._28{margin-left:-23.832691px;}
._29{margin-left:-19.648393px;}
._1{margin-left:-11.943245px;}
._0{margin-left:-7.962163px;}
._c{margin-left:-6.308121px;}
._7{margin-left:-4.602708px;}
._19{margin-left:-3.270912px;}
._5{margin-left:-2.245824px;}
._4{margin-left:-1.075961px;}
._6{width:1.091170px;}
._a{width:2.301354px;}
._24{width:4.363619px;}
._27{width:6.423980px;}
._1b{width:8.213848px;}
._1c{width:9.265218px;}
._1a{width:10.530042px;}
._b{width:12.479433px;}
._8{width:13.724438px;}
._e{width:15.117350px;}
._26{width:16.171613px;}
._f{width:17.201780px;}
._12{width:18.530436px;}
._16{width:19.580748px;}
._17{width:21.192246px;}
._15{width:23.073382px;}
._d{width:24.155482px;}
._9{width:25.903093px;}
._1d{width:27.950390px;}
._10{width:29.589120px;}
._11{width:31.472064px;}
._2{width:33.355008px;}
._23{width:34.729624px;}
._1e{width:35.865360px;}
._18{width:38.435711px;}
._13{width:39.810550px;}
._22{width:41.723369px;}
._1f{width:43.636188px;}
._2a{width:49.931249px;}
._20{width:53.260416px;}
._2c{width:58.270540px;}
._2b{width:61.868160px;}
._21{width:66.064435px;}
._3{width:69.371484px;}
._25{width:88.767360px;}
._14{width:918.787692px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(12,11,11);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.887800px;}
.fs4{font-size:41.842800px;}
.fs3{font-size:41.936104px;}
.fs2{font-size:47.236800px;}
.fs5{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.fs1{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.425340px;}
.y6{bottom:14.151273px;}
.y46{bottom:31.890000px;}
.y19c{bottom:89.005500px;}
.y7c{bottom:93.975000px;}
.y10d{bottom:98.242500px;}
.ydd{bottom:102.552000px;}
.y1d{bottom:102.823500px;}
.y1d7{bottom:104.421000px;}
.y128{bottom:104.466000px;}
.yaf{bottom:105.363000px;}
.y16f{bottom:105.810000px;}
.y153{bottom:106.258500px;}
.y19b{bottom:107.835000px;}
.y7b{bottom:112.804500px;}
.y10c{bottom:117.072000px;}
.y45{bottom:119.908500px;}
.y1c{bottom:120.711000px;}
.ydc{bottom:121.381500px;}
.y1d6{bottom:121.681500px;}
.y127{bottom:123.295500px;}
.yae{bottom:124.192500px;}
.y16e{bottom:124.639500px;}
.y152{bottom:125.088000px;}
.y19a{bottom:126.664500px;}
.y7a{bottom:131.634000px;}
.y10b{bottom:135.901500px;}
.y20d{bottom:138.090000px;}
.y1b{bottom:138.600000px;}
.y44{bottom:138.738000px;}
.y1d5{bottom:138.942000px;}
.ydb{bottom:140.211000px;}
.y126{bottom:142.125000px;}
.yad{bottom:143.022000px;}
.y16d{bottom:143.469000px;}
.y151{bottom:143.917500px;}
.y199{bottom:145.494000px;}
.y79{bottom:150.463500px;}
.y10a{bottom:154.731000px;}
.y20c{bottom:155.350500px;}
.y1d4{bottom:156.202500px;}
.y1a{bottom:156.487500px;}
.y43{bottom:157.567500px;}
.yda{bottom:159.040500px;}
.yed{bottom:159.069000px;}
.y125{bottom:160.954500px;}
.yac{bottom:161.850000px;}
.y16c{bottom:162.298500px;}
.y150{bottom:162.747000px;}
.y198{bottom:164.323500px;}
.y78{bottom:169.293000px;}
.y20b{bottom:172.609500px;}
.y1d3{bottom:173.463000px;}
.y109{bottom:173.560500px;}
.y19{bottom:174.375000px;}
.y42{bottom:176.397000px;}
.yd9{bottom:177.870000px;}
.yec{bottom:177.898500px;}
.yab{bottom:180.679500px;}
.y16b{bottom:181.128000px;}
.y14f{bottom:181.576500px;}
.y197{bottom:183.153000px;}
.y124{bottom:184.267500px;}
.y77{bottom:188.122500px;}
.y20a{bottom:189.870000px;}
.y1d2{bottom:190.722000px;}
.y18{bottom:192.264000px;}
.y108{bottom:192.390000px;}
.y41{bottom:195.226500px;}
.yd8{bottom:196.699500px;}
.yeb{bottom:196.728000px;}
.yaa{bottom:199.509000px;}
.y16a{bottom:199.957500px;}
.y14e{bottom:200.406000px;}
.y196{bottom:201.982500px;}
.y76{bottom:206.952000px;}
.y209{bottom:207.130500px;}
.y1d1{bottom:207.982500px;}
.y17{bottom:210.151500px;}
.y107{bottom:211.219500px;}
.y40{bottom:214.054500px;}
.yd7{bottom:215.529000px;}
.yea{bottom:215.557500px;}
.y123{bottom:217.891500px;}
.ya9{bottom:218.338500px;}
.y169{bottom:218.787000px;}
.y14d{bottom:219.235500px;}
.y195{bottom:220.812000px;}
.y208{bottom:224.391000px;}
.y1d0{bottom:225.243000px;}
.y75{bottom:225.781500px;}
.y16{bottom:228.039000px;}
.y106{bottom:230.049000px;}
.y3f{bottom:232.884000px;}
.yd6{bottom:234.358500px;}
.ye9{bottom:234.387000px;}
.y122{bottom:236.719500px;}
.ya8{bottom:237.168000px;}
.y168{bottom:237.616500px;}
.y14c{bottom:238.065000px;}
.ybe{bottom:239.326500px;}
.y194{bottom:239.641500px;}
.y207{bottom:241.651500px;}
.y1cf{bottom:242.503500px;}
.y74{bottom:244.611000px;}
.y105{bottom:248.878500px;}
.y3e{bottom:251.713500px;}
.yd5{bottom:253.188000px;}
.ye8{bottom:253.216500px;}
.y121{bottom:255.549000px;}
.ya7{bottom:255.997500px;}
.y167{bottom:256.446000px;}
.y14b{bottom:256.894500px;}
.y206{bottom:258.912000px;}
.y1ce{bottom:259.764000px;}
.y193{bottom:262.954500px;}
.ybd{bottom:267.525000px;}
.y104{bottom:267.708000px;}
.y3d{bottom:270.543000px;}
.y73{bottom:270.912000px;}
.yd4{bottom:272.017500px;}
.ye7{bottom:272.046000px;}
.y120{bottom:274.378500px;}
.ya6{bottom:274.827000px;}
.y166{bottom:275.275500px;}
.y14a{bottom:275.724000px;}
.y205{bottom:276.172500px;}
.y1cd{bottom:277.024500px;}
.y103{bottom:286.537500px;}
.ybc{bottom:286.758000px;}
.y3c{bottom:289.372500px;}
.y72{bottom:289.741500px;}
.yd3{bottom:290.847000px;}
.ye6{bottom:290.875500px;}
.y204{bottom:293.433000px;}
.ya5{bottom:293.656500px;}
.y165{bottom:294.105000px;}
.y1cc{bottom:294.285000px;}
.y149{bottom:294.553500px;}
.y192{bottom:296.577000px;}
.y11f{bottom:297.691500px;}
.y102{bottom:305.367000px;}
.y15{bottom:307.299000px;}
.y3b{bottom:308.202000px;}
.y71{bottom:308.571000px;}
.yd2{bottom:309.676500px;}
.ye5{bottom:309.705000px;}
.y203{bottom:310.693500px;}
.y1cb{bottom:311.545500px;}
.ya4{bottom:312.486000px;}
.y164{bottom:312.934500px;}
.y148{bottom:313.383000px;}
.y191{bottom:315.406500px;}
.y101{bottom:324.196500px;}
.y14{bottom:325.186500px;}
.y3a{bottom:327.031500px;}
.y70{bottom:327.400500px;}
.y202{bottom:327.952500px;}
.yd1{bottom:328.506000px;}
.ye4{bottom:328.534500px;}
.y1ca{bottom:328.804500px;}
.ya3{bottom:331.315500px;}
.y163{bottom:331.764000px;}
.y17d{bottom:332.212500px;}
.y190{bottom:334.236000px;}
.y147{bottom:336.696000px;}
.y100{bottom:343.026000px;}
.y13{bottom:343.074000px;}
.y201{bottom:345.213000px;}
.y39{bottom:345.861000px;}
.y1c9{bottom:346.065000px;}
.y6f{bottom:346.230000px;}
.yd0{bottom:347.335500px;}
.ye3{bottom:347.364000px;}
.ya2{bottom:350.145000px;}
.y162{bottom:350.593500px;}
.y17c{bottom:351.042000px;}
.y18f{bottom:353.065500px;}
.y12{bottom:360.963000px;}
.yff{bottom:361.855500px;}
.y200{bottom:362.473500px;}
.y1c8{bottom:363.325500px;}
.y38{bottom:364.690500px;}
.y6e{bottom:365.059500px;}
.ycf{bottom:366.165000px;}
.ya1{bottom:368.974500px;}
.y161{bottom:369.423000px;}
.y17b{bottom:369.871500px;}
.y146{bottom:370.320000px;}
.y18e{bottom:371.895000px;}
.y1ff{bottom:379.734000px;}
.y1c7{bottom:380.586000px;}
.yfe{bottom:380.685000px;}
.ye2{bottom:380.929500px;}
.y37{bottom:383.520000px;}
.y6d{bottom:383.889000px;}
.yce{bottom:384.994500px;}
.ya0{bottom:387.804000px;}
.y160{bottom:388.252500px;}
.y17a{bottom:388.701000px;}
.y145{bottom:389.149500px;}
.y18d{bottom:390.724500px;}
.y1fe{bottom:396.994500px;}
.y1c6{bottom:397.846500px;}
.y11{bottom:399.024000px;}
.yfd{bottom:399.514500px;}
.y36{bottom:402.349500px;}
.y6c{bottom:402.718500px;}
.ycd{bottom:403.824000px;}
.y11e{bottom:406.633500px;}
.y15f{bottom:407.082000px;}
.y179{bottom:407.530500px;}
.y144{bottom:407.979000px;}
.ye1{bottom:409.129500px;}
.y18c{bottom:409.554000px;}
.y9f{bottom:411.117000px;}
.y1fd{bottom:414.255000px;}
.y1c5{bottom:415.107000px;}
.y10{bottom:416.913000px;}
.yfc{bottom:418.344000px;}
.y35{bottom:421.179000px;}
.y6b{bottom:421.548000px;}
.ycc{bottom:422.653500px;}
.y11d{bottom:425.463000px;}
.y15e{bottom:425.911500px;}
.y178{bottom:426.360000px;}
.y143{bottom:426.807000px;}
.y18b{bottom:428.383500px;}
.y1a1{bottom:430.842000px;}
.y1fc{bottom:431.515500px;}
.y1c4{bottom:432.367500px;}
.yf{bottom:434.800500px;}
.yfb{bottom:437.173500px;}
.y34{bottom:440.008500px;}
.y6a{bottom:440.377500px;}
.ycb{bottom:441.483000px;}
.y11c{bottom:444.292500px;}
.y9e{bottom:444.741000px;}
.y177{bottom:445.189500px;}
.y142{bottom:445.636500px;}
.y18a{bottom:447.213000px;}
.y1fb{bottom:448.776000px;}
.y1c3{bottom:449.628000px;}
.yfa{bottom:456.003000px;}
.y33{bottom:458.838000px;}
.yca{bottom:460.312500px;}
.y11b{bottom:463.122000px;}
.y9d{bottom:463.570500px;}
.y176{bottom:464.019000px;}
.y1fa{bottom:464.080500px;}
.y141{bottom:464.466000px;}
.y1f9{bottom:466.035000px;}
.y189{bottom:466.042500px;}
.y69{bottom:466.678500px;}
.y1c2{bottom:466.888500px;}
.ye{bottom:470.622000px;}
.ybb{bottom:474.606000px;}
.yf9{bottom:474.832500px;}
.y32{bottom:477.667500px;}
.yc9{bottom:479.142000px;}
.y11a{bottom:481.951500px;}
.y9c{bottom:482.400000px;}
.y175{bottom:482.848500px;}
.y140{bottom:483.295500px;}
.y1c1{bottom:484.147500px;}
.y188{bottom:484.872000px;}
.y68{bottom:485.508000px;}
.yf8{bottom:493.662000px;}
.yba{bottom:493.837500px;}
.y31{bottom:496.497000px;}
.yc8{bottom:497.971500px;}
.y1f8{bottom:500.556000px;}
.y119{bottom:500.781000px;}
.y9b{bottom:501.229500px;}
.y1c0{bottom:501.408000px;}
.y174{bottom:501.676500px;}
.y13f{bottom:502.125000px;}
.y187{bottom:503.701500px;}
.y67{bottom:504.337500px;}
.yd{bottom:506.442000px;}
.yf7{bottom:512.491500px;}
.yb9{bottom:513.070500px;}
.y30{bottom:515.326500px;}
.y1f7{bottom:517.816500px;}
.y1bf{bottom:518.668500px;}
.y118{bottom:519.610500px;}
.y9a{bottom:520.059000px;}
.y173{bottom:520.506000px;}
.y13e{bottom:520.954500px;}
.yc7{bottom:521.283000px;}
.y186{bottom:522.531000px;}
.y66{bottom:523.167000px;}
.yc{bottom:524.329500px;}
.yf6{bottom:531.321000px;}
.yb8{bottom:532.303500px;}
.y2f{bottom:534.156000px;}
.y1f6{bottom:535.077000px;}
.y1be{bottom:535.929000px;}
.y117{bottom:538.440000px;}
.y99{bottom:538.888500px;}
.y172{bottom:539.335500px;}
.y13d{bottom:539.784000px;}
.y185{bottom:541.360500px;}
.y65{bottom:541.996500px;}
.yb{bottom:542.218500px;}
.yf5{bottom:550.150500px;}
.yb7{bottom:551.536500px;}
.yc6{bottom:551.710500px;}
.y1f5{bottom:552.337500px;}
.y2e{bottom:552.985500px;}
.y1bd{bottom:553.189500px;}
.y116{bottom:557.269500px;}
.y98{bottom:557.718000px;}
.y171{bottom:558.165000px;}
.y13c{bottom:558.613500px;}
.ya{bottom:560.106000px;}
.y184{bottom:560.190000px;}
.y64{bottom:560.826000px;}
.y1f4{bottom:569.598000px;}
.y1bc{bottom:570.450000px;}
.yf4{bottom:573.462000px;}
.y2d{bottom:576.298500px;}
.y97{bottom:576.546000px;}
.y19f{bottom:576.994500px;}
.y13b{bottom:577.443000px;}
.y9{bottom:577.993500px;}
.y183{bottom:579.019500px;}
.y63{bottom:579.655500px;}
.yc5{bottom:579.910500px;}
.y115{bottom:580.581000px;}
.y15d{bottom:581.029500px;}
.y170{bottom:581.478000px;}
.y1f3{bottom:586.858500px;}
.y1bb{bottom:587.710500px;}
.y96{bottom:595.375500px;}
.y19e{bottom:595.824000px;}
.y8{bottom:595.882500px;}
.y13a{bottom:596.272500px;}
.y182{bottom:597.849000px;}
.yc4{bottom:599.143500px;}
.y1a0{bottom:600.307500px;}
.ye0{bottom:601.887000px;}
.y62{bottom:602.967000px;}
.yf3{bottom:603.889500px;}
.y1f2{bottom:604.119000px;}
.y1ba{bottom:604.971000px;}
.y95{bottom:614.205000px;}
.y15c{bottom:614.653500px;}
.y139{bottom:615.102000px;}
.y5{bottom:618.253464px;}
.yc3{bottom:618.376500px;}
.y1f1{bottom:621.378000px;}
.y1b9{bottom:622.230000px;}
.y181{bottom:629.019000px;}
.yf2{bottom:632.089500px;}
.y94{bottom:633.034500px;}
.y15b{bottom:633.483000px;}
.y138{bottom:633.931500px;}
.y61{bottom:636.591000px;}
.yc2{bottom:637.608000px;}
.y1f0{bottom:638.638500px;}
.y1b8{bottom:639.490500px;}
.y2c{bottom:647.944500px;}
.yf1{bottom:651.322500px;}
.y93{bottom:651.864000px;}
.y15a{bottom:652.312500px;}
.y137{bottom:652.761000px;}
.y60{bottom:655.420500px;}
.y1ef{bottom:655.899000px;}
.y1b7{bottom:656.751000px;}
.y180{bottom:657.219000px;}
.y2b{bottom:667.401000px;}
.y92{bottom:670.693500px;}
.y159{bottom:671.142000px;}
.y136{bottom:671.590500px;}
.y1ee{bottom:673.159500px;}
.y1b6{bottom:674.011500px;}
.y5f{bottom:674.250000px;}
.y91{bottom:689.523000px;}
.y158{bottom:689.971500px;}
.y135{bottom:690.420000px;}
.y1b5{bottom:691.272000px;}
.y5e{bottom:693.079500px;}
.y2a{bottom:704.791500px;}
.y1ed{bottom:707.680500px;}
.y90{bottom:708.352500px;}
.y1b4{bottom:708.532500px;}
.y157{bottom:708.801000px;}
.y134{bottom:709.249500px;}
.y5d{bottom:711.909000px;}
.y29{bottom:724.248000px;}
.y1ec{bottom:724.941000px;}
.y1b3{bottom:725.793000px;}
.y8f{bottom:727.182000px;}
.y156{bottom:727.630500px;}
.y133{bottom:728.079000px;}
.y5c{bottom:730.738500px;}
.y114{bottom:731.665500px;}
.y1eb{bottom:742.201500px;}
.y1b2{bottom:743.053500px;}
.y28{bottom:743.706000px;}
.y8e{bottom:746.011500px;}
.y155{bottom:746.460000px;}
.y132{bottom:746.908500px;}
.y5b{bottom:749.568000px;}
.y1ea{bottom:759.460500px;}
.y1b1{bottom:760.314000px;}
.y27{bottom:763.162500px;}
.y8d{bottom:764.841000px;}
.y113{bottom:765.289500px;}
.y131{bottom:765.738000px;}
.y5a{bottom:768.397500px;}
.y1e9{bottom:776.721000px;}
.y1b0{bottom:777.573000px;}
.yb6{bottom:777.913500px;}
.y26{bottom:782.619000px;}
.y8c{bottom:783.670500px;}
.y112{bottom:784.119000px;}
.y130{bottom:784.567500px;}
.y59{bottom:787.227000px;}
.y19d{bottom:788.602500px;}
.y17f{bottom:790.129500px;}
.y1e8{bottom:793.981500px;}
.y1af{bottom:794.833500px;}
.yb5{bottom:797.146500px;}
.y25{bottom:802.077000px;}
.y8b{bottom:802.500000px;}
.y111{bottom:802.948500px;}
.y12f{bottom:803.397000px;}
.y58{bottom:806.056500px;}
.y17e{bottom:809.362500px;}
.y1e7{bottom:811.242000px;}
.y1ae{bottom:812.094000px;}
.y8a{bottom:821.329500px;}
.y24{bottom:821.533500px;}
.y110{bottom:821.778000px;}
.y12e{bottom:822.226500px;}
.y57{bottom:824.886000px;}
.y1e6{bottom:828.502500px;}
.y1ad{bottom:829.354500px;}
.yc1{bottom:840.349500px;}
.y10f{bottom:840.607500px;}
.y23{bottom:840.990000px;}
.y12d{bottom:841.056000px;}
.y56{bottom:843.715500px;}
.y89{bottom:844.642500px;}
.y1e5{bottom:845.763000px;}
.y1ac{bottom:846.615000px;}
.ydf{bottom:849.132000px;}
.y10e{bottom:859.437000px;}
.yc0{bottom:859.582500px;}
.y12c{bottom:859.885500px;}
.y22{bottom:860.448000px;}
.y55{bottom:862.545000px;}
.y1e4{bottom:863.023500px;}
.y1ab{bottom:863.875500px;}
.yf0{bottom:864.846000px;}
.yde{bottom:868.365000px;}
.y88{bottom:878.266500px;}
.y12b{bottom:878.715000px;}
.ybf{bottom:878.814000px;}
.y21{bottom:879.904500px;}
.y1e3{bottom:880.284000px;}
.y54{bottom:881.374500px;}
.yef{bottom:884.079000px;}
.y1aa{bottom:885.619500px;}
.y87{bottom:897.096000px;}
.y12a{bottom:897.544500px;}
.y53{bottom:900.204000px;}
.yee{bottom:903.312000px;}
.y1e2{bottom:914.803500px;}
.y86{bottom:915.925500px;}
.y129{bottom:916.374000px;}
.y20{bottom:918.490500px;}
.y52{bottom:919.033500px;}
.y1a9{bottom:919.242000px;}
.y1e1{bottom:932.064000px;}
.y1f{bottom:934.630500px;}
.y85{bottom:934.755000px;}
.yb4{bottom:935.202000px;}
.y51{bottom:937.863000px;}
.y1a8{bottom:945.783000px;}
.y1e0{bottom:949.324500px;}
.y1e{bottom:950.769000px;}
.y84{bottom:953.584500px;}
.yb3{bottom:954.031500px;}
.y50{bottom:956.692500px;}
.y1a7{bottom:963.357000px;}
.y1df{bottom:966.585000px;}
.y83{bottom:972.414000px;}
.yb2{bottom:972.861000px;}
.y4f{bottom:975.522000px;}
.y154{bottom:976.896000px;}
.y1de{bottom:983.845500px;}
.y1a6{bottom:989.898000px;}
.yb1{bottom:991.690500px;}
.y4e{bottom:994.351500px;}
.y4{bottom:995.302500px;}
.y82{bottom:995.725500px;}
.y1dd{bottom:1001.106000px;}
.yb0{bottom:1010.520000px;}
.y4d{bottom:1013.181000px;}
.y1a5{bottom:1016.439000px;}
.y1dc{bottom:1018.366500px;}
.y81{bottom:1029.349500px;}
.y4c{bottom:1032.010500px;}
.y1db{bottom:1035.627000px;}
.y3{bottom:1041.199500px;}
.y1a4{bottom:1042.978500px;}
.y80{bottom:1048.179000px;}
.y4b{bottom:1050.840000px;}
.y1da{bottom:1052.886000px;}
.y7f{bottom:1067.008500px;}
.y2{bottom:1069.443000px;}
.y1a3{bottom:1069.519500px;}
.y4a{bottom:1069.669500px;}
.y1d9{bottom:1070.146500px;}
.y7e{bottom:1085.838000px;}
.y1a2{bottom:1087.093500px;}
.y1d8{bottom:1087.407000px;}
.y49{bottom:1088.499000px;}
.y1{bottom:1097.688000px;}
.y7d{bottom:1104.667500px;}
.y48{bottom:1107.327000px;}
.y47{bottom:1173.409500px;}
.h5{height:25.508090px;}
.he{height:25.942610px;}
.h7{height:33.112997px;}
.h6{height:34.199443px;}
.h8{height:36.319550px;}
.ha{height:38.734848px;}
.hd{height:39.488026px;}
.h9{height:41.508281px;}
.h4{height:43.038432px;}
.h2{height:43.875290px;}
.hb{height:46.697011px;}
.hc{height:51.885221px;}
.h3{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x1{left:53.506500px;}
.xc9{left:83.650500px;}
.xc7{left:86.272500px;}
.xca{left:171.531000px;}
.xcb{left:172.554000px;}
.xcc{left:175.444500px;}
.x4{left:249.832500px;}
.x3{left:250.897500px;}
.x3e{left:254.878500px;}
.x3f{left:261.603000px;}
.x40{left:263.208000px;}
.x53{left:274.615500px;}
.x7{left:282.786000px;}
.x81{left:293.667000px;}
.x70{left:295.392000px;}
.xb1{left:299.674500px;}
.xe{left:306.525000px;}
.x5{left:309.432000px;}
.x2e{left:311.914500px;}
.xf{left:313.996500px;}
.xa1{left:318.762000px;}
.x37{left:322.435500px;}
.x80{left:323.911500px;}
.x6{left:327.094500px;}
.xb4{left:328.536000px;}
.x19{left:331.173000px;}
.xc{left:333.556500px;}
.x72{left:334.660500px;}
.x38{left:337.380000px;}
.x1a{left:338.646000px;}
.xd{left:341.028000px;}
.xa5{left:342.340500px;}
.xb5{left:343.479000px;}
.xc2{left:344.485500px;}
.x73{left:349.605000px;}
.x41{left:358.666500px;}
.x54{left:371.074500px;}
.x42{left:372.117000px;}
.xaf{left:375.034500px;}
.x9b{left:376.126500px;}
.xa2{left:381.226500px;}
.xaa{left:383.232000px;}
.xa0{left:385.131000px;}
.x90{left:386.341500px;}
.x89{left:387.480000px;}
.xb0{left:389.977500px;}
.x9c{left:391.069500px;}
.xa3{left:396.169500px;}
.xab{left:397.578000px;}
.x68{left:398.842500px;}
.x91{left:401.284500px;}
.x8a{left:402.424500px;}
.x86{left:405.433500px;}
.xa6{left:408.324000px;}
.x5b{left:413.844000px;}
.x87{left:420.378000px;}
.xa7{left:423.267000px;}
.x5c{left:428.787000px;}
.x29{left:432.436500px;}
.x57{left:442.620000px;}
.x2f{left:443.829000px;}
.x22{left:445.048500px;}
.x2a{left:447.379500px;}
.x69{left:452.725500px;}
.x4f{left:456.747000px;}
.x23{left:459.991500px;}
.x50{left:461.298000px;}
.x58{left:463.732500px;}
.xb7{left:466.641000px;}
.x6a{left:467.668500px;}
.x51{left:469.515000px;}
.x59{left:477.183000px;}
.xb8{left:481.585500px;}
.x78{left:484.023000px;}
.x63{left:486.150000px;}
.x9a{left:487.978500px;}
.x64{left:490.719000px;}
.x88{left:492.486000px;}
.xc3{left:495.351000px;}
.x74{left:496.378500px;}
.x65{left:498.936000px;}
.x3c{left:502.267500px;}
.xb9{left:506.424000px;}
.xbb{left:509.445000px;}
.x75{left:511.323000px;}
.x1e{left:514.251000px;}
.x4d{left:515.544000px;}
.x3d{left:517.210500px;}
.x4e{left:520.111500px;}
.xba{left:521.368500px;}
.xbc{left:524.389500px;}
.x5a{left:528.163500px;}
.x1f{left:529.194000px;}
.x2d{left:534.786000px;}
.xae{left:542.011500px;}
.x32{left:545.092500px;}
.xc0{left:548.287500px;}
.x20{left:549.934500px;}
.x8b{left:552.028500px;}
.xc1{left:554.265000px;}
.x21{left:557.406000px;}
.x33{left:560.037000px;}
.x8c{left:566.973000px;}
.x9e{left:568.531500px;}
.x8d{left:570.783000px;}
.x43{left:574.348500px;}
.x44{left:578.917500px;}
.x98{left:581.038500px;}
.x5d{left:582.376500px;}
.x9f{left:583.476000px;}
.x45{left:584.889000px;}
.x5e{left:586.186500px;}
.x6e{left:588.840000px;}
.x99{left:595.983000px;}
.x66{left:597.685500px;}
.xc5{left:599.437500px;}
.x5f{left:601.131000px;}
.x60{left:604.941000px;}
.xc6{left:606.910500px;}
.x8e{left:608.293500px;}
.x67{left:611.134500px;}
.x8f{left:615.457500px;}
.x6c{left:616.789500px;}
.x61{left:619.885500px;}
.x35{left:621.069000px;}
.x62{left:623.697000px;}
.x14{left:625.350000px;}
.x7a{left:626.955000px;}
.xc4{left:629.539500px;}
.x6d{left:631.732500px;}
.x15{left:632.821500px;}
.x36{left:636.012000px;}
.x39{left:639.595500px;}
.x24{left:641.286000px;}
.x27{left:642.939000px;}
.x25{left:644.947500px;}
.x96{left:646.099500px;}
.x3a{left:647.127000px;}
.x6f{left:650.334000px;}
.x7c{left:656.347500px;}
.x28{left:657.883500px;}
.x26{left:659.892000px;}
.x97{left:661.042500px;}
.x3b{left:662.070000px;}
.x76{left:664.474500px;}
.xac{left:666.205500px;}
.x46{left:669.103500px;}
.x7d{left:671.290500px;}
.x17{left:672.727500px;}
.x7e{left:675.102000px;}
.x18{left:679.752000px;}
.x77{left:683.229000px;}
.xad{left:684.810000px;}
.x82{left:686.802000px;}
.x7f{left:690.046500px;}
.xa4{left:693.592500px;}
.xa8{left:696.907500px;}
.xb6{left:699.448500px;}
.x12{left:702.450000px;}
.x47{left:704.476500px;}
.x49{left:705.939000px;}
.x83{left:707.847000px;}
.x13{left:709.921500px;}
.xa9{left:711.253500px;}
.x92{left:712.500000px;}
.xa{left:714.924000px;}
.x16{left:717.091500px;}
.xb{left:722.397000px;}
.x84{left:726.496500px;}
.x52{left:728.314500px;}
.x30{left:731.535000px;}
.xbd{left:739.630500px;}
.x85{left:741.441000px;}
.x4a{left:743.083500px;}
.x9d{left:744.156000px;}
.x31{left:746.479500px;}
.xc8{left:750.375000px;}
.x10{left:751.513500px;}
.xbe{left:754.575000px;}
.x34{left:756.885000px;}
.x11{left:758.985000px;}
.x4b{left:761.949000px;}
.x48{left:763.972500px;}
.x2b{left:768.679500px;}
.x1c{left:771.082500px;}
.x6b{left:772.113000px;}
.xcd{left:775.297500px;}
.x55{left:776.418000px;}
.x7b{left:778.713000px;}
.x93{left:780.835500px;}
.x79{left:782.455500px;}
.x2c{left:783.624000px;}
.x1d{left:786.027000px;}
.xb2{left:793.621500px;}
.x94{left:795.780000px;}
.x71{left:799.024500px;}
.xb3{left:801.093000px;}
.x4c{left:804.351000px;}
.xbf{left:811.102500px;}
.x95{left:814.384500px;}
.x1b{left:817.890000px;}
.x8{left:825.169500px;}
.x9{left:832.642500px;}
.x56{left:837.867000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000533pt;}
.ls9{letter-spacing:0.001007pt;}
.lsa{letter-spacing:0.002825pt;}
.ls10{letter-spacing:0.004267pt;}
.ls6{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls1{letter-spacing:9.293600pt;}
.ls4{letter-spacing:10.626533pt;}
.ls12{letter-spacing:11.397181pt;}
.ls11{letter-spacing:11.522351pt;}
.lse{letter-spacing:11.954133pt;}
.lsd{letter-spacing:11.959467pt;}
.lsf{letter-spacing:11.997741pt;}
.lsc{letter-spacing:12.055574pt;}
.ls3{letter-spacing:22.316137pt;}
.ls7{letter-spacing:2482.837067pt;}
.lsb{letter-spacing:2483.903733pt;}
.ls8{letter-spacing:2484.965067pt;}
.ws39{word-spacing:-13.283467pt;}
.ws5c{word-spacing:-11.955200pt;}
.ws2c{word-spacing:-10.626800pt;}
.ws5{word-spacing:-9.298400pt;}
.ws38{word-spacing:-2.869229pt;}
.ws86{word-spacing:-2.709827pt;}
.ws8a{word-spacing:-2.656693pt;}
.ws6d{word-spacing:-2.497292pt;}
.ws92{word-spacing:-2.391024pt;}
.wsc0{word-spacing:-2.247578pt;}
.ws37{word-spacing:-2.019087pt;}
.wsc3{word-spacing:-2.008474pt;}
.ws4e{word-spacing:-1.965953pt;}
.wscf{word-spacing:-1.865011pt;}
.ws3a{word-spacing:-1.806551pt;}
.ws8c{word-spacing:-1.753418pt;}
.ws3c{word-spacing:-1.700284pt;}
.ws2{word-spacing:-1.696326pt;}
.ws3b{word-spacing:-1.647150pt;}
.ws50{word-spacing:-1.594016pt;}
.ws55{word-spacing:-1.540882pt;}
.ws29{word-spacing:-1.487748pt;}
.wsa0{word-spacing:-1.434614pt;}
.ws3f{word-spacing:-1.381481pt;}
.ws9f{word-spacing:-1.328347pt;}
.ws88{word-spacing:-1.275213pt;}
.ws9e{word-spacing:-1.222079pt;}
.ws1{word-spacing:-1.175671pt;}
.ws87{word-spacing:-1.062677pt;}
.ws43{word-spacing:-1.009543pt;}
.wsb1{word-spacing:-0.956410pt;}
.ws9d{word-spacing:-0.903276pt;}
.ws99{word-spacing:-0.797008pt;}
.wsed{word-spacing:-0.765133pt;}
.wsaa{word-spacing:-0.690740pt;}
.ws31{word-spacing:-0.637606pt;}
.wsea{word-spacing:-0.621670pt;}
.ws9c{word-spacing:-0.584473pt;}
.ws84{word-spacing:-0.531339pt;}
.ws8d{word-spacing:-0.425071pt;}
.ws74{word-spacing:-0.371937pt;}
.ws32{word-spacing:-0.318803pt;}
.ws16{word-spacing:-0.286925pt;}
.ws24{word-spacing:-0.265669pt;}
.ws67{word-spacing:-0.239104pt;}
.ws22{word-spacing:-0.212535pt;}
.ws14{word-spacing:-0.191283pt;}
.ws1e{word-spacing:-0.159402pt;}
.ws59{word-spacing:-0.143462pt;}
.ws20{word-spacing:-0.106268pt;}
.ws19{word-spacing:-0.095642pt;}
.ws21{word-spacing:-0.053134pt;}
.wsc1{word-spacing:-0.047821pt;}
.wsbe{word-spacing:-0.007228pt;}
.wsca{word-spacing:-0.005530pt;}
.wsc2{word-spacing:-0.005137pt;}
.wscd{word-spacing:-0.004702pt;}
.wse1{word-spacing:-0.002739pt;}
.ws4{word-spacing:-0.002042pt;}
.wsd1{word-spacing:-0.001297pt;}
.ws2b{word-spacing:-0.000803pt;}
.wsdd{word-spacing:-0.000196pt;}
.ws0{word-spacing:0.000000pt;}
.wsce{word-spacing:0.001485pt;}
.wsc5{word-spacing:0.047821pt;}
.ws26{word-spacing:0.053134pt;}
.ws5f{word-spacing:0.095642pt;}
.ws44{word-spacing:0.106268pt;}
.ws12{word-spacing:0.143462pt;}
.ws27{word-spacing:0.159402pt;}
.ws7{word-spacing:0.185968pt;}
.ws18{word-spacing:0.191283pt;}
.ws1f{word-spacing:0.212535pt;}
.wsc4{word-spacing:0.239104pt;}
.ws9{word-spacing:0.260355pt;}
.ws2a{word-spacing:0.265669pt;}
.wsdc{word-spacing:0.286925pt;}
.ws28{word-spacing:0.318803pt;}
.ws56{word-spacing:0.371937pt;}
.wsa5{word-spacing:0.382566pt;}
.ws69{word-spacing:0.425071pt;}
.wsb6{word-spacing:0.478205pt;}
.ws60{word-spacing:0.526029pt;}
.ws76{word-spacing:0.531339pt;}
.ws7d{word-spacing:0.584473pt;}
.ws46{word-spacing:0.637606pt;}
.ws47{word-spacing:0.690740pt;}
.ws91{word-spacing:0.743874pt;}
.ws75{word-spacing:0.850142pt;}
.wsa1{word-spacing:0.956410pt;}
.wsbf{word-spacing:1.004237pt;}
.ws81{word-spacing:1.009543pt;}
.ws54{word-spacing:1.115811pt;}
.ws1c{word-spacing:1.168945pt;}
.wsc9{word-spacing:1.195520pt;}
.ws8e{word-spacing:1.222079pt;}
.ws45{word-spacing:1.275213pt;}
.wsac{word-spacing:1.328347pt;}
.ws94{word-spacing:1.381481pt;}
.ws66{word-spacing:1.386803pt;}
.wsa3{word-spacing:1.434614pt;}
.wse4{word-spacing:1.482445pt;}
.wsa6{word-spacing:1.487748pt;}
.ws4a{word-spacing:1.540882pt;}
.wsc8{word-spacing:1.578086pt;}
.wsb8{word-spacing:1.594016pt;}
.ws1d{word-spacing:1.647150pt;}
.ws96{word-spacing:1.700284pt;}
.wsd5{word-spacing:1.769370pt;}
.ws8{word-spacing:1.785293pt;}
.ws9a{word-spacing:1.806551pt;}
.wsd8{word-spacing:1.817190pt;}
.ws6c{word-spacing:1.859685pt;}
.wsc7{word-spacing:1.865011pt;}
.wsb0{word-spacing:1.912819pt;}
.ws78{word-spacing:1.965953pt;}
.ws77{word-spacing:2.019087pt;}
.ws13{word-spacing:2.056294pt;}
.ws15{word-spacing:2.104115pt;}
.wsa9{word-spacing:2.125355pt;}
.wsb7{word-spacing:2.178489pt;}
.ws98{word-spacing:2.231622pt;}
.ws3e{word-spacing:2.284756pt;}
.wse9{word-spacing:2.295398pt;}
.wsbb{word-spacing:2.343219pt;}
.ws8b{word-spacing:2.391024pt;}
.ws17{word-spacing:2.391040pt;}
.ws82{word-spacing:2.444158pt;}
.ws57{word-spacing:2.497292pt;}
.ws80{word-spacing:2.550426pt;}
.ws11{word-spacing:2.550432pt;}
.ws6e{word-spacing:2.603559pt;}
.wsdb{word-spacing:2.630144pt;}
.ws6b{word-spacing:2.656693pt;}
.wsa7{word-spacing:2.709827pt;}
.wsae{word-spacing:2.762961pt;}
.wsb3{word-spacing:2.816095pt;}
.wsee{word-spacing:2.821427pt;}
.wseb{word-spacing:2.857515pt;}
.wse2{word-spacing:2.864802pt;}
.wsd6{word-spacing:2.866022pt;}
.wsba{word-spacing:2.866509pt;}
.wse5{word-spacing:2.866739pt;}
.wse7{word-spacing:2.868471pt;}
.wsa4{word-spacing:2.869229pt;}
.wsbd{word-spacing:2.869248pt;}
.wsec{word-spacing:2.917069pt;}
.ws33{word-spacing:2.975497pt;}
.ws25{word-spacing:3.028630pt;}
.wse6{word-spacing:3.060531pt;}
.ws35{word-spacing:3.081764pt;}
.ws49{word-spacing:3.134898pt;}
.ws52{word-spacing:3.188032pt;}
.ws53{word-spacing:3.241166pt;}
.ws68{word-spacing:3.400567pt;}
.ws4f{word-spacing:3.453701pt;}
.ws4d{word-spacing:3.506835pt;}
.ws41{word-spacing:3.559969pt;}
.ws2e{word-spacing:3.613103pt;}
.ws85{word-spacing:3.666237pt;}
.wsdf{word-spacing:3.682202pt;}
.wsad{word-spacing:3.825638pt;}
.ws6a{word-spacing:3.878772pt;}
.ws79{word-spacing:3.931906pt;}
.wsb2{word-spacing:3.985040pt;}
.ws30{word-spacing:4.091308pt;}
.wsd3{word-spacing:4.112589pt;}
.wsaf{word-spacing:4.303843pt;}
.wse8{word-spacing:4.351693pt;}
.ws2f{word-spacing:4.356977pt;}
.wsd4{word-spacing:4.399514pt;}
.ws34{word-spacing:4.410111pt;}
.wsde{word-spacing:4.447334pt;}
.ws58{word-spacing:4.463245pt;}
.ws42{word-spacing:4.516379pt;}
.ws9b{word-spacing:4.569513pt;}
.wsa2{word-spacing:4.622646pt;}
.ws89{word-spacing:4.675780pt;}
.ws7e{word-spacing:4.728914pt;}
.ws2d{word-spacing:4.782048pt;}
.wsd7{word-spacing:4.829901pt;}
.ws3d{word-spacing:4.888316pt;}
.ws48{word-spacing:4.941450pt;}
.ws7b{word-spacing:4.994583pt;}
.ws83{word-spacing:5.047717pt;}
.ws93{word-spacing:5.153985pt;}
.wsb4{word-spacing:5.260253pt;}
.wscc{word-spacing:5.260288pt;}
.wsf{word-spacing:5.393072pt;}
.ws4c{word-spacing:5.419654pt;}
.ws10{word-spacing:5.467459pt;}
.ws95{word-spacing:5.579056pt;}
.ws73{word-spacing:5.595034pt;}
.wsab{word-spacing:5.685324pt;}
.ws72{word-spacing:5.690675pt;}
.ws36{word-spacing:5.738458pt;}
.ws7a{word-spacing:5.791591pt;}
.ws97{word-spacing:5.897859pt;}
.ws8f{word-spacing:6.057261pt;}
.ws7f{word-spacing:6.110395pt;}
.wsb9{word-spacing:6.216662pt;}
.ws23{word-spacing:6.269796pt;}
.ws90{word-spacing:6.322930pt;}
.ws40{word-spacing:6.376064pt;}
.ws4b{word-spacing:6.748001pt;}
.wsb5{word-spacing:6.907403pt;}
.ws1b{word-spacing:6.960537pt;}
.ws7c{word-spacing:7.013670pt;}
.ws51{word-spacing:7.279340pt;}
.wsa8{word-spacing:7.332474pt;}
.ws71{word-spacing:7.412224pt;}
.wsd{word-spacing:7.699075pt;}
.wse3{word-spacing:8.123409pt;}
.wscb{word-spacing:8.125781pt;}
.wsd2{word-spacing:8.126225pt;}
.wsbc{word-spacing:8.127420pt;}
.wsd0{word-spacing:8.127863pt;}
.wsd9{word-spacing:8.128188pt;}
.wse0{word-spacing:8.129084pt;}
.wsda{word-spacing:8.129152pt;}
.wsc6{word-spacing:8.129715pt;}
.ws6{word-spacing:9.298400pt;}
.ws1a{word-spacing:10.042368pt;}
.ws5b{word-spacing:10.424934pt;}
.ws3{word-spacing:13.763148pt;}
.wsa{word-spacing:14.348669pt;}
.wsb{word-spacing:14.356730pt;}
.ws61{word-spacing:15.254835pt;}
.wsc{word-spacing:15.732893pt;}
.ws5d{word-spacing:15.733043pt;}
.ws5e{word-spacing:16.641638pt;}
.ws63{word-spacing:21.232435pt;}
.ws62{word-spacing:21.854106pt;}
.ws5a{word-spacing:22.332314pt;}
.wse{word-spacing:24.399002pt;}
.ws6f{word-spacing:28.214272pt;}
.ws70{word-spacing:30.987878pt;}
.ws65{word-spacing:49.016320pt;}
.ws64{word-spacing:51.168256pt;}
._28{margin-left:-21.184614pt;}
._29{margin-left:-17.465238pt;}
._1{margin-left:-10.616218pt;}
._0{margin-left:-7.077478pt;}
._c{margin-left:-5.607219pt;}
._7{margin-left:-4.091296pt;}
._19{margin-left:-2.907477pt;}
._5{margin-left:-1.996288pt;}
._4{margin-left:-0.956410pt;}
._6{width:0.969929pt;}
._a{width:2.045648pt;}
._24{width:3.878772pt;}
._27{width:5.710205pt;}
._1b{width:7.301199pt;}
._1c{width:8.235749pt;}
._1a{width:9.360037pt;}
._b{width:11.092829pt;}
._8{width:12.199501pt;}
._e{width:13.437645pt;}
._26{width:14.374767pt;}
._f{width:15.290471pt;}
._12{width:16.471499pt;}
._16{width:17.405110pt;}
._17{width:18.837552pt;}
._15{width:20.509673pt;}
._d{width:21.471539pt;}
._9{width:23.024972pt;}
._1d{width:24.844791pt;}
._10{width:26.301440pt;}
._11{width:27.975168pt;}
._2{width:29.648896pt;}
._23{width:30.870777pt;}
._1e{width:31.880320pt;}
._18{width:34.165076pt;}
._13{width:35.387155pt;}
._22{width:37.087439pt;}
._1f{width:38.787723pt;}
._2a{width:44.383332pt;}
._20{width:47.342592pt;}
._2c{width:51.796035pt;}
._2b{width:54.993920pt;}
._21{width:58.723942pt;}
._3{width:61.663541pt;}
._25{width:78.904320pt;}
._14{width:816.700171pt;}
.fs7{font-size:26.566933pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:37.276537pt;}
.fs2{font-size:41.988267pt;}
.fs5{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.fs1{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.044747pt;}
.y6{bottom:12.578910pt;}
.y46{bottom:28.346667pt;}
.y19c{bottom:79.116000pt;}
.y7c{bottom:83.533333pt;}
.y10d{bottom:87.326667pt;}
.ydd{bottom:91.157333pt;}
.y1d{bottom:91.398667pt;}
.y1d7{bottom:92.818667pt;}
.y128{bottom:92.858667pt;}
.yaf{bottom:93.656000pt;}
.y16f{bottom:94.053333pt;}
.y153{bottom:94.452000pt;}
.y19b{bottom:95.853333pt;}
.y7b{bottom:100.270667pt;}
.y10c{bottom:104.064000pt;}
.y45{bottom:106.585333pt;}
.y1c{bottom:107.298667pt;}
.ydc{bottom:107.894667pt;}
.y1d6{bottom:108.161333pt;}
.y127{bottom:109.596000pt;}
.yae{bottom:110.393333pt;}
.y16e{bottom:110.790667pt;}
.y152{bottom:111.189333pt;}
.y19a{bottom:112.590667pt;}
.y7a{bottom:117.008000pt;}
.y10b{bottom:120.801333pt;}
.y20d{bottom:122.746667pt;}
.y1b{bottom:123.200000pt;}
.y44{bottom:123.322667pt;}
.y1d5{bottom:123.504000pt;}
.ydb{bottom:124.632000pt;}
.y126{bottom:126.333333pt;}
.yad{bottom:127.130667pt;}
.y16d{bottom:127.528000pt;}
.y151{bottom:127.926667pt;}
.y199{bottom:129.328000pt;}
.y79{bottom:133.745333pt;}
.y10a{bottom:137.538667pt;}
.y20c{bottom:138.089333pt;}
.y1d4{bottom:138.846667pt;}
.y1a{bottom:139.100000pt;}
.y43{bottom:140.060000pt;}
.yda{bottom:141.369333pt;}
.yed{bottom:141.394667pt;}
.y125{bottom:143.070667pt;}
.yac{bottom:143.866667pt;}
.y16c{bottom:144.265333pt;}
.y150{bottom:144.664000pt;}
.y198{bottom:146.065333pt;}
.y78{bottom:150.482667pt;}
.y20b{bottom:153.430667pt;}
.y1d3{bottom:154.189333pt;}
.y109{bottom:154.276000pt;}
.y19{bottom:155.000000pt;}
.y42{bottom:156.797333pt;}
.yd9{bottom:158.106667pt;}
.yec{bottom:158.132000pt;}
.yab{bottom:160.604000pt;}
.y16b{bottom:161.002667pt;}
.y14f{bottom:161.401333pt;}
.y197{bottom:162.802667pt;}
.y124{bottom:163.793333pt;}
.y77{bottom:167.220000pt;}
.y20a{bottom:168.773333pt;}
.y1d2{bottom:169.530667pt;}
.y18{bottom:170.901333pt;}
.y108{bottom:171.013333pt;}
.y41{bottom:173.534667pt;}
.yd8{bottom:174.844000pt;}
.yeb{bottom:174.869333pt;}
.yaa{bottom:177.341333pt;}
.y16a{bottom:177.740000pt;}
.y14e{bottom:178.138667pt;}
.y196{bottom:179.540000pt;}
.y76{bottom:183.957333pt;}
.y209{bottom:184.116000pt;}
.y1d1{bottom:184.873333pt;}
.y17{bottom:186.801333pt;}
.y107{bottom:187.750667pt;}
.y40{bottom:190.270667pt;}
.yd7{bottom:191.581333pt;}
.yea{bottom:191.606667pt;}
.y123{bottom:193.681333pt;}
.ya9{bottom:194.078667pt;}
.y169{bottom:194.477333pt;}
.y14d{bottom:194.876000pt;}
.y195{bottom:196.277333pt;}
.y208{bottom:199.458667pt;}
.y1d0{bottom:200.216000pt;}
.y75{bottom:200.694667pt;}
.y16{bottom:202.701333pt;}
.y106{bottom:204.488000pt;}
.y3f{bottom:207.008000pt;}
.yd6{bottom:208.318667pt;}
.ye9{bottom:208.344000pt;}
.y122{bottom:210.417333pt;}
.ya8{bottom:210.816000pt;}
.y168{bottom:211.214667pt;}
.y14c{bottom:211.613333pt;}
.ybe{bottom:212.734667pt;}
.y194{bottom:213.014667pt;}
.y207{bottom:214.801333pt;}
.y1cf{bottom:215.558667pt;}
.y74{bottom:217.432000pt;}
.y105{bottom:221.225333pt;}
.y3e{bottom:223.745333pt;}
.yd5{bottom:225.056000pt;}
.ye8{bottom:225.081333pt;}
.y121{bottom:227.154667pt;}
.ya7{bottom:227.553333pt;}
.y167{bottom:227.952000pt;}
.y14b{bottom:228.350667pt;}
.y206{bottom:230.144000pt;}
.y1ce{bottom:230.901333pt;}
.y193{bottom:233.737333pt;}
.ybd{bottom:237.800000pt;}
.y104{bottom:237.962667pt;}
.y3d{bottom:240.482667pt;}
.y73{bottom:240.810667pt;}
.yd4{bottom:241.793333pt;}
.ye7{bottom:241.818667pt;}
.y120{bottom:243.892000pt;}
.ya6{bottom:244.290667pt;}
.y166{bottom:244.689333pt;}
.y14a{bottom:245.088000pt;}
.y205{bottom:245.486667pt;}
.y1cd{bottom:246.244000pt;}
.y103{bottom:254.700000pt;}
.ybc{bottom:254.896000pt;}
.y3c{bottom:257.220000pt;}
.y72{bottom:257.548000pt;}
.yd3{bottom:258.530667pt;}
.ye6{bottom:258.556000pt;}
.y204{bottom:260.829333pt;}
.ya5{bottom:261.028000pt;}
.y165{bottom:261.426667pt;}
.y1cc{bottom:261.586667pt;}
.y149{bottom:261.825333pt;}
.y192{bottom:263.624000pt;}
.y11f{bottom:264.614667pt;}
.y102{bottom:271.437333pt;}
.y15{bottom:273.154667pt;}
.y3b{bottom:273.957333pt;}
.y71{bottom:274.285333pt;}
.yd2{bottom:275.268000pt;}
.ye5{bottom:275.293333pt;}
.y203{bottom:276.172000pt;}
.y1cb{bottom:276.929333pt;}
.ya4{bottom:277.765333pt;}
.y164{bottom:278.164000pt;}
.y148{bottom:278.562667pt;}
.y191{bottom:280.361333pt;}
.y101{bottom:288.174667pt;}
.y14{bottom:289.054667pt;}
.y3a{bottom:290.694667pt;}
.y70{bottom:291.022667pt;}
.y202{bottom:291.513333pt;}
.yd1{bottom:292.005333pt;}
.ye4{bottom:292.030667pt;}
.y1ca{bottom:292.270667pt;}
.ya3{bottom:294.502667pt;}
.y163{bottom:294.901333pt;}
.y17d{bottom:295.300000pt;}
.y190{bottom:297.098667pt;}
.y147{bottom:299.285333pt;}
.y100{bottom:304.912000pt;}
.y13{bottom:304.954667pt;}
.y201{bottom:306.856000pt;}
.y39{bottom:307.432000pt;}
.y1c9{bottom:307.613333pt;}
.y6f{bottom:307.760000pt;}
.yd0{bottom:308.742667pt;}
.ye3{bottom:308.768000pt;}
.ya2{bottom:311.240000pt;}
.y162{bottom:311.638667pt;}
.y17c{bottom:312.037333pt;}
.y18f{bottom:313.836000pt;}
.y12{bottom:320.856000pt;}
.yff{bottom:321.649333pt;}
.y200{bottom:322.198667pt;}
.y1c8{bottom:322.956000pt;}
.y38{bottom:324.169333pt;}
.y6e{bottom:324.497333pt;}
.ycf{bottom:325.480000pt;}
.ya1{bottom:327.977333pt;}
.y161{bottom:328.376000pt;}
.y17b{bottom:328.774667pt;}
.y146{bottom:329.173333pt;}
.y18e{bottom:330.573333pt;}
.y1ff{bottom:337.541333pt;}
.y1c7{bottom:338.298667pt;}
.yfe{bottom:338.386667pt;}
.ye2{bottom:338.604000pt;}
.y37{bottom:340.906667pt;}
.y6d{bottom:341.234667pt;}
.yce{bottom:342.217333pt;}
.ya0{bottom:344.714667pt;}
.y160{bottom:345.113333pt;}
.y17a{bottom:345.512000pt;}
.y145{bottom:345.910667pt;}
.y18d{bottom:347.310667pt;}
.y1fe{bottom:352.884000pt;}
.y1c6{bottom:353.641333pt;}
.y11{bottom:354.688000pt;}
.yfd{bottom:355.124000pt;}
.y36{bottom:357.644000pt;}
.y6c{bottom:357.972000pt;}
.ycd{bottom:358.954667pt;}
.y11e{bottom:361.452000pt;}
.y15f{bottom:361.850667pt;}
.y179{bottom:362.249333pt;}
.y144{bottom:362.648000pt;}
.ye1{bottom:363.670667pt;}
.y18c{bottom:364.048000pt;}
.y9f{bottom:365.437333pt;}
.y1fd{bottom:368.226667pt;}
.y1c5{bottom:368.984000pt;}
.y10{bottom:370.589333pt;}
.yfc{bottom:371.861333pt;}
.y35{bottom:374.381333pt;}
.y6b{bottom:374.709333pt;}
.ycc{bottom:375.692000pt;}
.y11d{bottom:378.189333pt;}
.y15e{bottom:378.588000pt;}
.y178{bottom:378.986667pt;}
.y143{bottom:379.384000pt;}
.y18b{bottom:380.785333pt;}
.y1a1{bottom:382.970667pt;}
.y1fc{bottom:383.569333pt;}
.y1c4{bottom:384.326667pt;}
.yf{bottom:386.489333pt;}
.yfb{bottom:388.598667pt;}
.y34{bottom:391.118667pt;}
.y6a{bottom:391.446667pt;}
.ycb{bottom:392.429333pt;}
.y11c{bottom:394.926667pt;}
.y9e{bottom:395.325333pt;}
.y177{bottom:395.724000pt;}
.y142{bottom:396.121333pt;}
.y18a{bottom:397.522667pt;}
.y1fb{bottom:398.912000pt;}
.y1c3{bottom:399.669333pt;}
.yfa{bottom:405.336000pt;}
.y33{bottom:407.856000pt;}
.yca{bottom:409.166667pt;}
.y11b{bottom:411.664000pt;}
.y9d{bottom:412.062667pt;}
.y176{bottom:412.461333pt;}
.y1fa{bottom:412.516000pt;}
.y141{bottom:412.858667pt;}
.y1f9{bottom:414.253333pt;}
.y189{bottom:414.260000pt;}
.y69{bottom:414.825333pt;}
.y1c2{bottom:415.012000pt;}
.ye{bottom:418.330667pt;}
.ybb{bottom:421.872000pt;}
.yf9{bottom:422.073333pt;}
.y32{bottom:424.593333pt;}
.yc9{bottom:425.904000pt;}
.y11a{bottom:428.401333pt;}
.y9c{bottom:428.800000pt;}
.y175{bottom:429.198667pt;}
.y140{bottom:429.596000pt;}
.y1c1{bottom:430.353333pt;}
.y188{bottom:430.997333pt;}
.y68{bottom:431.562667pt;}
.yf8{bottom:438.810667pt;}
.yba{bottom:438.966667pt;}
.y31{bottom:441.330667pt;}
.yc8{bottom:442.641333pt;}
.y1f8{bottom:444.938667pt;}
.y119{bottom:445.138667pt;}
.y9b{bottom:445.537333pt;}
.y1c0{bottom:445.696000pt;}
.y174{bottom:445.934667pt;}
.y13f{bottom:446.333333pt;}
.y187{bottom:447.734667pt;}
.y67{bottom:448.300000pt;}
.yd{bottom:450.170667pt;}
.yf7{bottom:455.548000pt;}
.yb9{bottom:456.062667pt;}
.y30{bottom:458.068000pt;}
.y1f7{bottom:460.281333pt;}
.y1bf{bottom:461.038667pt;}
.y118{bottom:461.876000pt;}
.y9a{bottom:462.274667pt;}
.y173{bottom:462.672000pt;}
.y13e{bottom:463.070667pt;}
.yc7{bottom:463.362667pt;}
.y186{bottom:464.472000pt;}
.y66{bottom:465.037333pt;}
.yc{bottom:466.070667pt;}
.yf6{bottom:472.285333pt;}
.yb8{bottom:473.158667pt;}
.y2f{bottom:474.805333pt;}
.y1f6{bottom:475.624000pt;}
.y1be{bottom:476.381333pt;}
.y117{bottom:478.613333pt;}
.y99{bottom:479.012000pt;}
.y172{bottom:479.409333pt;}
.y13d{bottom:479.808000pt;}
.y185{bottom:481.209333pt;}
.y65{bottom:481.774667pt;}
.yb{bottom:481.972000pt;}
.yf5{bottom:489.022667pt;}
.yb7{bottom:490.254667pt;}
.yc6{bottom:490.409333pt;}
.y1f5{bottom:490.966667pt;}
.y2e{bottom:491.542667pt;}
.y1bd{bottom:491.724000pt;}
.y116{bottom:495.350667pt;}
.y98{bottom:495.749333pt;}
.y171{bottom:496.146667pt;}
.y13c{bottom:496.545333pt;}
.ya{bottom:497.872000pt;}
.y184{bottom:497.946667pt;}
.y64{bottom:498.512000pt;}
.y1f4{bottom:506.309333pt;}
.y1bc{bottom:507.066667pt;}
.yf4{bottom:509.744000pt;}
.y2d{bottom:512.265333pt;}
.y97{bottom:512.485333pt;}
.y19f{bottom:512.884000pt;}
.y13b{bottom:513.282667pt;}
.y9{bottom:513.772000pt;}
.y183{bottom:514.684000pt;}
.y63{bottom:515.249333pt;}
.yc5{bottom:515.476000pt;}
.y115{bottom:516.072000pt;}
.y15d{bottom:516.470667pt;}
.y170{bottom:516.869333pt;}
.y1f3{bottom:521.652000pt;}
.y1bb{bottom:522.409333pt;}
.y96{bottom:529.222667pt;}
.y19e{bottom:529.621333pt;}
.y8{bottom:529.673333pt;}
.y13a{bottom:530.020000pt;}
.y182{bottom:531.421333pt;}
.yc4{bottom:532.572000pt;}
.y1a0{bottom:533.606667pt;}
.ye0{bottom:535.010667pt;}
.y62{bottom:535.970667pt;}
.yf3{bottom:536.790667pt;}
.y1f2{bottom:536.994667pt;}
.y1ba{bottom:537.752000pt;}
.y95{bottom:545.960000pt;}
.y15c{bottom:546.358667pt;}
.y139{bottom:546.757333pt;}
.y5{bottom:549.558634pt;}
.yc3{bottom:549.668000pt;}
.y1f1{bottom:552.336000pt;}
.y1b9{bottom:553.093333pt;}
.y181{bottom:559.128000pt;}
.yf2{bottom:561.857333pt;}
.y94{bottom:562.697333pt;}
.y15b{bottom:563.096000pt;}
.y138{bottom:563.494667pt;}
.y61{bottom:565.858667pt;}
.yc2{bottom:566.762667pt;}
.y1f0{bottom:567.678667pt;}
.y1b8{bottom:568.436000pt;}
.y2c{bottom:575.950667pt;}
.yf1{bottom:578.953333pt;}
.y93{bottom:579.434667pt;}
.y15a{bottom:579.833333pt;}
.y137{bottom:580.232000pt;}
.y60{bottom:582.596000pt;}
.y1ef{bottom:583.021333pt;}
.y1b7{bottom:583.778667pt;}
.y180{bottom:584.194667pt;}
.y2b{bottom:593.245333pt;}
.y92{bottom:596.172000pt;}
.y159{bottom:596.570667pt;}
.y136{bottom:596.969333pt;}
.y1ee{bottom:598.364000pt;}
.y1b6{bottom:599.121333pt;}
.y5f{bottom:599.333333pt;}
.y91{bottom:612.909333pt;}
.y158{bottom:613.308000pt;}
.y135{bottom:613.706667pt;}
.y1b5{bottom:614.464000pt;}
.y5e{bottom:616.070667pt;}
.y2a{bottom:626.481333pt;}
.y1ed{bottom:629.049333pt;}
.y90{bottom:629.646667pt;}
.y1b4{bottom:629.806667pt;}
.y157{bottom:630.045333pt;}
.y134{bottom:630.444000pt;}
.y5d{bottom:632.808000pt;}
.y29{bottom:643.776000pt;}
.y1ec{bottom:644.392000pt;}
.y1b3{bottom:645.149333pt;}
.y8f{bottom:646.384000pt;}
.y156{bottom:646.782667pt;}
.y133{bottom:647.181333pt;}
.y5c{bottom:649.545333pt;}
.y114{bottom:650.369333pt;}
.y1eb{bottom:659.734667pt;}
.y1b2{bottom:660.492000pt;}
.y28{bottom:661.072000pt;}
.y8e{bottom:663.121333pt;}
.y155{bottom:663.520000pt;}
.y132{bottom:663.918667pt;}
.y5b{bottom:666.282667pt;}
.y1ea{bottom:675.076000pt;}
.y1b1{bottom:675.834667pt;}
.y27{bottom:678.366667pt;}
.y8d{bottom:679.858667pt;}
.y113{bottom:680.257333pt;}
.y131{bottom:680.656000pt;}
.y5a{bottom:683.020000pt;}
.y1e9{bottom:690.418667pt;}
.y1b0{bottom:691.176000pt;}
.yb6{bottom:691.478667pt;}
.y26{bottom:695.661333pt;}
.y8c{bottom:696.596000pt;}
.y112{bottom:696.994667pt;}
.y130{bottom:697.393333pt;}
.y59{bottom:699.757333pt;}
.y19d{bottom:700.980000pt;}
.y17f{bottom:702.337333pt;}
.y1e8{bottom:705.761333pt;}
.y1af{bottom:706.518667pt;}
.yb5{bottom:708.574667pt;}
.y25{bottom:712.957333pt;}
.y8b{bottom:713.333333pt;}
.y111{bottom:713.732000pt;}
.y12f{bottom:714.130667pt;}
.y58{bottom:716.494667pt;}
.y17e{bottom:719.433333pt;}
.y1e7{bottom:721.104000pt;}
.y1ae{bottom:721.861333pt;}
.y8a{bottom:730.070667pt;}
.y24{bottom:730.252000pt;}
.y110{bottom:730.469333pt;}
.y12e{bottom:730.868000pt;}
.y57{bottom:733.232000pt;}
.y1e6{bottom:736.446667pt;}
.y1ad{bottom:737.204000pt;}
.yc1{bottom:746.977333pt;}
.y10f{bottom:747.206667pt;}
.y23{bottom:747.546667pt;}
.y12d{bottom:747.605333pt;}
.y56{bottom:749.969333pt;}
.y89{bottom:750.793333pt;}
.y1e5{bottom:751.789333pt;}
.y1ac{bottom:752.546667pt;}
.ydf{bottom:754.784000pt;}
.y10e{bottom:763.944000pt;}
.yc0{bottom:764.073333pt;}
.y12c{bottom:764.342667pt;}
.y22{bottom:764.842667pt;}
.y55{bottom:766.706667pt;}
.y1e4{bottom:767.132000pt;}
.y1ab{bottom:767.889333pt;}
.yf0{bottom:768.752000pt;}
.yde{bottom:771.880000pt;}
.y88{bottom:780.681333pt;}
.y12b{bottom:781.080000pt;}
.ybf{bottom:781.168000pt;}
.y21{bottom:782.137333pt;}
.y1e3{bottom:782.474667pt;}
.y54{bottom:783.444000pt;}
.yef{bottom:785.848000pt;}
.y1aa{bottom:787.217333pt;}
.y87{bottom:797.418667pt;}
.y12a{bottom:797.817333pt;}
.y53{bottom:800.181333pt;}
.yee{bottom:802.944000pt;}
.y1e2{bottom:813.158667pt;}
.y86{bottom:814.156000pt;}
.y129{bottom:814.554667pt;}
.y20{bottom:816.436000pt;}
.y52{bottom:816.918667pt;}
.y1a9{bottom:817.104000pt;}
.y1e1{bottom:828.501333pt;}
.y1f{bottom:830.782667pt;}
.y85{bottom:830.893333pt;}
.yb4{bottom:831.290667pt;}
.y51{bottom:833.656000pt;}
.y1a8{bottom:840.696000pt;}
.y1e0{bottom:843.844000pt;}
.y1e{bottom:845.128000pt;}
.y84{bottom:847.630667pt;}
.yb3{bottom:848.028000pt;}
.y50{bottom:850.393333pt;}
.y1a7{bottom:856.317333pt;}
.y1df{bottom:859.186667pt;}
.y83{bottom:864.368000pt;}
.yb2{bottom:864.765333pt;}
.y4f{bottom:867.130667pt;}
.y154{bottom:868.352000pt;}
.y1de{bottom:874.529333pt;}
.y1a6{bottom:879.909333pt;}
.yb1{bottom:881.502667pt;}
.y4e{bottom:883.868000pt;}
.y4{bottom:884.713333pt;}
.y82{bottom:885.089333pt;}
.y1dd{bottom:889.872000pt;}
.yb0{bottom:898.240000pt;}
.y4d{bottom:900.605333pt;}
.y1a5{bottom:903.501333pt;}
.y1dc{bottom:905.214667pt;}
.y81{bottom:914.977333pt;}
.y4c{bottom:917.342667pt;}
.y1db{bottom:920.557333pt;}
.y3{bottom:925.510667pt;}
.y1a4{bottom:927.092000pt;}
.y80{bottom:931.714667pt;}
.y4b{bottom:934.080000pt;}
.y1da{bottom:935.898667pt;}
.y7f{bottom:948.452000pt;}
.y2{bottom:950.616000pt;}
.y1a3{bottom:950.684000pt;}
.y4a{bottom:950.817333pt;}
.y1d9{bottom:951.241333pt;}
.y7e{bottom:965.189333pt;}
.y1a2{bottom:966.305333pt;}
.y1d8{bottom:966.584000pt;}
.y49{bottom:967.554667pt;}
.y1{bottom:975.722667pt;}
.y7d{bottom:981.926667pt;}
.y48{bottom:984.290667pt;}
.y47{bottom:1043.030667pt;}
.h5{height:22.673858pt;}
.he{height:23.060098pt;}
.h7{height:29.433775pt;}
.h6{height:30.399505pt;}
.h8{height:32.284045pt;}
.ha{height:34.430976pt;}
.hd{height:35.100467pt;}
.h9{height:36.896250pt;}
.h4{height:38.256384pt;}
.h2{height:39.000258pt;}
.hb{height:41.508454pt;}
.hc{height:46.120196pt;}
.h3{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x1{left:47.561333pt;}
.xc9{left:74.356000pt;}
.xc7{left:76.686667pt;}
.xca{left:152.472000pt;}
.xcb{left:153.381333pt;}
.xcc{left:155.950667pt;}
.x4{left:222.073333pt;}
.x3{left:223.020000pt;}
.x3e{left:226.558667pt;}
.x3f{left:232.536000pt;}
.x40{left:233.962667pt;}
.x53{left:244.102667pt;}
.x7{left:251.365333pt;}
.x81{left:261.037333pt;}
.x70{left:262.570667pt;}
.xb1{left:266.377333pt;}
.xe{left:272.466667pt;}
.x5{left:275.050667pt;}
.x2e{left:277.257333pt;}
.xf{left:279.108000pt;}
.xa1{left:283.344000pt;}
.x37{left:286.609333pt;}
.x80{left:287.921333pt;}
.x6{left:290.750667pt;}
.xb4{left:292.032000pt;}
.x19{left:294.376000pt;}
.xc{left:296.494667pt;}
.x72{left:297.476000pt;}
.x38{left:299.893333pt;}
.x1a{left:301.018667pt;}
.xd{left:303.136000pt;}
.xa5{left:304.302667pt;}
.xb5{left:305.314667pt;}
.xc2{left:306.209333pt;}
.x73{left:310.760000pt;}
.x41{left:318.814667pt;}
.x54{left:329.844000pt;}
.x42{left:330.770667pt;}
.xaf{left:333.364000pt;}
.x9b{left:334.334667pt;}
.xa2{left:338.868000pt;}
.xaa{left:340.650667pt;}
.xa0{left:342.338667pt;}
.x90{left:343.414667pt;}
.x89{left:344.426667pt;}
.xb0{left:346.646667pt;}
.x9c{left:347.617333pt;}
.xa3{left:352.150667pt;}
.xab{left:353.402667pt;}
.x68{left:354.526667pt;}
.x91{left:356.697333pt;}
.x8a{left:357.710667pt;}
.x86{left:360.385333pt;}
.xa6{left:362.954667pt;}
.x5b{left:367.861333pt;}
.x87{left:373.669333pt;}
.xa7{left:376.237333pt;}
.x5c{left:381.144000pt;}
.x29{left:384.388000pt;}
.x57{left:393.440000pt;}
.x2f{left:394.514667pt;}
.x22{left:395.598667pt;}
.x2a{left:397.670667pt;}
.x69{left:402.422667pt;}
.x4f{left:405.997333pt;}
.x23{left:408.881333pt;}
.x50{left:410.042667pt;}
.x58{left:412.206667pt;}
.xb7{left:414.792000pt;}
.x6a{left:415.705333pt;}
.x51{left:417.346667pt;}
.x59{left:424.162667pt;}
.xb8{left:428.076000pt;}
.x78{left:430.242667pt;}
.x63{left:432.133333pt;}
.x9a{left:433.758667pt;}
.x64{left:436.194667pt;}
.x88{left:437.765333pt;}
.xc3{left:440.312000pt;}
.x74{left:441.225333pt;}
.x65{left:443.498667pt;}
.x3c{left:446.460000pt;}
.xb9{left:450.154667pt;}
.xbb{left:452.840000pt;}
.x75{left:454.509333pt;}
.x1e{left:457.112000pt;}
.x4d{left:458.261333pt;}
.x3d{left:459.742667pt;}
.x4e{left:462.321333pt;}
.xba{left:463.438667pt;}
.xbc{left:466.124000pt;}
.x5a{left:469.478667pt;}
.x1f{left:470.394667pt;}
.x2d{left:475.365333pt;}
.xae{left:481.788000pt;}
.x32{left:484.526667pt;}
.xc0{left:487.366667pt;}
.x20{left:488.830667pt;}
.x8b{left:490.692000pt;}
.xc1{left:492.680000pt;}
.x21{left:495.472000pt;}
.x33{left:497.810667pt;}
.x8c{left:503.976000pt;}
.x9e{left:505.361333pt;}
.x8d{left:507.362667pt;}
.x43{left:510.532000pt;}
.x44{left:514.593333pt;}
.x98{left:516.478667pt;}
.x5d{left:517.668000pt;}
.x9f{left:518.645333pt;}
.x45{left:519.901333pt;}
.x5e{left:521.054667pt;}
.x6e{left:523.413333pt;}
.x99{left:529.762667pt;}
.x66{left:531.276000pt;}
.xc5{left:532.833333pt;}
.x5f{left:534.338667pt;}
.x60{left:537.725333pt;}
.xc6{left:539.476000pt;}
.x8e{left:540.705333pt;}
.x67{left:543.230667pt;}
.x8f{left:547.073333pt;}
.x6c{left:548.257333pt;}
.x61{left:551.009333pt;}
.x35{left:552.061333pt;}
.x62{left:554.397333pt;}
.x14{left:555.866667pt;}
.x7a{left:557.293333pt;}
.xc4{left:559.590667pt;}
.x6d{left:561.540000pt;}
.x15{left:562.508000pt;}
.x36{left:565.344000pt;}
.x39{left:568.529333pt;}
.x24{left:570.032000pt;}
.x27{left:571.501333pt;}
.x25{left:573.286667pt;}
.x96{left:574.310667pt;}
.x3a{left:575.224000pt;}
.x6f{left:578.074667pt;}
.x7c{left:583.420000pt;}
.x28{left:584.785333pt;}
.x26{left:586.570667pt;}
.x97{left:587.593333pt;}
.x3b{left:588.506667pt;}
.x76{left:590.644000pt;}
.xac{left:592.182667pt;}
.x46{left:594.758667pt;}
.x7d{left:596.702667pt;}
.x17{left:597.980000pt;}
.x7e{left:600.090667pt;}
.x18{left:604.224000pt;}
.x77{left:607.314667pt;}
.xad{left:608.720000pt;}
.x82{left:610.490667pt;}
.x7f{left:613.374667pt;}
.xa4{left:616.526667pt;}
.xa8{left:619.473333pt;}
.xb6{left:621.732000pt;}
.x12{left:624.400000pt;}
.x47{left:626.201333pt;}
.x49{left:627.501333pt;}
.x83{left:629.197333pt;}
.x13{left:631.041333pt;}
.xa9{left:632.225333pt;}
.x92{left:633.333333pt;}
.xa{left:635.488000pt;}
.x16{left:637.414667pt;}
.xb{left:642.130667pt;}
.x84{left:645.774667pt;}
.x52{left:647.390667pt;}
.x30{left:650.253333pt;}
.xbd{left:657.449333pt;}
.x85{left:659.058667pt;}
.x4a{left:660.518667pt;}
.x9d{left:661.472000pt;}
.x31{left:663.537333pt;}
.xc8{left:667.000000pt;}
.x10{left:668.012000pt;}
.xbe{left:670.733333pt;}
.x34{left:672.786667pt;}
.x11{left:674.653333pt;}
.x4b{left:677.288000pt;}
.x48{left:679.086667pt;}
.x2b{left:683.270667pt;}
.x1c{left:685.406667pt;}
.x6b{left:686.322667pt;}
.xcd{left:689.153333pt;}
.x55{left:690.149333pt;}
.x7b{left:692.189333pt;}
.x93{left:694.076000pt;}
.x79{left:695.516000pt;}
.x2c{left:696.554667pt;}
.x1d{left:698.690667pt;}
.xb2{left:705.441333pt;}
.x94{left:707.360000pt;}
.x71{left:710.244000pt;}
.xb3{left:712.082667pt;}
.x4c{left:714.978667pt;}
.xbf{left:720.980000pt;}
.x95{left:723.897333pt;}
.x1b{left:727.013333pt;}
.x8{left:733.484000pt;}
.x9{left:740.126667pt;}
.x56{left:744.770667pt;}
}


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