
/* 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_b70353d8e775.woff")format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_b09e06bd0862.woff")format("woff");}.ff2{font-family:ff2;line-height:1.123000;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_04ddeca2b233.woff")format("woff");}.ff3{font-family:ff3;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:ff4;src:url("fonts/font_0003_0383633c25e5.woff")format("woff");}.ff4{font-family:ff4;line-height:0.739000;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_c730aac53dee.woff")format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url("fonts/font_0005_a58f7836026f.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_1ae56354975e.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_79dcdc6f476d.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_6579671df06d.woff")format("woff");}.ff9{font-family:ff9;line-height:0.388000;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;}
.m1{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);}
.m18{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);}
.m2a{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);}
.m11{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);}
.m5{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);}
.m10{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);}
.ma{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);}
.m3{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);}
.m27{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);}
.m24{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);}
.m26{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);}
.m1f{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);}
.m21{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);}
.m12{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);}
.m6{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);}
.m19{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);}
.mc{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);}
.md{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);}
.mf{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);}
.m20{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);}
.m25{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);}
.m14{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);}
.m22{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);}
.m16{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);}
.m15{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);}
.me{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);}
.m1e{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);}
.m4{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);}
.m9{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);}
.m17{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);}
.m1d{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);}
.m13{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);}
.m28{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);}
.m29{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);}
.m7{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);}
.m1a{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);}
.m1c{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);}
.m2b{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);}
.mb{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);}
.m23{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);}
.m8{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);}
.v3{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.920000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:23.016000px;}
.v5{vertical-align:26.299200px;}
.ls8{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.004800px;}
.ls9{letter-spacing:1.275394px;}
.ls6{letter-spacing:1.861130px;}
.ls0{letter-spacing:2.989200px;}
.ls7{letter-spacing:11.954850px;}
.ls14{letter-spacing:13.353189px;}
.ls17{letter-spacing:13.372849px;}
.ls10{letter-spacing:13.448400px;}
.ls12{letter-spacing:13.454400px;}
.ls13{letter-spacing:13.529166px;}
.ls11{letter-spacing:13.690930px;}
.lsd{letter-spacing:14.346144px;}
.lsc{letter-spacing:14.884124px;}
.ls16{letter-spacing:16.850400px;}
.lsb{letter-spacing:16.856719px;}
.lsa{letter-spacing:17.633802px;}
.ls3{letter-spacing:17.935200px;}
.ls1{letter-spacing:22.909200px;}
.ls2{letter-spacing:22.915200px;}
.lse{letter-spacing:65.950500px;}
.ls4{letter-spacing:70.236600px;}
.ls5{letter-spacing:72.353510px;}
.lsf{letter-spacing:75.372000px;}
.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;}
}
.wsad{word-spacing:-14.943900px;}
.wse0{word-spacing:-13.449600px;}
.ws1e{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws99{word-spacing:-10.759680px;}
.ws87{word-spacing:-9.414720px;}
.ws58{word-spacing:-3.526760px;}
.ws68{word-spacing:-3.168107px;}
.wsb0{word-spacing:-3.108331px;}
.ws55{word-spacing:-2.988780px;}
.ws10d{word-spacing:-2.905114px;}
.ws66{word-spacing:-2.749678px;}
.wse5{word-spacing:-2.689920px;}
.ws57{word-spacing:-2.689902px;}
.wscd{word-spacing:-2.630126px;}
.ws9b{word-spacing:-2.410168px;}
.wsc8{word-spacing:-2.391024px;}
.ws2e{word-spacing:-2.331248px;}
.ws4e{word-spacing:-2.271473px;}
.ws61{word-spacing:-2.211697px;}
.ws9c{word-spacing:-2.194975px;}
.ws7b{word-spacing:-2.151922px;}
.ws88{word-spacing:-2.108897px;}
.wsdd{word-spacing:-2.098138px;}
.ws94{word-spacing:-2.092146px;}
.ws4d{word-spacing:-1.972595px;}
.ws8{word-spacing:-1.908367px;}
.wsb6{word-spacing:-1.853044px;}
.wsce{word-spacing:-1.793268px;}
.wsd8{word-spacing:-1.775347px;}
.ws51{word-spacing:-1.733492px;}
.wsd0{word-spacing:-1.667750px;}
.ws2f{word-spacing:-1.613941px;}
.ws93{word-spacing:-1.554166px;}
.ws70{word-spacing:-1.494390px;}
.ws4a{word-spacing:-1.434614px;}
.ws8d{word-spacing:-1.374839px;}
.ws7{word-spacing:-1.322630px;}
.ws13{word-spacing:-1.255288px;}
.ws6c{word-spacing:-1.195512px;}
.ws16{word-spacing:-1.135736px;}
.ws28{word-spacing:-1.075961px;}
.ws27{word-spacing:-1.016185px;}
.ws95{word-spacing:-0.956410px;}
.wsfe{word-spacing:-0.860774px;}
.wsbd{word-spacing:-0.836858px;}
.ws116{word-spacing:-0.806976px;}
.wsb2{word-spacing:-0.777083px;}
.ws1f{word-spacing:-0.717307px;}
.ws6d{word-spacing:-0.657532px;}
.ws12{word-spacing:-0.597756px;}
.wsc6{word-spacing:-0.537980px;}
.ws30{word-spacing:-0.478205px;}
.ws3c{word-spacing:-0.418429px;}
.ws7c{word-spacing:-0.358654px;}
.ws11a{word-spacing:-0.322790px;}
.ws24{word-spacing:-0.298878px;}
.wse2{word-spacing:-0.268992px;}
.wse6{word-spacing:-0.239781px;}
.ws1a{word-spacing:-0.239102px;}
.wsd1{word-spacing:-0.215194px;}
.ws23{word-spacing:-0.179327px;}
.wsd6{word-spacing:-0.161395px;}
.ws4{word-spacing:-0.147180px;}
.ws5{word-spacing:-0.145722px;}
.ws1{word-spacing:-0.119551px;}
.wsd2{word-spacing:-0.107597px;}
.ws31{word-spacing:-0.059776px;}
.wsd5{word-spacing:-0.053798px;}
.ws10f{word-spacing:-0.010733px;}
.ws11b{word-spacing:-0.009302px;}
.wse1{word-spacing:-0.005770px;}
.wsdf{word-spacing:-0.003466px;}
.ws1d{word-spacing:-0.003082px;}
.ws111{word-spacing:-0.002467px;}
.ws0{word-spacing:0.000000px;}
.wsf9{word-spacing:0.001440px;}
.wse7{word-spacing:0.053798px;}
.ws18{word-spacing:0.059776px;}
.wsab{word-spacing:0.086077px;}
.wsde{word-spacing:0.107597px;}
.ws89{word-spacing:0.112977px;}
.ws21{word-spacing:0.119551px;}
.ws79{word-spacing:0.129116px;}
.wsf2{word-spacing:0.161395px;}
.ws78{word-spacing:0.172155px;}
.wsf{word-spacing:0.179327px;}
.ws9a{word-spacing:0.215194px;}
.ws2c{word-spacing:0.239102px;}
.ws6{word-spacing:0.268992px;}
.ws17{word-spacing:0.298878px;}
.wsf8{word-spacing:0.322790px;}
.ws44{word-spacing:0.358654px;}
.ws112{word-spacing:0.376589px;}
.ws11{word-spacing:0.418429px;}
.ws1c{word-spacing:0.478205px;}
.wsb5{word-spacing:0.537980px;}
.wsd9{word-spacing:0.537984px;}
.wsda{word-spacing:0.591782px;}
.ws2d{word-spacing:0.597756px;}
.ws45{word-spacing:0.657532px;}
.ws50{word-spacing:0.717307px;}
.ws69{word-spacing:0.777083px;}
.ws5d{word-spacing:0.836858px;}
.ws22{word-spacing:0.896634px;}
.ws74{word-spacing:0.956410px;}
.ws106{word-spacing:0.968371px;}
.ws96{word-spacing:1.016185px;}
.ws5e{word-spacing:1.075961px;}
.wsdb{word-spacing:1.075968px;}
.wsdc{word-spacing:1.129766px;}
.ws15{word-spacing:1.135736px;}
.ws38{word-spacing:1.195512px;}
.wsc7{word-spacing:1.315063px;}
.ws43{word-spacing:1.374839px;}
.ws9{word-spacing:1.434614px;}
.ws54{word-spacing:1.494390px;}
.ws5f{word-spacing:1.554166px;}
.ws104{word-spacing:1.560154px;}
.ws35{word-spacing:1.613941px;}
.wsd4{word-spacing:1.667750px;}
.ws42{word-spacing:1.673717px;}
.ws84{word-spacing:1.733492px;}
.ws4f{word-spacing:1.793268px;}
.wsd{word-spacing:1.853044px;}
.wsae{word-spacing:1.912819px;}
.wsf3{word-spacing:1.936742px;}
.ws3f{word-spacing:1.972595px;}
.wse4{word-spacing:1.990541px;}
.ws25{word-spacing:2.032370px;}
.wse3{word-spacing:2.044339px;}
.ws37{word-spacing:2.092146px;}
.ws41{word-spacing:2.151922px;}
.ws92{word-spacing:2.211697px;}
.wsa1{word-spacing:2.271473px;}
.ws47{word-spacing:2.331248px;}
.ws40{word-spacing:2.391024px;}
.ws65{word-spacing:2.450800px;}
.ws105{word-spacing:2.474726px;}
.wsa7{word-spacing:2.510575px;}
.ws48{word-spacing:2.570351px;}
.ws77{word-spacing:2.582323px;}
.ws1b{word-spacing:2.630126px;}
.ws117{word-spacing:2.636122px;}
.ws3e{word-spacing:2.689902px;}
.ws33{word-spacing:2.749678px;}
.wsbc{word-spacing:2.809453px;}
.ws91{word-spacing:2.869229px;}
.wsc4{word-spacing:2.929004px;}
.wsaf{word-spacing:2.988780px;}
.ws115{word-spacing:3.066509px;}
.ws2a{word-spacing:3.108331px;}
.ws113{word-spacing:3.120307px;}
.ws29{word-spacing:3.168107px;}
.ws102{word-spacing:3.174106px;}
.ws103{word-spacing:3.221606px;}
.ws10c{word-spacing:3.223584px;}
.wsff{word-spacing:3.224112px;}
.ws101{word-spacing:3.225629px;}
.wse8{word-spacing:3.227626px;}
.ws10e{word-spacing:3.227846px;}
.ws5b{word-spacing:3.227882px;}
.wsd7{word-spacing:3.227904px;}
.ws100{word-spacing:3.228787px;}
.wsee{word-spacing:3.228970px;}
.ws119{word-spacing:3.229229px;}
.wsc{word-spacing:3.287658px;}
.ws46{word-spacing:3.347434px;}
.ws107{word-spacing:3.389299px;}
.ws2b{word-spacing:3.407209px;}
.ws118{word-spacing:3.443098px;}
.ws7f{word-spacing:3.466985px;}
.ws8f{word-spacing:3.526760px;}
.ws19{word-spacing:3.586536px;}
.ws8b{word-spacing:3.646312px;}
.ws26{word-spacing:3.765863px;}
.ws52{word-spacing:3.825638px;}
.ws34{word-spacing:3.885414px;}
.ws114{word-spacing:4.034880px;}
.ws6b{word-spacing:4.064741px;}
.wsc0{word-spacing:4.124516px;}
.ws6f{word-spacing:4.184292px;}
.ws10{word-spacing:4.244068px;}
.ws80{word-spacing:4.303843px;}
.wse{word-spacing:4.363619px;}
.wsa2{word-spacing:4.423394px;}
.ws108{word-spacing:4.465267px;}
.wsa{word-spacing:4.483170px;}
.ws109{word-spacing:4.519066px;}
.ws59{word-spacing:4.542946px;}
.ws67{word-spacing:4.602721px;}
.wsa0{word-spacing:4.662497px;}
.ws8c{word-spacing:4.722272px;}
.ws4c{word-spacing:4.782048px;}
.ws4b{word-spacing:4.841824px;}
.wsb7{word-spacing:4.961375px;}
.wsbf{word-spacing:5.021150px;}
.ws81{word-spacing:5.080926px;}
.ws9d{word-spacing:5.140702px;}
.wsef{word-spacing:5.164646px;}
.wsbe{word-spacing:5.260253px;}
.ws60{word-spacing:5.379804px;}
.ws73{word-spacing:5.439580px;}
.wsa8{word-spacing:5.499355px;}
.ws20{word-spacing:5.559131px;}
.wsf4{word-spacing:5.595034px;}
.ws32{word-spacing:5.618906px;}
.wsa6{word-spacing:5.678682px;}
.ws53{word-spacing:5.738458px;}
.ws49{word-spacing:5.858009px;}
.wsed{word-spacing:5.864026px;}
.wsba{word-spacing:5.917784px;}
.wsec{word-spacing:5.917824px;}
.ws64{word-spacing:6.097111px;}
.ws6a{word-spacing:6.276438px;}
.ws39{word-spacing:6.336214px;}
.wsa3{word-spacing:6.395989px;}
.wscf{word-spacing:6.455765px;}
.wsc1{word-spacing:6.515540px;}
.ws76{word-spacing:6.575316px;}
.ws90{word-spacing:6.635092px;}
.wsb4{word-spacing:6.694867px;}
.wsa5{word-spacing:6.993745px;}
.ws110{word-spacing:7.249625px;}
.ws10a{word-spacing:7.261390px;}
.wsd3{word-spacing:7.262784px;}
.ws8e{word-spacing:7.292623px;}
.wsfc{word-spacing:7.424179px;}
.ws62{word-spacing:7.471950px;}
.ws14{word-spacing:7.591501px;}
.ws56{word-spacing:7.830604px;}
.wsbb{word-spacing:7.950155px;}
.ws75{word-spacing:8.009930px;}
.ws3a{word-spacing:8.069706px;}
.ws72{word-spacing:8.129482px;}
.ws7d{word-spacing:8.189257px;}
.wsca{word-spacing:8.249033px;}
.wsb{word-spacing:8.368584px;}
.ws36{word-spacing:8.547911px;}
.ws83{word-spacing:8.607686px;}
.wsc3{word-spacing:8.906564px;}
.wsf1{word-spacing:8.930534px;}
.wsf0{word-spacing:8.957655px;}
.ws5a{word-spacing:9.026116px;}
.wsac{word-spacing:9.623872px;}
.ws3d{word-spacing:9.922750px;}
.wsb9{word-spacing:10.042301px;}
.ws8a{word-spacing:10.221628px;}
.wsc5{word-spacing:10.938935px;}
.wsfd{word-spacing:10.974874px;}
.wsc2{word-spacing:10.998710px;}
.ws10b{word-spacing:11.028672px;}
.ws5c{word-spacing:11.118262px;}
.ws7a{word-spacing:11.476915px;}
.wscc{word-spacing:11.775793px;}
.ws3b{word-spacing:11.895344px;}
.wsb3{word-spacing:11.955120px;}
.ws9e{word-spacing:12.134447px;}
.ws7e{word-spacing:12.313774px;}
.wsb8{word-spacing:12.433325px;}
.wscb{word-spacing:12.552876px;}
.ws71{word-spacing:12.911530px;}
.wsc9{word-spacing:13.210408px;}
.wseb{word-spacing:13.288205px;}
.wse9{word-spacing:13.324501px;}
.wsea{word-spacing:13.342003px;}
.wsf5{word-spacing:13.557197px;}
.wsf6{word-spacing:15.009754px;}
.ws9f{word-spacing:15.063451px;}
.wsf7{word-spacing:15.063552px;}
.ws63{word-spacing:15.183002px;}
.ws3{word-spacing:15.530068px;}
.wsb1{word-spacing:16.019861px;}
.ws6e{word-spacing:16.318739px;}
.wsa4{word-spacing:16.498066px;}
.ws82{word-spacing:20.323704px;}
.wsfa{word-spacing:23.240909px;}
.wsfb{word-spacing:23.294707px;}
.ws11c{word-spacing:25.984627px;}
.ws97{word-spacing:108.036303px;}
.wsa9{word-spacing:134.564283px;}
.ws85{word-spacing:139.891765px;}
.ws98{word-spacing:304.628060px;}
.ws86{word-spacing:323.565097px;}
.wsaa{word-spacing:373.748244px;}
._16{margin-left:-7.268700px;}
._4{margin-left:-5.971622px;}
._3{margin-left:-4.949453px;}
._6{margin-left:-2.958912px;}
._1{margin-left:-1.936742px;}
._8{width:1.091170px;}
._2{width:3.007140px;}
._19{width:4.423394px;}
._34{width:11.620454px;}
._21{width:13.342003px;}
._30{width:14.513542px;}
._7{width:15.709133px;}
._5{width:17.645875px;}
._a{width:19.474916px;}
._d{width:20.503031px;}
._10{width:21.877870px;}
._12{width:23.432035px;}
._b{width:24.926425px;}
._13{width:26.444738px;}
._17{width:28.536884px;}
._11{width:30.366005px;}
._1c{width:32.159273px;}
._0{width:33.355008px;}
._1b{width:34.693771px;}
._18{width:36.522892px;}
._2d{width:38.256384px;}
._c{width:40.946286px;}
._14{width:43.337310px;}
._9{width:44.915399px;}
._33{width:47.450189px;}
._15{width:48.836665px;}
._31{width:50.199575px;}
._1a{width:51.939052px;}
._20{width:56.811110px;}
._1d{width:58.783338px;}
._32{width:61.868160px;}
._2c{width:64.043591px;}
._35{width:69.077146px;}
._22{width:80.278631px;}
._29{width:87.253885px;}
._27{width:97.181169px;}
._23{width:130.389323px;}
._2e{width:143.342700px;}
._2b{width:174.106022px;}
._25{width:208.793350px;}
._2a{width:287.448008px;}
._24{width:351.583304px;}
._28{width:363.289836px;}
._2f{width:397.849928px;}
._1f{width:610.073856px;}
._e{width:717.498482px;}
._1e{width:807.750697px;}
._26{width:1922.198700px;}
._f{width:1946.108700px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(61,100,144);}
.fs4{font-size:29.887800px;}
.fsb{font-size:37.658880px;}
.fsc{font-size:39.240600px;}
.fs5{font-size:41.842800px;}
.fs8{font-size:41.936104px;}
.fsa{font-size:43.038720px;}
.fsd{font-size:44.846400px;}
.fs3{font-size:45.429600px;}
.fs7{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:102.515176px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y18{bottom:3.425340px;}
.y17{bottom:14.151273px;}
.y2{bottom:18.594411px;}
.y31{bottom:63.780000px;}
.y131{bottom:108.612000px;}
.y233{bottom:108.957000px;}
.y16d{bottom:109.840500px;}
.ydb{bottom:109.915500px;}
.y30{bottom:110.850000px;}
.y1be{bottom:116.607000px;}
.y8a{bottom:119.863500px;}
.y65{bottom:123.121500px;}
.yc7{bottom:125.727000px;}
.y232{bottom:128.325000px;}
.y130{bottom:128.875500px;}
.y1ff{bottom:129.444000px;}
.y1a7{bottom:130.015500px;}
.y16c{bottom:130.105500px;}
.yda{bottom:130.179000px;}
.y2f{bottom:131.115000px;}
.yaa{bottom:132.861000px;}
.y1bd{bottom:136.870500px;}
.y1ef{bottom:137.797500px;}
.y89{bottom:140.128500px;}
.y106{bottom:141.495000px;}
.y64{bottom:143.386500px;}
.y231{bottom:147.691500px;}
.y1fe{bottom:148.810500px;}
.y12f{bottom:149.139000px;}
.y1a6{bottom:150.280500px;}
.y16b{bottom:150.369000px;}
.yd9{bottom:150.444000px;}
.y2e{bottom:151.378500px;}
.ya9{bottom:153.124500px;}
.y1bc{bottom:157.134000px;}
.y1ee{bottom:158.061000px;}
.y88{bottom:160.392000px;}
.y105{bottom:161.758500px;}
.y63{bottom:163.650000px;}
.y230{bottom:167.059500px;}
.y1fd{bottom:168.178500px;}
.y1a5{bottom:170.544000px;}
.y16a{bottom:170.634000px;}
.yd8{bottom:170.707500px;}
.y2d{bottom:171.643500px;}
.ya8{bottom:173.388000px;}
.y1bb{bottom:177.399000px;}
.y1ed{bottom:178.324500px;}
.y87{bottom:180.657000px;}
.y104{bottom:182.022000px;}
.y62{bottom:183.913500px;}
.y22f{bottom:186.427500px;}
.y1fc{bottom:187.546500px;}
.y1a4{bottom:190.807500px;}
.y169{bottom:190.897500px;}
.yd7{bottom:190.971000px;}
.ya7{bottom:193.653000px;}
.y1ba{bottom:197.662500px;}
.y1ec{bottom:198.589500px;}
.y2c{bottom:200.874000px;}
.y86{bottom:200.920500px;}
.y103{bottom:202.287000px;}
.y12e{bottom:202.778100px;}
.y61{bottom:204.178500px;}
.y22e{bottom:205.794000px;}
.y1fb{bottom:206.913000px;}
.y132{bottom:209.887500px;}
.y1a3{bottom:211.072500px;}
.y168{bottom:211.161000px;}
.yd6{bottom:211.236000px;}
.ya6{bottom:213.916500px;}
.y12d{bottom:214.285050px;}
.y1b9{bottom:217.927500px;}
.y1eb{bottom:218.853000px;}
.y85{bottom:221.184000px;}
.y102{bottom:222.550500px;}
.y60{bottom:224.442000px;}
.y22d{bottom:225.162000px;}
.y12c{bottom:225.792000px;}
.y1a2{bottom:231.336000px;}
.y167{bottom:231.426000px;}
.yd5{bottom:231.499500px;}
.y1fa{bottom:235.246500px;}
.y12b{bottom:237.298950px;}
.y1b8{bottom:238.191000px;}
.y1ea{bottom:239.116500px;}
.y84{bottom:241.449000px;}
.y101{bottom:242.815500px;}
.y22c{bottom:244.528500px;}
.y5f{bottom:244.707000px;}
.y1a1{bottom:251.601000px;}
.y12a{bottom:251.630400px;}
.y166{bottom:251.689500px;}
.yd4{bottom:251.764500px;}
.ya5{bottom:257.883000px;}
.y1b7{bottom:258.454500px;}
.y1e9{bottom:259.381500px;}
.yc6{bottom:261.475500px;}
.y83{bottom:261.712500px;}
.y100{bottom:263.079000px;}
.y22b{bottom:263.896500px;}
.y5e{bottom:264.970500px;}
.y1a0{bottom:271.864500px;}
.y165{bottom:271.954500px;}
.yd3{bottom:272.028000px;}
.y1f9{bottom:274.699500px;}
.y129{bottom:275.690100px;}
.y2b{bottom:277.281000px;}
.y1b6{bottom:278.719500px;}
.y1e8{bottom:279.645000px;}
.yc5{bottom:281.739000px;}
.y82{bottom:281.977500px;}
.y22a{bottom:283.264500px;}
.yff{bottom:283.342500px;}
.y5d{bottom:285.234000px;}
.y128{bottom:287.197050px;}
.y1f8{bottom:289.897500px;}
.y19f{bottom:292.128000px;}
.y164{bottom:292.218000px;}
.yd2{bottom:292.291500px;}
.y2a{bottom:297.546000px;}
.y127{bottom:298.704000px;}
.y1b5{bottom:298.983000px;}
.y1e7{bottom:299.910000px;}
.yc4{bottom:302.004000px;}
.y81{bottom:302.241000px;}
.y229{bottom:302.631000px;}
.y5c{bottom:302.769000px;}
.yfe{bottom:303.607500px;}
.y1f7{bottom:305.095500px;}
.y5b{bottom:305.499000px;}
.y19e{bottom:312.393000px;}
.y163{bottom:312.481500px;}
.y126{bottom:313.035450px;}
.y1b4{bottom:319.248000px;}
.y1e6{bottom:320.173500px;}
.y228{bottom:321.999000px;}
.yc3{bottom:322.267500px;}
.y80{bottom:322.504500px;}
.yfd{bottom:323.871000px;}
.y125{bottom:325.065300px;}
.y5a{bottom:325.762500px;}
.y1f6{bottom:329.259000px;}
.y19d{bottom:332.656500px;}
.y162{bottom:332.746500px;}
.y29{bottom:335.742000px;}
.yd1{bottom:336.259500px;}
.y1b3{bottom:339.511500px;}
.y1e5{bottom:340.437000px;}
.y227{bottom:341.367000px;}
.yc2{bottom:342.532500px;}
.y7f{bottom:342.769500px;}
.yfc{bottom:344.136000px;}
.y1f5{bottom:344.458500px;}
.y59{bottom:346.027500px;}
.y124{bottom:349.125000px;}
.y19c{bottom:352.921500px;}
.y161{bottom:353.010000px;}
.y28{bottom:356.007000px;}
.y1f4{bottom:359.656500px;}
.y1b2{bottom:359.775000px;}
.y123{bottom:360.631950px;}
.y1e4{bottom:360.702000px;}
.y226{bottom:360.733500px;}
.yc1{bottom:362.796000px;}
.y7e{bottom:363.033000px;}
.yfb{bottom:364.399500px;}
.y58{bottom:366.291000px;}
.y19b{bottom:373.185000px;}
.y160{bottom:373.275000px;}
.y122{bottom:374.962350px;}
.y27{bottom:376.270500px;}
.y1b1{bottom:380.040000px;}
.y225{bottom:380.101500px;}
.y1e3{bottom:380.965500px;}
.yc0{bottom:383.059500px;}
.y7d{bottom:383.298000px;}
.y1f3{bottom:383.820000px;}
.yfa{bottom:384.663000px;}
.y57{bottom:386.554500px;}
.y19a{bottom:393.448500px;}
.y15f{bottom:393.538500px;}
.y26{bottom:396.535500px;}
.y1f2{bottom:399.018000px;}
.y121{bottom:399.022050px;}
.y224{bottom:399.468000px;}
.y1b0{bottom:400.303500px;}
.y1e2{bottom:401.230500px;}
.ybf{bottom:403.324500px;}
.y7c{bottom:403.561500px;}
.yf9{bottom:404.928000px;}
.y56{bottom:406.819500px;}
.y120{bottom:410.529000px;}
.y15e{bottom:413.802000px;}
.y1f1{bottom:414.216000px;}
.y25{bottom:416.799000px;}
.y223{bottom:418.836000px;}
.y1af{bottom:420.568500px;}
.y1e1{bottom:421.494000px;}
.ybe{bottom:423.588000px;}
.y7b{bottom:423.825000px;}
.y11f{bottom:424.860450px;}
.yf8{bottom:425.191500px;}
.y55{bottom:427.083000px;}
.y15d{bottom:434.067000px;}
.y24{bottom:437.062500px;}
.y222{bottom:438.204000px;}
.y1ae{bottom:440.832000px;}
.y1e0{bottom:441.757500px;}
.ybd{bottom:443.853000px;}
.y7a{bottom:444.090000px;}
.yf7{bottom:445.456500px;}
.y54{bottom:447.348000px;}
.y11e{bottom:448.920150px;}
.y199{bottom:451.757100px;}
.y15c{bottom:454.330500px;}
.y23{bottom:457.327500px;}
.y221{bottom:457.570500px;}
.y11d{bottom:460.427100px;}
.y1ad{bottom:461.095500px;}
.y1df{bottom:462.022500px;}
.ybc{bottom:464.116500px;}
.y79{bottom:464.353500px;}
.y198{bottom:464.907900px;}
.yf6{bottom:465.720000px;}
.y53{bottom:467.611500px;}
.y11c{bottom:471.934050px;}
.y15b{bottom:474.595500px;}
.y220{bottom:476.938500px;}
.y22{bottom:477.591000px;}
.y196{bottom:478.058700px;}
.y192{bottom:479.253900px;}
.y1ac{bottom:481.360500px;}
.y1de{bottom:482.286000px;}
.y11b{bottom:483.441000px;}
.ybb{bottom:484.380000px;}
.y11a{bottom:484.486800px;}
.y78{bottom:484.618500px;}
.yf5{bottom:485.983500px;}
.y52{bottom:487.875000px;}
.y195{bottom:491.209500px;}
.y191{bottom:492.404700px;}
.y15a{bottom:494.859000px;}
.y119{bottom:495.993750px;}
.y21f{bottom:496.305000px;}
.y21{bottom:497.856000px;}
.y1ab{bottom:501.624000px;}
.y1dd{bottom:502.551000px;}
.y194{bottom:504.359100px;}
.y197{bottom:504.360300px;}
.yba{bottom:504.645000px;}
.y77{bottom:504.882000px;}
.y190{bottom:505.555500px;}
.yf4{bottom:506.248500px;}
.y51{bottom:508.140000px;}
.y118{bottom:510.325200px;}
.y159{bottom:515.122500px;}
.y21e{bottom:515.673000px;}
.y193{bottom:517.509900px;}
.y20{bottom:518.119500px;}
.y18f{bottom:518.706300px;}
.y1aa{bottom:521.889000px;}
.y1dc{bottom:522.814500px;}
.y117{bottom:522.877950px;}
.yb9{bottom:524.908500px;}
.y76{bottom:525.145500px;}
.yd0{bottom:528.166500px;}
.y50{bottom:528.403500px;}
.y18e{bottom:531.857100px;}
.y116{bottom:534.907800px;}
.y21d{bottom:535.041000px;}
.y18c{bottom:535.083900px;}
.y158{bottom:535.387500px;}
.y1f{bottom:538.383000px;}
.y1db{bottom:543.078000px;}
.y18d{bottom:545.006700px;}
.yb8{bottom:545.173500px;}
.y75{bottom:545.410500px;}
.y115{bottom:546.937650px;}
.y18b{bottom:548.234700px;}
.ycf{bottom:548.430000px;}
.y4f{bottom:548.667000px;}
.y1a9{bottom:551.119500px;}
.yf3{bottom:551.405400px;}
.y21c{bottom:554.407500px;}
.y157{bottom:555.651000px;}
.ya4{bottom:556.708500px;}
.y114{bottom:558.444600px;}
.y1e{bottom:558.648000px;}
.y18a{bottom:561.385500px;}
.y1da{bottom:563.343000px;}
.yf2{bottom:564.556200px;}
.yb7{bottom:565.437000px;}
.y74{bottom:565.674000px;}
.yce{bottom:568.695000px;}
.y4e{bottom:568.932000px;}
.y21b{bottom:573.775500px;}
.y156{bottom:575.916000px;}
.ya3{bottom:576.972000px;}
.yf1{bottom:577.707000px;}
.y1d{bottom:578.911500px;}
.y1d9{bottom:583.606500px;}
.yb6{bottom:585.700500px;}
.y73{bottom:585.939000px;}
.y113{bottom:588.258000px;}
.y186{bottom:588.284700px;}
.ycd{bottom:588.958500px;}
.y4d{bottom:589.195500px;}
.y189{bottom:590.676300px;}
.y180{bottom:591.871500px;}
.y21a{bottom:593.142000px;}
.y155{bottom:596.179500px;}
.yf0{bottom:596.619000px;}
.ya2{bottom:597.235500px;}
.y1c{bottom:599.176500px;}
.y185{bottom:602.630700px;}
.y188{bottom:603.827100px;}
.y1d8{bottom:603.871500px;}
.y17f{bottom:605.022300px;}
.yb5{bottom:605.965500px;}
.y72{bottom:606.202500px;}
.ycc{bottom:609.223500px;}
.y4c{bottom:609.460500px;}
.yef{bottom:609.769800px;}
.y219{bottom:612.510000px;}
.y184{bottom:615.781500px;}
.y187{bottom:616.977900px;}
.ya1{bottom:617.500500px;}
.y17e{bottom:618.173100px;}
.y1b{bottom:619.440000px;}
.yee{bottom:622.920600px;}
.y112{bottom:623.209500px;}
.y1d7{bottom:624.135000px;}
.yb4{bottom:626.229000px;}
.y71{bottom:626.466000px;}
.ycb{bottom:629.487000px;}
.y4b{bottom:629.724000px;}
.y183{bottom:630.127500px;}
.y17d{bottom:631.323900px;}
.y218{bottom:631.878000px;}
.ya0{bottom:637.764000px;}
.y1a{bottom:639.703500px;}
.yed{bottom:641.832600px;}
.y182{bottom:643.278300px;}
.y111{bottom:643.473000px;}
.y1d6{bottom:644.398500px;}
.y17c{bottom:644.474700px;}
.yb3{bottom:646.494000px;}
.y70{bottom:646.731000px;}
.y17a{bottom:647.701500px;}
.yca{bottom:649.750500px;}
.y4a{bottom:649.987500px;}
.y217{bottom:651.244500px;}
.y154{bottom:654.488100px;}
.yec{bottom:654.983400px;}
.y17b{bottom:657.624300px;}
.y181{bottom:657.625500px;}
.y9f{bottom:658.029000px;}
.y19{bottom:659.968500px;}
.y179{bottom:660.852300px;}
.y110{bottom:663.736500px;}
.y1d5{bottom:664.663500px;}
.yb2{bottom:666.757500px;}
.y6f{bottom:666.994500px;}
.y153{bottom:667.638900px;}
.yeb{bottom:668.134200px;}
.yc9{bottom:670.015500px;}
.y49{bottom:670.252500px;}
.y216{bottom:670.612500px;}
.y178{bottom:674.003100px;}
.y9e{bottom:678.292500px;}
.y152{bottom:680.788500px;}
.yea{bottom:681.285000px;}
.y10f{bottom:684.001500px;}
.y1d4{bottom:684.927000px;}
.yb1{bottom:687.021000px;}
.y6e{bottom:687.258000px;}
.y177{bottom:687.751500px;}
.y215{bottom:689.979000px;}
.y48{bottom:690.516000px;}
.ye9{bottom:694.435800px;}
.y15{bottom:695.400000px;}
.y16{bottom:695.400055px;}
.y151{bottom:697.167300px;}
.y9d{bottom:698.556000px;}
.y176{bottom:701.499900px;}
.y10e{bottom:704.265000px;}
.y1d3{bottom:705.192000px;}
.y6d{bottom:707.523000px;}
.ye8{bottom:707.586600px;}
.y214{bottom:709.347000px;}
.y47{bottom:710.781000px;}
.y150{bottom:710.915700px;}
.yc8{bottom:713.982000px;}
.y175{bottom:714.650700px;}
.y9c{bottom:718.821000px;}
.y10d{bottom:724.530000px;}
.y1d2{bottom:725.455500px;}
.ye7{bottom:726.735000px;}
.y6c{bottom:727.786500px;}
.y213{bottom:728.715000px;}
.yb0{bottom:730.989000px;}
.y46{bottom:731.044500px;}
.y14{bottom:735.166500px;}
.y1f0{bottom:736.753500px;}
.y14d{bottom:737.814900px;}
.y9b{bottom:739.084500px;}
.ye6{bottom:739.885800px;}
.y10c{bottom:744.793500px;}
.y1d1{bottom:745.719000px;}
.y174{bottom:745.767000px;}
.y6b{bottom:748.051500px;}
.y212{bottom:748.081500px;}
.y45{bottom:751.308000px;}
.y14c{bottom:752.160900px;}
.ye5{bottom:753.036600px;}
.y13{bottom:753.322500px;}
.y1bf{bottom:757.017000px;}
.y9a{bottom:759.349500px;}
.y10b{bottom:765.057000px;}
.y1d0{bottom:765.984000px;}
.ye4{bottom:766.187400px;}
.y14b{bottom:766.506900px;}
.y211{bottom:767.449500px;}
.y6a{bottom:768.315000px;}
.y44{bottom:771.573000px;}
.y12{bottom:776.362500px;}
.ye3{bottom:779.338200px;}
.y99{bottom:779.613000px;}
.y14a{bottom:779.657700px;}
.y14f{bottom:780.854100px;}
.y173{bottom:782.871000px;}
.y10a{bottom:785.322000px;}
.y1cf{bottom:786.247500px;}
.y210{bottom:786.816000px;}
.y69{bottom:788.578500px;}
.y11{bottom:789.637500px;}
.y43{bottom:791.836500px;}
.y149{bottom:792.808500px;}
.y14e{bottom:794.004900px;}
.ye2{bottom:798.310200px;}
.y98{bottom:799.876500px;}
.y172{bottom:803.134500px;}
.y20f{bottom:806.184000px;}
.y1ce{bottom:806.512500px;}
.y148{bottom:807.154500px;}
.y68{bottom:808.843500px;}
.y42{bottom:812.101500px;}
.y10{bottom:812.676000px;}
.y109{bottom:814.552500px;}
.y97{bottom:820.141500px;}
.y171{bottom:823.398000px;}
.y147{bottom:823.533300px;}
.y20e{bottom:825.552000px;}
.yf{bottom:825.951000px;}
.y1cd{bottom:826.776000px;}
.y67{bottom:829.107000px;}
.y236{bottom:831.336000px;}
.y41{bottom:832.365000px;}
.ye1{bottom:832.531500px;}
.y1a8{bottom:838.074000px;}
.y96{bottom:840.405000px;}
.y170{bottom:843.663000px;}
.y20d{bottom:844.918500px;}
.y1cc{bottom:847.039500px;}
.ye{bottom:848.989500px;}
.y108{bottom:849.372000px;}
.y145{bottom:850.432500px;}
.y235{bottom:850.702500px;}
.y40{bottom:852.628500px;}
.y66{bottom:858.337500px;}
.yd{bottom:862.264500px;}
.y144{bottom:863.583300px;}
.y16f{bottom:863.926500px;}
.y20c{bottom:864.286500px;}
.y1cb{bottom:867.304500px;}
.y95{bottom:869.635500px;}
.y234{bottom:870.070500px;}
.y3f{bottom:872.893500px;}
.y143{bottom:877.929300px;}
.yc{bottom:880.422000px;}
.y20b{bottom:883.653000px;}
.y16e{bottom:884.191500px;}
.yb{bottom:885.304500px;}
.y1ca{bottom:887.568000px;}
.ye0{bottom:889.899000px;}
.y142{bottom:891.080100px;}
.y3e{bottom:893.157000px;}
.ya{bottom:898.579500px;}
.y20a{bottom:903.021000px;}
.y146{bottom:904.230900px;}
.y94{bottom:904.455000px;}
.y141{bottom:905.426100px;}
.y1c9{bottom:907.833000px;}
.ydf{bottom:910.164000px;}
.y3d{bottom:913.422000px;}
.y140{bottom:918.576900px;}
.y9{bottom:921.618000px;}
.y209{bottom:922.389000px;}
.y93{bottom:924.718500px;}
.y1c8{bottom:928.096500px;}
.yde{bottom:930.427500px;}
.y3c{bottom:933.685500px;}
.y13f{bottom:934.955700px;}
.y208{bottom:941.755500px;}
.y8{bottom:943.860000px;}
.y92{bottom:944.983500px;}
.y1c7{bottom:948.360000px;}
.ydd{bottom:950.692500px;}
.y3b{bottom:953.949000px;}
.y107{bottom:959.658000px;}
.y207{bottom:961.123500px;}
.y13d{bottom:961.854900px;}
.y7{bottom:964.123500px;}
.y91{bottom:965.247000px;}
.y1c6{bottom:968.625000px;}
.yaf{bottom:970.956000px;}
.y3a{bottom:974.214000px;}
.y13c{bottom:975.005700px;}
.y206{bottom:980.490000px;}
.y90{bottom:985.512000px;}
.y13b{bottom:988.156500px;}
.y1c5{bottom:988.888500px;}
.y13e{bottom:989.351700px;}
.yae{bottom:991.219500px;}
.y39{bottom:994.477500px;}
.y205{bottom:999.858000px;}
.y13a{bottom:1002.502500px;}
.y8f{bottom:1005.775500px;}
.y1c4{bottom:1009.153500px;}
.y6{bottom:1010.451000px;}
.yad{bottom:1011.484500px;}
.y38{bottom:1014.742500px;}
.y139{bottom:1015.653300px;}
.y204{bottom:1019.226000px;}
.y8e{bottom:1026.039000px;}
.y1c3{bottom:1029.417000px;}
.yac{bottom:1031.748000px;}
.y138{bottom:1032.032100px;}
.y37{bottom:1035.006000px;}
.y203{bottom:1038.592500px;}
.ydc{bottom:1040.715000px;}
.y5{bottom:1040.848500px;}
.y137{bottom:1045.780500px;}
.y8d{bottom:1046.304000px;}
.y1c2{bottom:1049.680500px;}
.y36{bottom:1055.269500px;}
.y202{bottom:1057.960500px;}
.y136{bottom:1059.528900px;}
.yab{bottom:1060.978500px;}
.y8c{bottom:1066.567500px;}
.y1c1{bottom:1069.945500px;}
.y4{bottom:1071.244500px;}
.y135{bottom:1073.277300px;}
.y35{bottom:1075.534500px;}
.y201{bottom:1077.327000px;}
.y134{bottom:1086.428100px;}
.y8b{bottom:1086.832500px;}
.y34{bottom:1095.798000px;}
.y200{bottom:1096.695000px;}
.y1c0{bottom:1099.176000px;}
.y3{bottom:1100.145000px;}
.y33{bottom:1116.063000px;}
.y133{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y32{bottom:1168.366500px;}
.h16{height:19.911802px;}
.h9{height:25.508090px;}
.h12{height:27.114394px;}
.h10{height:30.987878px;}
.h14{height:32.687908px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.h7{height:36.319550px;}
.h11{height:37.357609px;}
.h18{height:38.734848px;}
.hf{height:39.432893px;}
.he{height:41.508281px;}
.hc{height:43.038432px;}
.h19{height:45.567245px;}
.h8{height:46.697011px;}
.h13{height:50.130394px;}
.h4{height:50.629933px;}
.h2{height:50.931027px;}
.hd{height:51.885221px;}
.h6{height:54.405312px;}
.h15{height:57.287078px;}
.h17{height:57.291878px;}
.h3{height:69.505289px;}
.h5{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:211.537947px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:57.111683px;}
.x37{left:112.561500px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x9c{left:126.748500px;}
.x97{left:129.647850px;}
.xa7{left:133.490400px;}
.x95{left:136.474950px;}
.x9d{left:138.395700px;}
.x8b{left:143.670900px;}
.xc8{left:145.059000px;}
.x4{left:146.170500px;}
.x8f{left:147.372900px;}
.x86{left:149.901300px;}
.xb1{left:154.071000px;}
.x91{left:156.394500px;}
.xa6{left:158.941500px;}
.xb9{left:172.089000px;}
.xba{left:175.768500px;}
.xb2{left:177.408000px;}
.x59{left:178.447500px;}
.x80{left:182.512500px;}
.x85{left:185.874900px;}
.x8{left:189.231000px;}
.x8c{left:191.604900px;}
.x5a{left:193.390500px;}
.xbb{left:194.392500px;}
.x10{left:198.001500px;}
.x9{left:201.411000px;}
.xa8{left:203.610000px;}
.x11{left:205.473000px;}
.x9b{left:207.016500px;}
.x1a{left:209.398500px;}
.x1b{left:213.060000px;}
.x7f{left:214.978500px;}
.xc2{left:216.550500px;}
.x1c{left:220.533000px;}
.xc3{left:221.808000px;}
.xb6{left:223.182000px;}
.xc1{left:224.481000px;}
.x6c{left:226.293000px;}
.xa9{left:228.058800px;}
.x74{left:231.310500px;}
.x94{left:233.359500px;}
.xe{left:235.458000px;}
.x21{left:236.694000px;}
.x67{left:238.669500px;}
.x6d{left:241.236000px;}
.xf{left:242.931000px;}
.x45{left:245.812500px;}
.x7c{left:249.705000px;}
.x22{left:251.638500px;}
.xcd{left:254.101500px;}
.xa4{left:255.547500px;}
.x46{left:260.757000px;}
.x6e{left:263.802000px;}
.x50{left:265.116000px;}
.xbc{left:268.333500px;}
.x81{left:275.332500px;}
.x6f{left:278.745000px;}
.x51{left:280.060500px;}
.xa{left:289.242000px;}
.x87{left:295.047300px;}
.xb{left:296.713500px;}
.x8e{left:297.874500px;}
.x8d{left:299.720100px;}
.x33{left:300.757500px;}
.xb3{left:304.776000px;}
.x63{left:306.334500px;}
.x82{left:309.931500px;}
.x34{left:315.702000px;}
.x83{left:317.403000px;}
.x90{left:319.038900px;}
.x64{left:321.279000px;}
.x88{left:326.177700px;}
.x76{left:331.663500px;}
.x5d{left:340.846500px;}
.xc4{left:344.782500px;}
.x77{left:346.608000px;}
.xbf{left:347.629500px;}
.x73{left:351.505500px;}
.xaa{left:353.418000px;}
.x5e{left:355.791000px;}
.x5f{left:359.463000px;}
.xc0{left:362.574000px;}
.x71{left:366.775500px;}
.x70{left:369.889500px;}
.x60{left:374.407500px;}
.xab{left:377.866800px;}
.x72{left:381.720000px;}
.x69{left:382.953000px;}
.xa3{left:385.678500px;}
.xa0{left:387.977700px;}
.x9f{left:391.310100px;}
.x99{left:393.277650px;}
.x14{left:397.107000px;}
.x96{left:398.206350px;}
.x15{left:404.580000px;}
.x16{left:408.297000px;}
.x25{left:410.230500px;}
.xa2{left:412.426500px;}
.xc{left:414.429000px;}
.x17{left:415.768500px;}
.xd{left:421.902000px;}
.x26{left:425.175000px;}
.x9e{left:426.639300px;}
.xaf{left:429.418500px;}
.x54{left:437.106000px;}
.x43{left:438.361500px;}
.x3a{left:444.948000px;}
.x44{left:449.494500px;}
.xb0{left:451.522500px;}
.x65{left:454.608000px;}
.x3b{left:459.891000px;}
.x2b{left:464.491500px;}
.x66{left:469.552500px;}
.x52{left:472.569000px;}
.x2c{left:475.261500px;}
.x3c{left:478.582500px;}
.x2f{left:482.559000px;}
.x3f{left:486.019500px;}
.x53{left:487.513500px;}
.x30{left:490.030500px;}
.x7a{left:495.772500px;}
.x40{left:500.962500px;}
.x68{left:502.812000px;}
.x41{left:504.774000px;}
.x4d{left:507.759000px;}
.xae{left:509.463600px;}
.x7b{left:510.717000px;}
.x42{left:519.717000px;}
.x35{left:521.869500px;}
.x4e{left:526.363500px;}
.x58{left:528.601500px;}
.xa5{left:535.579500px;}
.x36{left:536.814000px;}
.x4f{left:541.308000px;}
.x9a{left:544.140000px;}
.xcb{left:548.289000px;}
.x6a{left:551.182500px;}
.x92{left:556.225500px;}
.x31{left:557.398500px;}
.x1d{left:561.954000px;}
.x6b{left:566.125500px;}
.x1e{left:569.425500px;}
.x93{left:571.168500px;}
.x32{left:572.343000px;}
.xcc{left:575.188500px;}
.x78{left:585.028500px;}
.x3d{left:586.578000px;}
.x79{left:592.500000px;}
.x57{left:593.515500px;}
.xc5{left:595.693500px;}
.x3e{left:601.522500px;}
.x29{left:619.501500px;}
.x98{left:622.595550px;}
.x2a{left:626.973000px;}
.xac{left:634.796400px;}
.x38{left:638.142000px;}
.xb4{left:639.654000px;}
.x89{left:643.708500px;}
.xb5{left:647.127000px;}
.xa1{left:652.076100px;}
.x39{left:653.086500px;}
.x84{left:654.973500px;}
.xad{left:659.245200px;}
.x2d{left:664.459500px;}
.xbd{left:666.579000px;}
.x18{left:669.876000px;}
.xca{left:671.337000px;}
.x19{left:677.347500px;}
.x2e{left:679.402500px;}
.xbe{left:681.523500px;}
.x47{left:685.186500px;}
.x61{left:686.515500px;}
.x75{left:694.297500px;}
.x62{left:701.460000px;}
.x6{left:702.742573px;}
.x8a{left:712.448100px;}
.x48{left:715.485000px;}
.x12{left:717.601500px;}
.x23{left:720.987000px;}
.x55{left:722.136000px;}
.x27{left:723.606000px;}
.x13{left:725.073000px;}
.xb7{left:726.832500px;}
.xc6{left:729.285000px;}
.x49{left:730.429500px;}
.x4a{left:734.116500px;}
.x24{left:735.931500px;}
.x56{left:737.080500px;}
.x28{left:738.549000px;}
.xb8{left:741.775500px;}
.x4b{left:749.061000px;}
.x4c{left:752.785500px;}
.xc7{left:756.184500px;}
.x1f{left:757.243500px;}
.x7d{left:758.289000px;}
.x5b{left:763.620000px;}
.x5c{left:771.091500px;}
.x20{left:772.188000px;}
.x7e{left:773.233500px;}
.xc9{left:776.463000px;}
@media print{
.v3{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.706667pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:20.458667pt;}
.v5{vertical-align:23.377067pt;}
.ls8{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.004267pt;}
.ls9{letter-spacing:1.133683pt;}
.ls6{letter-spacing:1.654338pt;}
.ls0{letter-spacing:2.657067pt;}
.ls7{letter-spacing:10.626533pt;}
.ls14{letter-spacing:11.869501pt;}
.ls17{letter-spacing:11.886977pt;}
.ls10{letter-spacing:11.954133pt;}
.ls12{letter-spacing:11.959467pt;}
.ls13{letter-spacing:12.025926pt;}
.ls11{letter-spacing:12.169715pt;}
.lsd{letter-spacing:12.752128pt;}
.lsc{letter-spacing:13.230333pt;}
.ls16{letter-spacing:14.978133pt;}
.lsb{letter-spacing:14.983750pt;}
.lsa{letter-spacing:15.674491pt;}
.ls3{letter-spacing:15.942400pt;}
.ls1{letter-spacing:20.363733pt;}
.ls2{letter-spacing:20.369067pt;}
.lse{letter-spacing:58.622667pt;}
.ls4{letter-spacing:62.432533pt;}
.ls5{letter-spacing:64.314231pt;}
.lsf{letter-spacing:66.997333pt;}
.wsad{word-spacing:-13.283467pt;}
.wse0{word-spacing:-11.955200pt;}
.ws1e{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws99{word-spacing:-9.564160pt;}
.ws87{word-spacing:-8.368640pt;}
.ws58{word-spacing:-3.134898pt;}
.ws68{word-spacing:-2.816095pt;}
.wsb0{word-spacing:-2.762961pt;}
.ws55{word-spacing:-2.656693pt;}
.ws10d{word-spacing:-2.582323pt;}
.ws66{word-spacing:-2.444158pt;}
.wse5{word-spacing:-2.391040pt;}
.ws57{word-spacing:-2.391024pt;}
.wscd{word-spacing:-2.337890pt;}
.ws9b{word-spacing:-2.142372pt;}
.wsc8{word-spacing:-2.125355pt;}
.ws2e{word-spacing:-2.072221pt;}
.ws4e{word-spacing:-2.019087pt;}
.ws61{word-spacing:-1.965953pt;}
.ws9c{word-spacing:-1.951089pt;}
.ws7b{word-spacing:-1.912819pt;}
.ws88{word-spacing:-1.874575pt;}
.wsdd{word-spacing:-1.865011pt;}
.ws94{word-spacing:-1.859685pt;}
.ws4d{word-spacing:-1.753418pt;}
.ws8{word-spacing:-1.696326pt;}
.wsb6{word-spacing:-1.647150pt;}
.wsce{word-spacing:-1.594016pt;}
.wsd8{word-spacing:-1.578086pt;}
.ws51{word-spacing:-1.540882pt;}
.wsd0{word-spacing:-1.482445pt;}
.ws2f{word-spacing:-1.434614pt;}
.ws93{word-spacing:-1.381481pt;}
.ws70{word-spacing:-1.328347pt;}
.ws4a{word-spacing:-1.275213pt;}
.ws8d{word-spacing:-1.222079pt;}
.ws7{word-spacing:-1.175671pt;}
.ws13{word-spacing:-1.115811pt;}
.ws6c{word-spacing:-1.062677pt;}
.ws16{word-spacing:-1.009543pt;}
.ws28{word-spacing:-0.956410pt;}
.ws27{word-spacing:-0.903276pt;}
.ws95{word-spacing:-0.850142pt;}
.wsfe{word-spacing:-0.765133pt;}
.wsbd{word-spacing:-0.743874pt;}
.ws116{word-spacing:-0.717312pt;}
.wsb2{word-spacing:-0.690740pt;}
.ws1f{word-spacing:-0.637606pt;}
.ws6d{word-spacing:-0.584473pt;}
.ws12{word-spacing:-0.531339pt;}
.wsc6{word-spacing:-0.478205pt;}
.ws30{word-spacing:-0.425071pt;}
.ws3c{word-spacing:-0.371937pt;}
.ws7c{word-spacing:-0.318803pt;}
.ws11a{word-spacing:-0.286925pt;}
.ws24{word-spacing:-0.265669pt;}
.wse2{word-spacing:-0.239104pt;}
.wse6{word-spacing:-0.213139pt;}
.ws1a{word-spacing:-0.212535pt;}
.wsd1{word-spacing:-0.191283pt;}
.ws23{word-spacing:-0.159402pt;}
.wsd6{word-spacing:-0.143462pt;}
.ws4{word-spacing:-0.130827pt;}
.ws5{word-spacing:-0.129531pt;}
.ws1{word-spacing:-0.106268pt;}
.wsd2{word-spacing:-0.095642pt;}
.ws31{word-spacing:-0.053134pt;}
.wsd5{word-spacing:-0.047821pt;}
.ws10f{word-spacing:-0.009540pt;}
.ws11b{word-spacing:-0.008269pt;}
.wse1{word-spacing:-0.005129pt;}
.wsdf{word-spacing:-0.003081pt;}
.ws1d{word-spacing:-0.002739pt;}
.ws111{word-spacing:-0.002193pt;}
.ws0{word-spacing:0.000000pt;}
.wsf9{word-spacing:0.001280pt;}
.wse7{word-spacing:0.047821pt;}
.ws18{word-spacing:0.053134pt;}
.wsab{word-spacing:0.076513pt;}
.wsde{word-spacing:0.095642pt;}
.ws89{word-spacing:0.100424pt;}
.ws21{word-spacing:0.106268pt;}
.ws79{word-spacing:0.114770pt;}
.wsf2{word-spacing:0.143462pt;}
.ws78{word-spacing:0.153027pt;}
.wsf{word-spacing:0.159402pt;}
.ws9a{word-spacing:0.191283pt;}
.ws2c{word-spacing:0.212535pt;}
.ws6{word-spacing:0.239104pt;}
.ws17{word-spacing:0.265669pt;}
.wsf8{word-spacing:0.286925pt;}
.ws44{word-spacing:0.318803pt;}
.ws112{word-spacing:0.334746pt;}
.ws11{word-spacing:0.371937pt;}
.ws1c{word-spacing:0.425071pt;}
.wsb5{word-spacing:0.478205pt;}
.wsd9{word-spacing:0.478208pt;}
.wsda{word-spacing:0.526029pt;}
.ws2d{word-spacing:0.531339pt;}
.ws45{word-spacing:0.584473pt;}
.ws50{word-spacing:0.637606pt;}
.ws69{word-spacing:0.690740pt;}
.ws5d{word-spacing:0.743874pt;}
.ws22{word-spacing:0.797008pt;}
.ws74{word-spacing:0.850142pt;}
.ws106{word-spacing:0.860774pt;}
.ws96{word-spacing:0.903276pt;}
.ws5e{word-spacing:0.956410pt;}
.wsdb{word-spacing:0.956416pt;}
.wsdc{word-spacing:1.004237pt;}
.ws15{word-spacing:1.009543pt;}
.ws38{word-spacing:1.062677pt;}
.wsc7{word-spacing:1.168945pt;}
.ws43{word-spacing:1.222079pt;}
.ws9{word-spacing:1.275213pt;}
.ws54{word-spacing:1.328347pt;}
.ws5f{word-spacing:1.381481pt;}
.ws104{word-spacing:1.386803pt;}
.ws35{word-spacing:1.434614pt;}
.wsd4{word-spacing:1.482445pt;}
.ws42{word-spacing:1.487748pt;}
.ws84{word-spacing:1.540882pt;}
.ws4f{word-spacing:1.594016pt;}
.wsd{word-spacing:1.647150pt;}
.wsae{word-spacing:1.700284pt;}
.wsf3{word-spacing:1.721549pt;}
.ws3f{word-spacing:1.753418pt;}
.wse4{word-spacing:1.769370pt;}
.ws25{word-spacing:1.806551pt;}
.wse3{word-spacing:1.817190pt;}
.ws37{word-spacing:1.859685pt;}
.ws41{word-spacing:1.912819pt;}
.ws92{word-spacing:1.965953pt;}
.wsa1{word-spacing:2.019087pt;}
.ws47{word-spacing:2.072221pt;}
.ws40{word-spacing:2.125355pt;}
.ws65{word-spacing:2.178489pt;}
.ws105{word-spacing:2.199757pt;}
.wsa7{word-spacing:2.231622pt;}
.ws48{word-spacing:2.284756pt;}
.ws77{word-spacing:2.295398pt;}
.ws1b{word-spacing:2.337890pt;}
.ws117{word-spacing:2.343219pt;}
.ws3e{word-spacing:2.391024pt;}
.ws33{word-spacing:2.444158pt;}
.wsbc{word-spacing:2.497292pt;}
.ws91{word-spacing:2.550426pt;}
.wsc4{word-spacing:2.603559pt;}
.wsaf{word-spacing:2.656693pt;}
.ws115{word-spacing:2.725786pt;}
.ws2a{word-spacing:2.762961pt;}
.ws113{word-spacing:2.773606pt;}
.ws29{word-spacing:2.816095pt;}
.ws102{word-spacing:2.821427pt;}
.ws103{word-spacing:2.863650pt;}
.ws10c{word-spacing:2.865408pt;}
.wsff{word-spacing:2.865877pt;}
.ws101{word-spacing:2.867226pt;}
.wse8{word-spacing:2.869001pt;}
.ws10e{word-spacing:2.869197pt;}
.ws5b{word-spacing:2.869229pt;}
.wsd7{word-spacing:2.869248pt;}
.ws100{word-spacing:2.870033pt;}
.wsee{word-spacing:2.870195pt;}
.ws119{word-spacing:2.870426pt;}
.wsc{word-spacing:2.922363pt;}
.ws46{word-spacing:2.975497pt;}
.ws107{word-spacing:3.012710pt;}
.ws2b{word-spacing:3.028630pt;}
.ws118{word-spacing:3.060531pt;}
.ws7f{word-spacing:3.081764pt;}
.ws8f{word-spacing:3.134898pt;}
.ws19{word-spacing:3.188032pt;}
.ws8b{word-spacing:3.241166pt;}
.ws26{word-spacing:3.347434pt;}
.ws52{word-spacing:3.400567pt;}
.ws34{word-spacing:3.453701pt;}
.ws114{word-spacing:3.586560pt;}
.ws6b{word-spacing:3.613103pt;}
.wsc0{word-spacing:3.666237pt;}
.ws6f{word-spacing:3.719371pt;}
.ws10{word-spacing:3.772505pt;}
.ws80{word-spacing:3.825638pt;}
.wse{word-spacing:3.878772pt;}
.wsa2{word-spacing:3.931906pt;}
.ws108{word-spacing:3.969126pt;}
.wsa{word-spacing:3.985040pt;}
.ws109{word-spacing:4.016947pt;}
.ws59{word-spacing:4.038174pt;}
.ws67{word-spacing:4.091308pt;}
.wsa0{word-spacing:4.144442pt;}
.ws8c{word-spacing:4.197575pt;}
.ws4c{word-spacing:4.250709pt;}
.ws4b{word-spacing:4.303843pt;}
.wsb7{word-spacing:4.410111pt;}
.wsbf{word-spacing:4.463245pt;}
.ws81{word-spacing:4.516379pt;}
.ws9d{word-spacing:4.569513pt;}
.wsef{word-spacing:4.590797pt;}
.wsbe{word-spacing:4.675780pt;}
.ws60{word-spacing:4.782048pt;}
.ws73{word-spacing:4.835182pt;}
.wsa8{word-spacing:4.888316pt;}
.ws20{word-spacing:4.941450pt;}
.wsf4{word-spacing:4.973363pt;}
.ws32{word-spacing:4.994583pt;}
.wsa6{word-spacing:5.047717pt;}
.ws53{word-spacing:5.100851pt;}
.ws49{word-spacing:5.207119pt;}
.wsed{word-spacing:5.212467pt;}
.wsba{word-spacing:5.260253pt;}
.wsec{word-spacing:5.260288pt;}
.ws64{word-spacing:5.419654pt;}
.ws6a{word-spacing:5.579056pt;}
.ws39{word-spacing:5.632190pt;}
.wsa3{word-spacing:5.685324pt;}
.wscf{word-spacing:5.738458pt;}
.wsc1{word-spacing:5.791591pt;}
.ws76{word-spacing:5.844725pt;}
.ws90{word-spacing:5.897859pt;}
.wsb4{word-spacing:5.950993pt;}
.wsa5{word-spacing:6.216662pt;}
.ws110{word-spacing:6.444111pt;}
.ws10a{word-spacing:6.454568pt;}
.wsd3{word-spacing:6.455808pt;}
.ws8e{word-spacing:6.482332pt;}
.wsfc{word-spacing:6.599270pt;}
.ws62{word-spacing:6.641733pt;}
.ws14{word-spacing:6.748001pt;}
.ws56{word-spacing:6.960537pt;}
.wsbb{word-spacing:7.066804pt;}
.ws75{word-spacing:7.119938pt;}
.ws3a{word-spacing:7.173072pt;}
.ws72{word-spacing:7.226206pt;}
.ws7d{word-spacing:7.279340pt;}
.wsca{word-spacing:7.332474pt;}
.wsb{word-spacing:7.438741pt;}
.ws36{word-spacing:7.598143pt;}
.ws83{word-spacing:7.651277pt;}
.wsc3{word-spacing:7.916946pt;}
.wsf1{word-spacing:7.938253pt;}
.wsf0{word-spacing:7.962360pt;}
.ws5a{word-spacing:8.023214pt;}
.wsac{word-spacing:8.554553pt;}
.ws3d{word-spacing:8.820222pt;}
.wsb9{word-spacing:8.926490pt;}
.ws8a{word-spacing:9.085891pt;}
.wsc5{word-spacing:9.723498pt;}
.wsfd{word-spacing:9.755443pt;}
.wsc2{word-spacing:9.776631pt;}
.ws10b{word-spacing:9.803264pt;}
.ws5c{word-spacing:9.882899pt;}
.ws7a{word-spacing:10.201702pt;}
.wscc{word-spacing:10.467372pt;}
.ws3b{word-spacing:10.573639pt;}
.wsb3{word-spacing:10.626773pt;}
.ws9e{word-spacing:10.786175pt;}
.ws7e{word-spacing:10.945577pt;}
.wsb8{word-spacing:11.051844pt;}
.wscb{word-spacing:11.158112pt;}
.ws71{word-spacing:11.476915pt;}
.wsc9{word-spacing:11.742585pt;}
.wseb{word-spacing:11.811738pt;}
.wse9{word-spacing:11.844001pt;}
.wsea{word-spacing:11.859558pt;}
.wsf5{word-spacing:12.050842pt;}
.wsf6{word-spacing:13.342003pt;}
.ws9f{word-spacing:13.389734pt;}
.wsf7{word-spacing:13.389824pt;}
.ws63{word-spacing:13.496002pt;}
.ws3{word-spacing:13.804505pt;}
.wsb1{word-spacing:14.239876pt;}
.ws6e{word-spacing:14.505546pt;}
.wsa4{word-spacing:14.664947pt;}
.ws82{word-spacing:18.065515pt;}
.wsfa{word-spacing:20.658586pt;}
.wsfb{word-spacing:20.706406pt;}
.ws11c{word-spacing:23.097446pt;}
.ws97{word-spacing:96.032270pt;}
.wsa9{word-spacing:119.612696pt;}
.ws85{word-spacing:124.348236pt;}
.ws98{word-spacing:270.780498pt;}
.ws86{word-spacing:287.613420pt;}
.wsaa{word-spacing:332.220662pt;}
._16{margin-left:-6.461067pt;}
._4{margin-left:-5.308109pt;}
._3{margin-left:-4.399514pt;}
._6{margin-left:-2.630144pt;}
._1{margin-left:-1.721549pt;}
._8{width:0.969929pt;}
._2{width:2.673013pt;}
._19{width:3.931906pt;}
._34{width:10.329293pt;}
._21{width:11.859558pt;}
._30{width:12.900926pt;}
._7{width:13.963674pt;}
._5{width:15.685222pt;}
._a{width:17.311037pt;}
._d{width:18.224916pt;}
._10{width:19.446995pt;}
._12{width:20.828476pt;}
._b{width:22.156822pt;}
._13{width:23.506434pt;}
._17{width:25.366119pt;}
._11{width:26.992004pt;}
._1c{width:28.586020pt;}
._0{width:29.648896pt;}
._1b{width:30.838908pt;}
._18{width:32.464793pt;}
._2d{width:34.005675pt;}
._c{width:36.396699pt;}
._14{width:38.522053pt;}
._9{width:39.924799pt;}
._33{width:42.177946pt;}
._15{width:43.410369pt;}
._31{width:44.621844pt;}
._1a{width:46.168046pt;}
._20{width:50.498765pt;}
._1d{width:52.251856pt;}
._32{width:54.993920pt;}
._2c{width:56.927636pt;}
._35{width:61.401907pt;}
._22{width:71.358783pt;}
._29{width:77.559009pt;}
._27{width:86.383261pt;}
._23{width:115.901620pt;}
._2e{width:127.415733pt;}
._2b{width:154.760909pt;}
._25{width:185.594089pt;}
._2a{width:255.509340pt;}
._24{width:312.518492pt;}
._28{width:322.924298pt;}
._2f{width:353.644380pt;}
._1f{width:542.287872pt;}
._e{width:637.776429pt;}
._1e{width:718.000620pt;}
._26{width:1708.621067pt;}
._f{width:1729.874400pt;}
.fs4{font-size:26.566933pt;}
.fsb{font-size:33.474560pt;}
.fsc{font-size:34.880533pt;}
.fs5{font-size:37.193600pt;}
.fs8{font-size:37.276537pt;}
.fsa{font-size:38.256640pt;}
.fsd{font-size:39.863467pt;}
.fs3{font-size:40.381867pt;}
.fs7{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:91.124601pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:3.044747pt;}
.y17{bottom:12.578910pt;}
.y2{bottom:16.528366pt;}
.y31{bottom:56.693333pt;}
.y131{bottom:96.544000pt;}
.y233{bottom:96.850667pt;}
.y16d{bottom:97.636000pt;}
.ydb{bottom:97.702667pt;}
.y30{bottom:98.533333pt;}
.y1be{bottom:103.650667pt;}
.y8a{bottom:106.545333pt;}
.y65{bottom:109.441333pt;}
.yc7{bottom:111.757333pt;}
.y232{bottom:114.066667pt;}
.y130{bottom:114.556000pt;}
.y1ff{bottom:115.061333pt;}
.y1a7{bottom:115.569333pt;}
.y16c{bottom:115.649333pt;}
.yda{bottom:115.714667pt;}
.y2f{bottom:116.546667pt;}
.yaa{bottom:118.098667pt;}
.y1bd{bottom:121.662667pt;}
.y1ef{bottom:122.486667pt;}
.y89{bottom:124.558667pt;}
.y106{bottom:125.773333pt;}
.y64{bottom:127.454667pt;}
.y231{bottom:131.281333pt;}
.y1fe{bottom:132.276000pt;}
.y12f{bottom:132.568000pt;}
.y1a6{bottom:133.582667pt;}
.y16b{bottom:133.661333pt;}
.yd9{bottom:133.728000pt;}
.y2e{bottom:134.558667pt;}
.ya9{bottom:136.110667pt;}
.y1bc{bottom:139.674667pt;}
.y1ee{bottom:140.498667pt;}
.y88{bottom:142.570667pt;}
.y105{bottom:143.785333pt;}
.y63{bottom:145.466667pt;}
.y230{bottom:148.497333pt;}
.y1fd{bottom:149.492000pt;}
.y1a5{bottom:151.594667pt;}
.y16a{bottom:151.674667pt;}
.yd8{bottom:151.740000pt;}
.y2d{bottom:152.572000pt;}
.ya8{bottom:154.122667pt;}
.y1bb{bottom:157.688000pt;}
.y1ed{bottom:158.510667pt;}
.y87{bottom:160.584000pt;}
.y104{bottom:161.797333pt;}
.y62{bottom:163.478667pt;}
.y22f{bottom:165.713333pt;}
.y1fc{bottom:166.708000pt;}
.y1a4{bottom:169.606667pt;}
.y169{bottom:169.686667pt;}
.yd7{bottom:169.752000pt;}
.ya7{bottom:172.136000pt;}
.y1ba{bottom:175.700000pt;}
.y1ec{bottom:176.524000pt;}
.y2c{bottom:178.554667pt;}
.y86{bottom:178.596000pt;}
.y103{bottom:179.810667pt;}
.y12e{bottom:180.247200pt;}
.y61{bottom:181.492000pt;}
.y22e{bottom:182.928000pt;}
.y1fb{bottom:183.922667pt;}
.y132{bottom:186.566667pt;}
.y1a3{bottom:187.620000pt;}
.y168{bottom:187.698667pt;}
.yd6{bottom:187.765333pt;}
.ya6{bottom:190.148000pt;}
.y12d{bottom:190.475600pt;}
.y1b9{bottom:193.713333pt;}
.y1eb{bottom:194.536000pt;}
.y85{bottom:196.608000pt;}
.y102{bottom:197.822667pt;}
.y60{bottom:199.504000pt;}
.y22d{bottom:200.144000pt;}
.y12c{bottom:200.704000pt;}
.y1a2{bottom:205.632000pt;}
.y167{bottom:205.712000pt;}
.yd5{bottom:205.777333pt;}
.y1fa{bottom:209.108000pt;}
.y12b{bottom:210.932400pt;}
.y1b8{bottom:211.725333pt;}
.y1ea{bottom:212.548000pt;}
.y84{bottom:214.621333pt;}
.y101{bottom:215.836000pt;}
.y22c{bottom:217.358667pt;}
.y5f{bottom:217.517333pt;}
.y1a1{bottom:223.645333pt;}
.y12a{bottom:223.671467pt;}
.y166{bottom:223.724000pt;}
.yd4{bottom:223.790667pt;}
.ya5{bottom:229.229333pt;}
.y1b7{bottom:229.737333pt;}
.y1e9{bottom:230.561333pt;}
.yc6{bottom:232.422667pt;}
.y83{bottom:232.633333pt;}
.y100{bottom:233.848000pt;}
.y22b{bottom:234.574667pt;}
.y5e{bottom:235.529333pt;}
.y1a0{bottom:241.657333pt;}
.y165{bottom:241.737333pt;}
.yd3{bottom:241.802667pt;}
.y1f9{bottom:244.177333pt;}
.y129{bottom:245.057867pt;}
.y2b{bottom:246.472000pt;}
.y1b6{bottom:247.750667pt;}
.y1e8{bottom:248.573333pt;}
.yc5{bottom:250.434667pt;}
.y82{bottom:250.646667pt;}
.y22a{bottom:251.790667pt;}
.yff{bottom:251.860000pt;}
.y5d{bottom:253.541333pt;}
.y128{bottom:255.286267pt;}
.y1f8{bottom:257.686667pt;}
.y19f{bottom:259.669333pt;}
.y164{bottom:259.749333pt;}
.yd2{bottom:259.814667pt;}
.y2a{bottom:264.485333pt;}
.y127{bottom:265.514667pt;}
.y1b5{bottom:265.762667pt;}
.y1e7{bottom:266.586667pt;}
.yc4{bottom:268.448000pt;}
.y81{bottom:268.658667pt;}
.y229{bottom:269.005333pt;}
.y5c{bottom:269.128000pt;}
.yfe{bottom:269.873333pt;}
.y1f7{bottom:271.196000pt;}
.y5b{bottom:271.554667pt;}
.y19e{bottom:277.682667pt;}
.y163{bottom:277.761333pt;}
.y126{bottom:278.253733pt;}
.y1b4{bottom:283.776000pt;}
.y1e6{bottom:284.598667pt;}
.y228{bottom:286.221333pt;}
.yc3{bottom:286.460000pt;}
.y80{bottom:286.670667pt;}
.yfd{bottom:287.885333pt;}
.y125{bottom:288.946933pt;}
.y5a{bottom:289.566667pt;}
.y1f6{bottom:292.674667pt;}
.y19d{bottom:295.694667pt;}
.y162{bottom:295.774667pt;}
.y29{bottom:298.437333pt;}
.yd1{bottom:298.897333pt;}
.y1b3{bottom:301.788000pt;}
.y1e5{bottom:302.610667pt;}
.y227{bottom:303.437333pt;}
.yc2{bottom:304.473333pt;}
.y7f{bottom:304.684000pt;}
.yfc{bottom:305.898667pt;}
.y1f5{bottom:306.185333pt;}
.y59{bottom:307.580000pt;}
.y124{bottom:310.333333pt;}
.y19c{bottom:313.708000pt;}
.y161{bottom:313.786667pt;}
.y28{bottom:316.450667pt;}
.y1f4{bottom:319.694667pt;}
.y1b2{bottom:319.800000pt;}
.y123{bottom:320.561733pt;}
.y1e4{bottom:320.624000pt;}
.y226{bottom:320.652000pt;}
.yc1{bottom:322.485333pt;}
.y7e{bottom:322.696000pt;}
.yfb{bottom:323.910667pt;}
.y58{bottom:325.592000pt;}
.y19b{bottom:331.720000pt;}
.y160{bottom:331.800000pt;}
.y122{bottom:333.299867pt;}
.y27{bottom:334.462667pt;}
.y1b1{bottom:337.813333pt;}
.y225{bottom:337.868000pt;}
.y1e3{bottom:338.636000pt;}
.yc0{bottom:340.497333pt;}
.y7d{bottom:340.709333pt;}
.y1f3{bottom:341.173333pt;}
.yfa{bottom:341.922667pt;}
.y57{bottom:343.604000pt;}
.y19a{bottom:349.732000pt;}
.y15f{bottom:349.812000pt;}
.y26{bottom:352.476000pt;}
.y1f2{bottom:354.682667pt;}
.y121{bottom:354.686267pt;}
.y224{bottom:355.082667pt;}
.y1b0{bottom:355.825333pt;}
.y1e2{bottom:356.649333pt;}
.ybf{bottom:358.510667pt;}
.y7c{bottom:358.721333pt;}
.yf9{bottom:359.936000pt;}
.y56{bottom:361.617333pt;}
.y120{bottom:364.914667pt;}
.y15e{bottom:367.824000pt;}
.y1f1{bottom:368.192000pt;}
.y25{bottom:370.488000pt;}
.y223{bottom:372.298667pt;}
.y1af{bottom:373.838667pt;}
.y1e1{bottom:374.661333pt;}
.ybe{bottom:376.522667pt;}
.y7b{bottom:376.733333pt;}
.y11f{bottom:377.653733pt;}
.yf8{bottom:377.948000pt;}
.y55{bottom:379.629333pt;}
.y15d{bottom:385.837333pt;}
.y24{bottom:388.500000pt;}
.y222{bottom:389.514667pt;}
.y1ae{bottom:391.850667pt;}
.y1e0{bottom:392.673333pt;}
.ybd{bottom:394.536000pt;}
.y7a{bottom:394.746667pt;}
.yf7{bottom:395.961333pt;}
.y54{bottom:397.642667pt;}
.y11e{bottom:399.040133pt;}
.y199{bottom:401.561867pt;}
.y15c{bottom:403.849333pt;}
.y23{bottom:406.513333pt;}
.y221{bottom:406.729333pt;}
.y11d{bottom:409.268533pt;}
.y1ad{bottom:409.862667pt;}
.y1df{bottom:410.686667pt;}
.ybc{bottom:412.548000pt;}
.y79{bottom:412.758667pt;}
.y198{bottom:413.251467pt;}
.yf6{bottom:413.973333pt;}
.y53{bottom:415.654667pt;}
.y11c{bottom:419.496933pt;}
.y15b{bottom:421.862667pt;}
.y220{bottom:423.945333pt;}
.y22{bottom:424.525333pt;}
.y196{bottom:424.941067pt;}
.y192{bottom:426.003467pt;}
.y1ac{bottom:427.876000pt;}
.y1de{bottom:428.698667pt;}
.y11b{bottom:429.725333pt;}
.ybb{bottom:430.560000pt;}
.y11a{bottom:430.654933pt;}
.y78{bottom:430.772000pt;}
.yf5{bottom:431.985333pt;}
.y52{bottom:433.666667pt;}
.y195{bottom:436.630667pt;}
.y191{bottom:437.693067pt;}
.y15a{bottom:439.874667pt;}
.y119{bottom:440.883333pt;}
.y21f{bottom:441.160000pt;}
.y21{bottom:442.538667pt;}
.y1ab{bottom:445.888000pt;}
.y1dd{bottom:446.712000pt;}
.y194{bottom:448.319200pt;}
.y197{bottom:448.320267pt;}
.yba{bottom:448.573333pt;}
.y77{bottom:448.784000pt;}
.y190{bottom:449.382667pt;}
.yf4{bottom:449.998667pt;}
.y51{bottom:451.680000pt;}
.y118{bottom:453.622400pt;}
.y159{bottom:457.886667pt;}
.y21e{bottom:458.376000pt;}
.y193{bottom:460.008800pt;}
.y20{bottom:460.550667pt;}
.y18f{bottom:461.072267pt;}
.y1aa{bottom:463.901333pt;}
.y1dc{bottom:464.724000pt;}
.y117{bottom:464.780400pt;}
.yb9{bottom:466.585333pt;}
.y76{bottom:466.796000pt;}
.yd0{bottom:469.481333pt;}
.y50{bottom:469.692000pt;}
.y18e{bottom:472.761867pt;}
.y116{bottom:475.473600pt;}
.y21d{bottom:475.592000pt;}
.y18c{bottom:475.630133pt;}
.y158{bottom:475.900000pt;}
.y1f{bottom:478.562667pt;}
.y1db{bottom:482.736000pt;}
.y18d{bottom:484.450400pt;}
.yb8{bottom:484.598667pt;}
.y75{bottom:484.809333pt;}
.y115{bottom:486.166800pt;}
.y18b{bottom:487.319733pt;}
.ycf{bottom:487.493333pt;}
.y4f{bottom:487.704000pt;}
.y1a9{bottom:489.884000pt;}
.yf3{bottom:490.138133pt;}
.y21c{bottom:492.806667pt;}
.y157{bottom:493.912000pt;}
.ya4{bottom:494.852000pt;}
.y114{bottom:496.395200pt;}
.y1e{bottom:496.576000pt;}
.y18a{bottom:499.009333pt;}
.y1da{bottom:500.749333pt;}
.yf2{bottom:501.827733pt;}
.yb7{bottom:502.610667pt;}
.y74{bottom:502.821333pt;}
.yce{bottom:505.506667pt;}
.y4e{bottom:505.717333pt;}
.y21b{bottom:510.022667pt;}
.y156{bottom:511.925333pt;}
.ya3{bottom:512.864000pt;}
.yf1{bottom:513.517333pt;}
.y1d{bottom:514.588000pt;}
.y1d9{bottom:518.761333pt;}
.yb6{bottom:520.622667pt;}
.y73{bottom:520.834667pt;}
.y113{bottom:522.896000pt;}
.y186{bottom:522.919733pt;}
.ycd{bottom:523.518667pt;}
.y4d{bottom:523.729333pt;}
.y189{bottom:525.045600pt;}
.y180{bottom:526.108000pt;}
.y21a{bottom:527.237333pt;}
.y155{bottom:529.937333pt;}
.yf0{bottom:530.328000pt;}
.ya2{bottom:530.876000pt;}
.y1c{bottom:532.601333pt;}
.y185{bottom:535.671733pt;}
.y188{bottom:536.735200pt;}
.y1d8{bottom:536.774667pt;}
.y17f{bottom:537.797600pt;}
.yb5{bottom:538.636000pt;}
.y72{bottom:538.846667pt;}
.ycc{bottom:541.532000pt;}
.y4c{bottom:541.742667pt;}
.yef{bottom:542.017600pt;}
.y219{bottom:544.453333pt;}
.y184{bottom:547.361333pt;}
.y187{bottom:548.424800pt;}
.ya1{bottom:548.889333pt;}
.y17e{bottom:549.487200pt;}
.y1b{bottom:550.613333pt;}
.yee{bottom:553.707200pt;}
.y112{bottom:553.964000pt;}
.y1d7{bottom:554.786667pt;}
.yb4{bottom:556.648000pt;}
.y71{bottom:556.858667pt;}
.ycb{bottom:559.544000pt;}
.y4b{bottom:559.754667pt;}
.y183{bottom:560.113333pt;}
.y17d{bottom:561.176800pt;}
.y218{bottom:561.669333pt;}
.ya0{bottom:566.901333pt;}
.y1a{bottom:568.625333pt;}
.yed{bottom:570.517867pt;}
.y182{bottom:571.802933pt;}
.y111{bottom:571.976000pt;}
.y1d6{bottom:572.798667pt;}
.y17c{bottom:572.866400pt;}
.yb3{bottom:574.661333pt;}
.y70{bottom:574.872000pt;}
.y17a{bottom:575.734667pt;}
.yca{bottom:577.556000pt;}
.y4a{bottom:577.766667pt;}
.y217{bottom:578.884000pt;}
.y154{bottom:581.767200pt;}
.yec{bottom:582.207467pt;}
.y17b{bottom:584.554933pt;}
.y181{bottom:584.556000pt;}
.y9f{bottom:584.914667pt;}
.y19{bottom:586.638667pt;}
.y179{bottom:587.424267pt;}
.y110{bottom:589.988000pt;}
.y1d5{bottom:590.812000pt;}
.yb2{bottom:592.673333pt;}
.y6f{bottom:592.884000pt;}
.y153{bottom:593.456800pt;}
.yeb{bottom:593.897067pt;}
.yc9{bottom:595.569333pt;}
.y49{bottom:595.780000pt;}
.y216{bottom:596.100000pt;}
.y178{bottom:599.113867pt;}
.y9e{bottom:602.926667pt;}
.y152{bottom:605.145333pt;}
.yea{bottom:605.586667pt;}
.y10f{bottom:608.001333pt;}
.y1d4{bottom:608.824000pt;}
.yb1{bottom:610.685333pt;}
.y6e{bottom:610.896000pt;}
.y177{bottom:611.334667pt;}
.y215{bottom:613.314667pt;}
.y48{bottom:613.792000pt;}
.ye9{bottom:617.276267pt;}
.y15{bottom:618.133333pt;}
.y16{bottom:618.133382pt;}
.y151{bottom:619.704267pt;}
.y9d{bottom:620.938667pt;}
.y176{bottom:623.555467pt;}
.y10e{bottom:626.013333pt;}
.y1d3{bottom:626.837333pt;}
.y6d{bottom:628.909333pt;}
.ye8{bottom:628.965867pt;}
.y214{bottom:630.530667pt;}
.y47{bottom:631.805333pt;}
.y150{bottom:631.925067pt;}
.yc8{bottom:634.650667pt;}
.y175{bottom:635.245067pt;}
.y9c{bottom:638.952000pt;}
.y10d{bottom:644.026667pt;}
.y1d2{bottom:644.849333pt;}
.ye7{bottom:645.986667pt;}
.y6c{bottom:646.921333pt;}
.y213{bottom:647.746667pt;}
.yb0{bottom:649.768000pt;}
.y46{bottom:649.817333pt;}
.y14{bottom:653.481333pt;}
.y1f0{bottom:654.892000pt;}
.y14d{bottom:655.835467pt;}
.y9b{bottom:656.964000pt;}
.ye6{bottom:657.676267pt;}
.y10c{bottom:662.038667pt;}
.y1d1{bottom:662.861333pt;}
.y174{bottom:662.904000pt;}
.y6b{bottom:664.934667pt;}
.y212{bottom:664.961333pt;}
.y45{bottom:667.829333pt;}
.y14c{bottom:668.587467pt;}
.ye5{bottom:669.365867pt;}
.y13{bottom:669.620000pt;}
.y1bf{bottom:672.904000pt;}
.y9a{bottom:674.977333pt;}
.y10b{bottom:680.050667pt;}
.y1d0{bottom:680.874667pt;}
.ye4{bottom:681.055467pt;}
.y14b{bottom:681.339467pt;}
.y211{bottom:682.177333pt;}
.y6a{bottom:682.946667pt;}
.y44{bottom:685.842667pt;}
.y12{bottom:690.100000pt;}
.ye3{bottom:692.745067pt;}
.y99{bottom:692.989333pt;}
.y14a{bottom:693.029067pt;}
.y14f{bottom:694.092533pt;}
.y173{bottom:695.885333pt;}
.y10a{bottom:698.064000pt;}
.y1cf{bottom:698.886667pt;}
.y210{bottom:699.392000pt;}
.y69{bottom:700.958667pt;}
.y11{bottom:701.900000pt;}
.y43{bottom:703.854667pt;}
.y149{bottom:704.718667pt;}
.y14e{bottom:705.782133pt;}
.ye2{bottom:709.609067pt;}
.y98{bottom:711.001333pt;}
.y172{bottom:713.897333pt;}
.y20f{bottom:716.608000pt;}
.y1ce{bottom:716.900000pt;}
.y148{bottom:717.470667pt;}
.y68{bottom:718.972000pt;}
.y42{bottom:721.868000pt;}
.y10{bottom:722.378667pt;}
.y109{bottom:724.046667pt;}
.y97{bottom:729.014667pt;}
.y171{bottom:731.909333pt;}
.y147{bottom:732.029600pt;}
.y20e{bottom:733.824000pt;}
.yf{bottom:734.178667pt;}
.y1cd{bottom:734.912000pt;}
.y67{bottom:736.984000pt;}
.y236{bottom:738.965333pt;}
.y41{bottom:739.880000pt;}
.ye1{bottom:740.028000pt;}
.y1a8{bottom:744.954667pt;}
.y96{bottom:747.026667pt;}
.y170{bottom:749.922667pt;}
.y20d{bottom:751.038667pt;}
.y1cc{bottom:752.924000pt;}
.ye{bottom:754.657333pt;}
.y108{bottom:754.997333pt;}
.y145{bottom:755.940000pt;}
.y235{bottom:756.180000pt;}
.y40{bottom:757.892000pt;}
.y66{bottom:762.966667pt;}
.yd{bottom:766.457333pt;}
.y144{bottom:767.629600pt;}
.y16f{bottom:767.934667pt;}
.y20c{bottom:768.254667pt;}
.y1cb{bottom:770.937333pt;}
.y95{bottom:773.009333pt;}
.y234{bottom:773.396000pt;}
.y3f{bottom:775.905333pt;}
.y143{bottom:780.381600pt;}
.yc{bottom:782.597333pt;}
.y20b{bottom:785.469333pt;}
.y16e{bottom:785.948000pt;}
.yb{bottom:786.937333pt;}
.y1ca{bottom:788.949333pt;}
.ye0{bottom:791.021333pt;}
.y142{bottom:792.071200pt;}
.y3e{bottom:793.917333pt;}
.ya{bottom:798.737333pt;}
.y20a{bottom:802.685333pt;}
.y146{bottom:803.760800pt;}
.y94{bottom:803.960000pt;}
.y141{bottom:804.823200pt;}
.y1c9{bottom:806.962667pt;}
.ydf{bottom:809.034667pt;}
.y3d{bottom:811.930667pt;}
.y140{bottom:816.512800pt;}
.y9{bottom:819.216000pt;}
.y209{bottom:819.901333pt;}
.y93{bottom:821.972000pt;}
.y1c8{bottom:824.974667pt;}
.yde{bottom:827.046667pt;}
.y3c{bottom:829.942667pt;}
.y13f{bottom:831.071733pt;}
.y208{bottom:837.116000pt;}
.y8{bottom:838.986667pt;}
.y92{bottom:839.985333pt;}
.y1c7{bottom:842.986667pt;}
.ydd{bottom:845.060000pt;}
.y3b{bottom:847.954667pt;}
.y107{bottom:853.029333pt;}
.y207{bottom:854.332000pt;}
.y13d{bottom:854.982133pt;}
.y7{bottom:856.998667pt;}
.y91{bottom:857.997333pt;}
.y1c6{bottom:861.000000pt;}
.yaf{bottom:863.072000pt;}
.y3a{bottom:865.968000pt;}
.y13c{bottom:866.671733pt;}
.y206{bottom:871.546667pt;}
.y90{bottom:876.010667pt;}
.y13b{bottom:878.361333pt;}
.y1c5{bottom:879.012000pt;}
.y13e{bottom:879.423733pt;}
.yae{bottom:881.084000pt;}
.y39{bottom:883.980000pt;}
.y205{bottom:888.762667pt;}
.y13a{bottom:891.113333pt;}
.y8f{bottom:894.022667pt;}
.y1c4{bottom:897.025333pt;}
.y6{bottom:898.178667pt;}
.yad{bottom:899.097333pt;}
.y38{bottom:901.993333pt;}
.y139{bottom:902.802933pt;}
.y204{bottom:905.978667pt;}
.y8e{bottom:912.034667pt;}
.y1c3{bottom:915.037333pt;}
.yac{bottom:917.109333pt;}
.y138{bottom:917.361867pt;}
.y37{bottom:920.005333pt;}
.y203{bottom:923.193333pt;}
.ydc{bottom:925.080000pt;}
.y5{bottom:925.198667pt;}
.y137{bottom:929.582667pt;}
.y8d{bottom:930.048000pt;}
.y1c2{bottom:933.049333pt;}
.y36{bottom:938.017333pt;}
.y202{bottom:940.409333pt;}
.y136{bottom:941.803467pt;}
.yab{bottom:943.092000pt;}
.y8c{bottom:948.060000pt;}
.y1c1{bottom:951.062667pt;}
.y4{bottom:952.217333pt;}
.y135{bottom:954.024267pt;}
.y35{bottom:956.030667pt;}
.y201{bottom:957.624000pt;}
.y134{bottom:965.713867pt;}
.y8b{bottom:966.073333pt;}
.y34{bottom:974.042667pt;}
.y200{bottom:974.840000pt;}
.y1c0{bottom:977.045333pt;}
.y3{bottom:977.906667pt;}
.y33{bottom:992.056000pt;}
.y133{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y32{bottom:1038.548000pt;}
.h16{height:17.699379pt;}
.h9{height:22.673858pt;}
.h12{height:24.101683pt;}
.h10{height:27.544781pt;}
.h14{height:29.055918pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.h7{height:32.284045pt;}
.h11{height:33.206764pt;}
.h18{height:34.430976pt;}
.hf{height:35.051460pt;}
.he{height:36.896250pt;}
.hc{height:38.256384pt;}
.h19{height:40.504218pt;}
.h8{height:41.508454pt;}
.h13{height:44.560350pt;}
.h4{height:45.004385pt;}
.h2{height:45.272024pt;}
.hd{height:46.120196pt;}
.h6{height:48.360277pt;}
.h15{height:50.921847pt;}
.h17{height:50.926114pt;}
.h3{height:61.782479pt;}
.h5{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:188.033730pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:50.765941pt;}
.x37{left:100.054667pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x9c{left:112.665333pt;}
.x97{left:115.242533pt;}
.xa7{left:118.658133pt;}
.x95{left:121.311067pt;}
.x9d{left:123.018400pt;}
.x8b{left:127.707467pt;}
.xc8{left:128.941333pt;}
.x4{left:129.929333pt;}
.x8f{left:130.998133pt;}
.x86{left:133.245600pt;}
.xb1{left:136.952000pt;}
.x91{left:139.017333pt;}
.xa6{left:141.281333pt;}
.xb9{left:152.968000pt;}
.xba{left:156.238667pt;}
.xb2{left:157.696000pt;}
.x59{left:158.620000pt;}
.x80{left:162.233333pt;}
.x85{left:165.222133pt;}
.x8{left:168.205333pt;}
.x8c{left:170.315467pt;}
.x5a{left:171.902667pt;}
.xbb{left:172.793333pt;}
.x10{left:176.001333pt;}
.x9{left:179.032000pt;}
.xa8{left:180.986667pt;}
.x11{left:182.642667pt;}
.x9b{left:184.014667pt;}
.x1a{left:186.132000pt;}
.x1b{left:189.386667pt;}
.x7f{left:191.092000pt;}
.xc2{left:192.489333pt;}
.x1c{left:196.029333pt;}
.xc3{left:197.162667pt;}
.xb6{left:198.384000pt;}
.xc1{left:199.538667pt;}
.x6c{left:201.149333pt;}
.xa9{left:202.718933pt;}
.x74{left:205.609333pt;}
.x94{left:207.430667pt;}
.xe{left:209.296000pt;}
.x21{left:210.394667pt;}
.x67{left:212.150667pt;}
.x6d{left:214.432000pt;}
.xf{left:215.938667pt;}
.x45{left:218.500000pt;}
.x7c{left:221.960000pt;}
.x22{left:223.678667pt;}
.xcd{left:225.868000pt;}
.xa4{left:227.153333pt;}
.x46{left:231.784000pt;}
.x6e{left:234.490667pt;}
.x50{left:235.658667pt;}
.xbc{left:238.518667pt;}
.x81{left:244.740000pt;}
.x6f{left:247.773333pt;}
.x51{left:248.942667pt;}
.xa{left:257.104000pt;}
.x87{left:262.264267pt;}
.xb{left:263.745333pt;}
.x8e{left:264.777333pt;}
.x8d{left:266.417867pt;}
.x33{left:267.340000pt;}
.xb3{left:270.912000pt;}
.x63{left:272.297333pt;}
.x82{left:275.494667pt;}
.x34{left:280.624000pt;}
.x83{left:282.136000pt;}
.x90{left:283.590133pt;}
.x64{left:285.581333pt;}
.x88{left:289.935733pt;}
.x76{left:294.812000pt;}
.x5d{left:302.974667pt;}
.xc4{left:306.473333pt;}
.x77{left:308.096000pt;}
.xbf{left:309.004000pt;}
.x73{left:312.449333pt;}
.xaa{left:314.149333pt;}
.x5e{left:316.258667pt;}
.x5f{left:319.522667pt;}
.xc0{left:322.288000pt;}
.x71{left:326.022667pt;}
.x70{left:328.790667pt;}
.x60{left:332.806667pt;}
.xab{left:335.881600pt;}
.x72{left:339.306667pt;}
.x69{left:340.402667pt;}
.xa3{left:342.825333pt;}
.xa0{left:344.869067pt;}
.x9f{left:347.831200pt;}
.x99{left:349.580133pt;}
.x14{left:352.984000pt;}
.x96{left:353.961200pt;}
.x15{left:359.626667pt;}
.x16{left:362.930667pt;}
.x25{left:364.649333pt;}
.xa2{left:366.601333pt;}
.xc{left:368.381333pt;}
.x17{left:369.572000pt;}
.xd{left:375.024000pt;}
.x26{left:377.933333pt;}
.x9e{left:379.234933pt;}
.xaf{left:381.705333pt;}
.x54{left:388.538667pt;}
.x43{left:389.654667pt;}
.x3a{left:395.509333pt;}
.x44{left:399.550667pt;}
.xb0{left:401.353333pt;}
.x65{left:404.096000pt;}
.x3b{left:408.792000pt;}
.x2b{left:412.881333pt;}
.x66{left:417.380000pt;}
.x52{left:420.061333pt;}
.x2c{left:422.454667pt;}
.x3c{left:425.406667pt;}
.x2f{left:428.941333pt;}
.x3f{left:432.017333pt;}
.x53{left:433.345333pt;}
.x30{left:435.582667pt;}
.x7a{left:440.686667pt;}
.x40{left:445.300000pt;}
.x68{left:446.944000pt;}
.x41{left:448.688000pt;}
.x4d{left:451.341333pt;}
.xae{left:452.856533pt;}
.x7b{left:453.970667pt;}
.x42{left:461.970667pt;}
.x35{left:463.884000pt;}
.x4e{left:467.878667pt;}
.x58{left:469.868000pt;}
.xa5{left:476.070667pt;}
.x36{left:477.168000pt;}
.x4f{left:481.162667pt;}
.x9a{left:483.680000pt;}
.xcb{left:487.368000pt;}
.x6a{left:489.940000pt;}
.x92{left:494.422667pt;}
.x31{left:495.465333pt;}
.x1d{left:499.514667pt;}
.x6b{left:503.222667pt;}
.x1e{left:506.156000pt;}
.x93{left:507.705333pt;}
.x32{left:508.749333pt;}
.xcc{left:511.278667pt;}
.x78{left:520.025333pt;}
.x3d{left:521.402667pt;}
.x79{left:526.666667pt;}
.x57{left:527.569333pt;}
.xc5{left:529.505333pt;}
.x3e{left:534.686667pt;}
.x29{left:550.668000pt;}
.x98{left:553.418267pt;}
.x2a{left:557.309333pt;}
.xac{left:564.263467pt;}
.x38{left:567.237333pt;}
.xb4{left:568.581333pt;}
.x89{left:572.185333pt;}
.xb5{left:575.224000pt;}
.xa1{left:579.623200pt;}
.x39{left:580.521333pt;}
.x84{left:582.198667pt;}
.xad{left:585.995733pt;}
.x2d{left:590.630667pt;}
.xbd{left:592.514667pt;}
.x18{left:595.445333pt;}
.xca{left:596.744000pt;}
.x19{left:602.086667pt;}
.x2e{left:603.913333pt;}
.xbe{left:605.798667pt;}
.x47{left:609.054667pt;}
.x61{left:610.236000pt;}
.x75{left:617.153333pt;}
.x62{left:623.520000pt;}
.x6{left:624.660065pt;}
.x8a{left:633.287200pt;}
.x48{left:635.986667pt;}
.x12{left:637.868000pt;}
.x23{left:640.877333pt;}
.x55{left:641.898667pt;}
.x27{left:643.205333pt;}
.x13{left:644.509333pt;}
.xb7{left:646.073333pt;}
.xc6{left:648.253333pt;}
.x49{left:649.270667pt;}
.x4a{left:652.548000pt;}
.x24{left:654.161333pt;}
.x56{left:655.182667pt;}
.x28{left:656.488000pt;}
.xb8{left:659.356000pt;}
.x4b{left:665.832000pt;}
.x4c{left:669.142667pt;}
.xc7{left:672.164000pt;}
.x1f{left:673.105333pt;}
.x7d{left:674.034667pt;}
.x5b{left:678.773333pt;}
.x5c{left:685.414667pt;}
.x20{left:686.389333pt;}
.x7e{left:687.318667pt;}
.xc9{left:690.189333pt;}
}


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