
/* 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_6d99cf08255b.woff")format("woff");}.ff1{font-family:ff1;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:ff2;src:url("fonts/font_0001_aeb748ea2f28.woff")format("woff");}.ff2{font-family:ff2;line-height:1.014000;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_7bcae129597c.woff")format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_a860f12fab12.woff")format("woff");}.ff4{font-family:ff4;line-height:0.726877;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_1dce31a2fd30.woff")format("woff");}.ff5{font-family:ff5;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_48537d9cbd71.woff")format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_24b4aafee8ce.woff")format("woff");}.ff7{font-family:ff7;line-height:0.721000;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_24b4aafee8ce.woff")format("woff");}.ff8{font-family:ff8;line-height:0.721000;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_f977da6d9bed.woff")format("woff");}.ff9{font-family:ff9;line-height:0.738000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_6b705195bc63.woff")format("woff");}.ffa{font-family:ffa;line-height:0.472000;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;}
.mc{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);}
.m15{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);}
.m21{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);}
.m1{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);}
.m18{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);}
.m2{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);}
.m1f{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);}
.m19{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);}
.m8{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);}
.m22{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);}
.m16{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m24{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);}
.m1d{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);}
.m7{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);}
.m25{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);}
.m1b{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);}
.m12{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);}
.m27{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);}
.m6{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);}
.m9{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);}
.m1a{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);}
.m28{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);}
.m14{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);}
.mf{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);}
.m1c{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);}
.m13{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);}
.m26{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);}
.m23{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);}
.m10{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);}
.m17{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);}
.m1e{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);}
.md{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);}
.m20{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);}
.m3{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);}
.v2{vertical-align:-17.358000px;}
.vc{vertical-align:-12.534000px;}
.vb{vertical-align:-10.920000px;}
.va{vertical-align:-8.970000px;}
.v9{vertical-align:-5.551961px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.248000px;}
.v4{vertical-align:13.344000px;}
.v8{vertical-align:17.364000px;}
.v5{vertical-align:19.524000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:32.874000px;}
.v6{vertical-align:65.754000px;}
.ls19{letter-spacing:-1.492099px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls1c{letter-spacing:0.000604px;}
.ls4b{letter-spacing:0.000800px;}
.ls38{letter-spacing:0.000948px;}
.lsa{letter-spacing:0.001133px;}
.ls1d{letter-spacing:0.001142px;}
.ls9{letter-spacing:0.003178px;}
.ls1f{letter-spacing:0.564600px;}
.ls23{letter-spacing:0.565142px;}
.ls41{letter-spacing:0.566383px;}
.ls20{letter-spacing:0.571142px;}
.ls3e{letter-spacing:0.676741px;}
.ls25{letter-spacing:0.749675px;}
.ls1e{letter-spacing:0.863675px;}
.ls3c{letter-spacing:1.135740px;}
.ls22{letter-spacing:1.313675px;}
.ls42{letter-spacing:1.497986px;}
.ls24{letter-spacing:2.691986px;}
.ls43{letter-spacing:3.284383px;}
.ls11{letter-spacing:3.510600px;}
.ls0{letter-spacing:10.455300px;}
.ls6{letter-spacing:11.954850px;}
.ls3f{letter-spacing:12.370200px;}
.ls2c{letter-spacing:12.501103px;}
.ls40{letter-spacing:13.083483px;}
.ls16{letter-spacing:13.447133px;}
.ls4e{letter-spacing:13.448400px;}
.ls17{letter-spacing:13.453133px;}
.ls51{letter-spacing:13.454400px;}
.ls49{letter-spacing:13.641309px;}
.ls4f{letter-spacing:13.700247px;}
.lse{letter-spacing:14.094088px;}
.lsd{letter-spacing:14.100088px;}
.ls50{letter-spacing:14.297459px;}
.ls4a{letter-spacing:14.315106px;}
.ls2a{letter-spacing:14.342317px;}
.ls32{letter-spacing:14.619350px;}
.ls45{letter-spacing:14.674053px;}
.ls1a{letter-spacing:14.704798px;}
.ls37{letter-spacing:14.745667px;}
.ls2f{letter-spacing:14.841539px;}
.ls36{letter-spacing:14.846001px;}
.lsb{letter-spacing:14.884124px;}
.ls35{letter-spacing:14.893854px;}
.ls2d{letter-spacing:14.937838px;}
.ls14{letter-spacing:14.941200px;}
.ls39{letter-spacing:14.945675px;}
.ls44{letter-spacing:15.064897px;}
.ls47{letter-spacing:15.116557px;}
.ls3b{letter-spacing:15.145301px;}
.ls30{letter-spacing:15.242778px;}
.ls2e{letter-spacing:15.317910px;}
.ls15{letter-spacing:15.380370px;}
.ls4c{letter-spacing:15.485694px;}
.ls29{letter-spacing:16.139412px;}
.ls1b{letter-spacing:16.737168px;}
.ls18{letter-spacing:16.856719px;}
.ls48{letter-spacing:16.916495px;}
.ls46{letter-spacing:17.812028px;}
.ls31{letter-spacing:17.813129px;}
.ls3a{letter-spacing:17.929200px;}
.ls27{letter-spacing:17.935200px;}
.ls33{letter-spacing:17.953204px;}
.ls34{letter-spacing:17.959087px;}
.ls4d{letter-spacing:18.456282px;}
.ls2b{letter-spacing:19.128192px;}
.ls3d{letter-spacing:19.263483px;}
.ls21{letter-spacing:19.269483px;}
.ls2{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls3{letter-spacing:72.361200px;}
.ls10{letter-spacing:184.554600px;}
.ls12{letter-spacing:198.006600px;}
.lsf{letter-spacing:201.414600px;}
.ls13{letter-spacing:231.774600px;}
.ls26{letter-spacing:767.515200px;}
.ls8{letter-spacing:2770.985700px;}
.lsc{letter-spacing:2772.185700px;}
.ls28{letter-spacing:2773.379700px;}
.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;}
}
.wsc8{word-spacing:-14.943900px;}
.ws50{word-spacing:-13.449600px;}
.ws2e{word-spacing:-11.955150px;}
.wsf{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws7e{word-spacing:-3.108331px;}
.ws7a{word-spacing:-2.809453px;}
.wsc4{word-spacing:-2.749678px;}
.ws9a{word-spacing:-2.689902px;}
.wsbd{word-spacing:-2.510575px;}
.ws9b{word-spacing:-2.450800px;}
.ws6e{word-spacing:-2.391024px;}
.ws94{word-spacing:-2.367130px;}
.wsf1{word-spacing:-2.313331px;}
.ws71{word-spacing:-2.271473px;}
.ws6d{word-spacing:-2.151922px;}
.ws76{word-spacing:-2.092146px;}
.ws84{word-spacing:-1.853044px;}
.wsef{word-spacing:-1.775347px;}
.ws39{word-spacing:-1.733492px;}
.ws69{word-spacing:-1.374839px;}
.wsbc{word-spacing:-1.315063px;}
.ws99{word-spacing:-1.255288px;}
.wsbe{word-spacing:-1.237363px;}
.wsc7{word-spacing:-1.195512px;}
.ws5{word-spacing:-1.171598px;}
.ws7b{word-spacing:-1.135736px;}
.ws3b{word-spacing:-1.075961px;}
.ws7{word-spacing:-1.046070px;}
.wsf7{word-spacing:-1.022170px;}
.ws6f{word-spacing:-1.016185px;}
.wsbf{word-spacing:-0.968371px;}
.ws72{word-spacing:-0.896634px;}
.ws3a{word-spacing:-0.836858px;}
.wsc0{word-spacing:-0.777083px;}
.wsdd{word-spacing:-0.753178px;}
.ws83{word-spacing:-0.657532px;}
.ws92{word-spacing:-0.604429px;}
.ws91{word-spacing:-0.597756px;}
.wse9{word-spacing:-0.591782px;}
.ws6a{word-spacing:-0.537980px;}
.ws3c{word-spacing:-0.418429px;}
.ws27{word-spacing:-0.358654px;}
.ws24{word-spacing:-0.298878px;}
.ws32{word-spacing:-0.239102px;}
.ws17{word-spacing:-0.215194px;}
.ws2b{word-spacing:-0.179327px;}
.ws77{word-spacing:-0.161395px;}
.ws2a{word-spacing:-0.119551px;}
.ws78{word-spacing:-0.107597px;}
.ws29{word-spacing:-0.059776px;}
.ws19{word-spacing:-0.053798px;}
.ws2f{word-spacing:-0.047821px;}
.ws87{word-spacing:-0.045430px;}
.wsb4{word-spacing:-0.006439px;}
.ws59{word-spacing:-0.004838px;}
.ws5a{word-spacing:-0.003600px;}
.wsb3{word-spacing:-0.002449px;}
.ws89{word-spacing:-0.001991px;}
.ws5f{word-spacing:-0.001200px;}
.ws1{word-spacing:0.000000px;}
.ws58{word-spacing:0.001200px;}
.wsb5{word-spacing:0.004009px;}
.ws18{word-spacing:0.053798px;}
.ws1e{word-spacing:0.059776px;}
.ws9f{word-spacing:0.107597px;}
.ws25{word-spacing:0.119551px;}
.ws12{word-spacing:0.143462px;}
.ws14{word-spacing:0.161395px;}
.ws34{word-spacing:0.179327px;}
.ws11{word-spacing:0.191282px;}
.ws96{word-spacing:0.215194px;}
.ws22{word-spacing:0.239102px;}
.wseb{word-spacing:0.268992px;}
.ws31{word-spacing:0.298878px;}
.wsee{word-spacing:0.322790px;}
.ws3e{word-spacing:0.358654px;}
.ws61{word-spacing:0.418429px;}
.ws48{word-spacing:0.478205px;}
.ws30{word-spacing:0.537980px;}
.ws9d{word-spacing:0.537984px;}
.ws75{word-spacing:0.597756px;}
.wse3{word-spacing:0.645581px;}
.ws41{word-spacing:0.657532px;}
.ws56{word-spacing:0.670800px;}
.ws5e{word-spacing:0.676800px;}
.ws9e{word-spacing:0.699379px;}
.ws68{word-spacing:0.777083px;}
.ws9c{word-spacing:0.806976px;}
.ws65{word-spacing:0.836858px;}
.wse1{word-spacing:0.860774px;}
.ws8e{word-spacing:0.914573px;}
.ws6{word-spacing:1.004227px;}
.ws62{word-spacing:1.016185px;}
.ws2c{word-spacing:1.075961px;}
.ws64{word-spacing:1.135736px;}
.ws3f{word-spacing:1.195512px;}
.ws4b{word-spacing:1.255288px;}
.wsa1{word-spacing:1.315063px;}
.wsca{word-spacing:1.434614px;}
.wsd7{word-spacing:1.452557px;}
.wsc2{word-spacing:1.554166px;}
.wsd8{word-spacing:1.560154px;}
.ws7d{word-spacing:1.613941px;}
.ws16{word-spacing:1.613952px;}
.ws47{word-spacing:1.673717px;}
.wsf4{word-spacing:1.721549px;}
.ws40{word-spacing:1.733492px;}
.wsfd{word-spacing:1.775347px;}
.ws85{word-spacing:1.793268px;}
.ws23{word-spacing:1.853044px;}
.ws13{word-spacing:1.882944px;}
.ws49{word-spacing:1.912819px;}
.wsb8{word-spacing:1.972595px;}
.ws7f{word-spacing:2.032370px;}
.ws8a{word-spacing:2.151922px;}
.ws95{word-spacing:2.151936px;}
.ws42{word-spacing:2.211697px;}
.wsdf{word-spacing:2.259533px;}
.ws1c{word-spacing:2.271473px;}
.ws8f{word-spacing:2.331248px;}
.ws43{word-spacing:2.391024px;}
.wsbb{word-spacing:2.450800px;}
.ws45{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws38{word-spacing:2.570351px;}
.ws37{word-spacing:2.630126px;}
.ws26{word-spacing:2.689902px;}
.ws4e{word-spacing:2.743718px;}
.ws4a{word-spacing:2.749678px;}
.wsa5{word-spacing:2.809453px;}
.wsaf{word-spacing:2.869229px;}
.wsb0{word-spacing:2.873656px;}
.ws33{word-spacing:2.929004px;}
.ws8c{word-spacing:2.958912px;}
.wsb2{word-spacing:2.988780px;}
.wsb1{word-spacing:3.048556px;}
.ws44{word-spacing:3.168107px;}
.ws1a{word-spacing:3.219667px;}
.wsd9{word-spacing:3.224822px;}
.ws8b{word-spacing:3.281702px;}
.ws3d{word-spacing:3.287658px;}
.ws70{word-spacing:3.347434px;}
.wsb7{word-spacing:3.407209px;}
.ws7c{word-spacing:3.466985px;}
.wsc3{word-spacing:3.526760px;}
.ws1b{word-spacing:3.586536px;}
.wsa3{word-spacing:3.646312px;}
.wsa4{word-spacing:3.706087px;}
.ws80{word-spacing:3.765863px;}
.ws8d{word-spacing:3.765888px;}
.ws20{word-spacing:3.825638px;}
.wse6{word-spacing:3.927283px;}
.ws1f{word-spacing:3.945190px;}
.wsc9{word-spacing:4.124516px;}
.wsed{word-spacing:4.142477px;}
.wsa7{word-spacing:4.184292px;}
.ws35{word-spacing:4.244068px;}
.ws36{word-spacing:4.303843px;}
.ws63{word-spacing:4.363619px;}
.wsc6{word-spacing:4.423394px;}
.wsa6{word-spacing:4.542946px;}
.wsc5{word-spacing:4.662497px;}
.wsd{word-spacing:4.770079px;}
.ws28{word-spacing:4.782048px;}
.ws6b{word-spacing:4.841824px;}
.wse{word-spacing:4.853765px;}
.ws6c{word-spacing:4.901599px;}
.ws98{word-spacing:5.140702px;}
.wsae{word-spacing:5.200477px;}
.wsfa{word-spacing:5.218445px;}
.wscb{word-spacing:5.320028px;}
.ws90{word-spacing:5.379804px;}
.wsc1{word-spacing:5.439580px;}
.ws73{word-spacing:5.499355px;}
.wsd6{word-spacing:5.618906px;}
.wsa0{word-spacing:5.738458px;}
.ws4d{word-spacing:5.756429px;}
.ws67{word-spacing:5.798233px;}
.ws74{word-spacing:5.858009px;}
.ws51{word-spacing:5.917784px;}
.ws15{word-spacing:6.079219px;}
.ws4c{word-spacing:6.186816px;}
.ws97{word-spacing:6.455765px;}
.ws4f{word-spacing:6.455808px;}
.wsb6{word-spacing:6.573790px;}
.wsa2{word-spacing:6.814418px;}
.ws21{word-spacing:7.113296px;}
.ws1d{word-spacing:7.173072px;}
.ws82{word-spacing:7.531726px;}
.ws81{word-spacing:7.770828px;}
.wsb{word-spacing:7.782761px;}
.wsd5{word-spacing:7.950155px;}
.ws79{word-spacing:8.129482px;}
.ws86{word-spacing:9.444545px;}
.ws2{word-spacing:10.416560px;}
.wsf0{word-spacing:11.082470px;}
.ws2d{word-spacing:11.906426px;}
.ws9{word-spacing:12.176255px;}
.wsf6{word-spacing:12.373632px;}
.wsde{word-spacing:12.642624px;}
.wsf8{word-spacing:13.234406px;}
.wse4{word-spacing:13.342003px;}
.wsec{word-spacing:13.390022px;}
.wse8{word-spacing:13.394342px;}
.wsea{word-spacing:13.395581px;}
.wse5{word-spacing:13.395802px;}
.wsf2{word-spacing:13.449600px;}
.wsfc{word-spacing:13.503398px;}
.wse0{word-spacing:13.557197px;}
.wsfb{word-spacing:13.610995px;}
.ws46{word-spacing:14.884124px;}
.wsf3{word-spacing:15.063552px;}
.ws4{word-spacing:15.481836px;}
.wsa{word-spacing:16.109478px;}
.wsfe{word-spacing:16.354714px;}
.wse7{word-spacing:16.623706px;}
.wsf9{word-spacing:18.614246px;}
.wse2{word-spacing:18.990835px;}
.wsb9{word-spacing:19.043052px;}
.ws88{word-spacing:21.313572px;}
.wsc{word-spacing:26.109907px;}
.ws8{word-spacing:26.840252px;}
.ws10{word-spacing:46.053600px;}
.wsf5{word-spacing:47.990400px;}
.wsda{word-spacing:98.504870px;}
.wsdc{word-spacing:100.872000px;}
.wsab{word-spacing:105.875251px;}
.wsdb{word-spacing:119.271053px;}
.ws5c{word-spacing:128.743421px;}
.wsa9{word-spacing:132.774451px;}
.wsaa{word-spacing:159.673651px;}
.ws60{word-spacing:179.956800px;}
.wscc{word-spacing:186.768221px;}
.wsad{word-spacing:219.228480px;}
.ws54{word-spacing:223.424755px;}
.wscd{word-spacing:225.041222px;}
.wsac{word-spacing:232.678080px;}
.ws66{word-spacing:233.730250px;}
.ws52{word-spacing:239.239843px;}
.ws53{word-spacing:248.225818px;}
.ws57{word-spacing:251.397341px;}
.ws5b{word-spacing:260.919341px;}
.ws55{word-spacing:268.844419px;}
.ws5d{word-spacing:309.190819px;}
.wsd0{word-spacing:315.527616px;}
.ws93{word-spacing:320.477069px;}
.wsd2{word-spacing:324.027763px;}
.wsd1{word-spacing:326.879078px;}
.wsd3{word-spacing:333.550080px;}
.wsd4{word-spacing:349.528205px;}
.wsce{word-spacing:349.582003px;}
.wscf{word-spacing:352.379520px;}
.wsa8{word-spacing:508.179686px;}
.wsba{word-spacing:748.928492px;}
._55{margin-left:-21.967643px;}
._54{margin-left:-20.216221px;}
._6{margin-left:-11.943245px;}
._15{margin-left:-7.675200px;}
._a{margin-left:-6.025421px;}
._2{margin-left:-4.644551px;}
._0{margin-left:-3.096367px;}
._4{margin-left:-1.506341px;}
._2b{width:1.278908px;}
._3{width:2.301354px;}
._f{width:4.913550px;}
._1{width:12.304464px;}
._8{width:13.963615px;}
._9{width:16.085722px;}
._2a{width:17.478377px;}
._e{width:18.709763px;}
._11{width:20.156328px;}
._c{width:21.626942px;}
._17{width:22.834279px;}
._16{width:24.328669px;}
._3b{width:25.835010px;}
._10{width:27.197898px;}
._13{width:28.572737px;}
._5{width:30.587087px;}
._14{width:31.920170px;}
._52{width:33.414910px;}
._b{width:34.430976px;}
._25{width:36.522892px;}
._57{width:39.258905px;}
._d{width:40.778910px;}
._53{width:44.024538px;}
._7{width:55.115730px;}
._56{width:61.868160px;}
._4e{width:71.713267px;}
._4d{width:85.862246px;}
._51{width:88.767360px;}
._3c{width:95.563847px;}
._4f{width:96.783322px;}
._2f{width:108.481543px;}
._1a{width:111.201293px;}
._3d{width:114.751277px;}
._1f{width:121.799578px;}
._20{width:128.524378px;}
._50{width:137.562509px;}
._21{width:140.162720px;}
._31{width:146.118960px;}
._1e{width:159.886339px;}
._32{width:167.205427px;}
._19{width:174.001914px;}
._33{width:180.655027px;}
._34{width:190.177344px;}
._30{width:201.959194px;}
._1d{width:204.756710px;}
._38{width:219.228480px;}
._36{width:232.731878px;}
._3a{width:246.181478px;}
._18{width:288.054522px;}
._39{width:290.887949px;}
._22{width:307.593685px;}
._37{width:308.856614px;}
._35{width:311.277542px;}
._4b{width:341.888832px;}
._49{width:345.923712px;}
._27{width:347.430067px;}
._1b{width:364.082221px;}
._23{width:371.370355px;}
._4a{width:375.053549px;}
._44{width:379.278720px;}
._40{width:382.130035px;}
._48{width:385.655827px;}
._3e{width:388.263053px;}
._45{width:389.798303px;}
._46{width:394.611264px;}
._1c{width:401.981645px;}
._42{width:408.329856px;}
._24{width:413.200607px;}
._3f{width:421.241472px;}
._4c{width:431.326676px;}
._47{width:432.406636px;}
._43{width:447.412397px;}
._41{width:450.884390px;}
._2c{width:459.976320px;}
._29{width:475.093670px;}
._28{width:567.680702px;}
._26{width:650.046067px;}
._2e{width:833.014426px;}
._2d{width:853.942003px;}
._12{width:885.211554px;}
.fc1{color:rgb(8,117,183);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs9{font-size:37.371600px;}
.fs0{font-size:41.842800px;}
.fs8{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs7{font-size:56.058000px;}
.fsa{font-size:57.388440px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y4a{bottom:31.890000px;}
.y1ca{bottom:91.575000px;}
.y116{bottom:91.665000px;}
.y17a{bottom:92.976000px;}
.y1c9{bottom:94.639500px;}
.y260{bottom:100.020000px;}
.y49{bottom:103.621500px;}
.y1a{bottom:104.646000px;}
.y80{bottom:105.847500px;}
.y1f2{bottom:107.641500px;}
.y1c8{bottom:110.404500px;}
.y115{bottom:110.494500px;}
.y179{bottom:111.805500px;}
.y1c7{bottom:113.469000px;}
.y25f{bottom:117.280500px;}
.y48{bottom:122.449500px;}
.y19{bottom:122.535000px;}
.y1a3{bottom:122.901000px;}
.y7f{bottom:124.677000px;}
.y1f1{bottom:126.471000px;}
.y1a9{bottom:127.411500px;}
.y162{bottom:128.074500px;}
.yce{bottom:128.843550px;}
.y114{bottom:129.324000px;}
.y178{bottom:130.635000px;}
.y1c6{bottom:132.298500px;}
.y1d2{bottom:133.896000px;}
.y25e{bottom:134.541000px;}
.y145{bottom:135.436500px;}
.y18{bottom:140.422500px;}
.y47{bottom:141.279000px;}
.y1a2{bottom:141.730500px;}
.y228{bottom:141.856500px;}
.y7e{bottom:143.506500px;}
.y161{bottom:144.513000px;}
.y1f0{bottom:145.300500px;}
.y1c5{bottom:148.063500px;}
.y113{bottom:148.153500px;}
.y177{bottom:149.464500px;}
.y1c4{bottom:151.128000px;}
.y25d{bottom:151.800000px;}
.y1d1{bottom:153.129000px;}
.y1fd{bottom:156.858000px;}
.y17{bottom:158.310000px;}
.y227{bottom:159.430500px;}
.y46{bottom:160.108500px;}
.y1a1{bottom:160.560000px;}
.y160{bottom:160.951500px;}
.y7d{bottom:162.336000px;}
.y144{bottom:163.681500px;}
.y1ef{bottom:164.130000px;}
.y1c3{bottom:166.893000px;}
.y112{bottom:166.983000px;}
.y176{bottom:168.294000px;}
.y25c{bottom:169.060500px;}
.y15e{bottom:169.170000px;}
.y1c2{bottom:169.957500px;}
.y1fc{bottom:173.296500px;}
.y16{bottom:176.199000px;}
.y226{bottom:177.004500px;}
.y15f{bottom:177.388500px;}
.y45{bottom:178.938000px;}
.y1a0{bottom:179.389500px;}
.y7c{bottom:181.165500px;}
.y1ee{bottom:182.959500px;}
.y111{bottom:185.812500px;}
.y25b{bottom:186.321000px;}
.y175{bottom:187.123500px;}
.y1c1{bottom:188.787000px;}
.y15d{bottom:193.827000px;}
.y15{bottom:194.086500px;}
.y225{bottom:194.580000px;}
.y1fb{bottom:197.236500px;}
.y44{bottom:197.767500px;}
.y19f{bottom:198.219000px;}
.y7b{bottom:199.995000px;}
.y143{bottom:201.340500px;}
.y1ed{bottom:201.789000px;}
.y25a{bottom:203.581500px;}
.y1e1{bottom:203.860500px;}
.y110{bottom:204.642000px;}
.y174{bottom:205.953000px;}
.y1d0{bottom:206.101500px;}
.ycb{bottom:206.892000px;}
.y1c0{bottom:207.616500px;}
.y15b{bottom:210.265500px;}
.y14{bottom:211.974000px;}
.y224{bottom:212.154000px;}
.y8c{bottom:214.627500px;}
.y43{bottom:216.597000px;}
.y19e{bottom:217.048500px;}
.y142{bottom:217.104000px;}
.y7a{bottom:218.824500px;}
.y141{bottom:220.170000px;}
.y1ec{bottom:220.618500px;}
.y259{bottom:220.842000px;}
.y1fa{bottom:221.176500px;}
.y1e0{bottom:222.690000px;}
.y10f{bottom:223.471500px;}
.y173{bottom:224.782500px;}
.y1cf{bottom:224.931000px;}
.yca{bottom:225.721500px;}
.y1bf{bottom:226.446000px;}
.y15c{bottom:226.704000px;}
.y191{bottom:227.955000px;}
.y223{bottom:229.728000px;}
.y13{bottom:229.863000px;}
.yf1{bottom:231.315000px;}
.y8b{bottom:233.457000px;}
.y42{bottom:235.426500px;}
.y19d{bottom:235.876500px;}
.y1f9{bottom:237.615000px;}
.y79{bottom:237.654000px;}
.y258{bottom:238.102500px;}
.y140{bottom:238.999500px;}
.y1eb{bottom:239.446500px;}
.y1df{bottom:241.519500px;}
.y10e{bottom:242.301000px;}
.y1ce{bottom:243.760500px;}
.yc9{bottom:244.551000px;}
.y1be{bottom:245.275500px;}
.y222{bottom:247.302000px;}
.yf0{bottom:247.753500px;}
.y15a{bottom:250.644000px;}
.y8a{bottom:252.286500px;}
.y1f8{bottom:254.053500px;}
.y41{bottom:254.256000px;}
.y19c{bottom:254.706000px;}
.y257{bottom:255.363000px;}
.y78{bottom:256.483500px;}
.y13f{bottom:257.829000px;}
.y1ea{bottom:258.276000px;}
.y172{bottom:258.348000px;}
.y1de{bottom:260.349000px;}
.y190{bottom:261.579000px;}
.y1cd{bottom:262.590000px;}
.yc8{bottom:263.380500px;}
.y1bd{bottom:264.105000px;}
.yef{bottom:264.192000px;}
.y221{bottom:264.876000px;}
.y89{bottom:271.116000px;}
.y256{bottom:272.623500px;}
.y40{bottom:273.085500px;}
.y19b{bottom:273.535500px;}
.y10d{bottom:273.561000px;}
.y77{bottom:275.313000px;}
.y13e{bottom:276.658500px;}
.y1e9{bottom:277.105500px;}
.y171{bottom:277.581000px;}
.y1f7{bottom:277.992000px;}
.y1dd{bottom:279.178500px;}
.y18f{bottom:280.408500px;}
.yc7{bottom:282.210000px;}
.y159{bottom:282.264000px;}
.y1bc{bottom:282.934500px;}
.y1cc{bottom:285.901500px;}
.yee{bottom:288.130500px;}
.y255{bottom:289.882500px;}
.y88{bottom:289.945500px;}
.y3f{bottom:291.915000px;}
.y19a{bottom:292.365000px;}
.y10c{bottom:292.794000px;}
.y76{bottom:294.142500px;}
.y13d{bottom:295.488000px;}
.y1e8{bottom:295.935000px;}
.y220{bottom:296.245500px;}
.y170{bottom:296.814000px;}
.y1dc{bottom:298.008000px;}
.y18e{bottom:299.238000px;}
.y12{bottom:300.154500px;}
.yc6{bottom:301.039500px;}
.y1bb{bottom:301.764000px;}
.y1f6{bottom:301.932000px;}
.y254{bottom:307.143000px;}
.y87{bottom:308.775000px;}
.y1f5{bottom:310.150500px;}
.y182{bottom:310.242000px;}
.y3e{bottom:310.744500px;}
.y10b{bottom:312.027000px;}
.y75{bottom:312.972000px;}
.y13c{bottom:314.317500px;}
.y1e7{bottom:314.764500px;}
.y16f{bottom:316.045500px;}
.y1cb{bottom:316.329000px;}
.y1db{bottom:316.837500px;}
.y11{bottom:318.043500px;}
.y18d{bottom:318.067500px;}
.y21f{bottom:318.303000px;}
.y158{bottom:319.368000px;}
.yed{bottom:319.750500px;}
.yc5{bottom:319.869000px;}
.y1ba{bottom:320.593500px;}
.y253{bottom:324.403500px;}
.y86{bottom:327.604500px;}
.y199{bottom:329.385000px;}
.y3d{bottom:329.574000px;}
.y74{bottom:331.801500px;}
.y13b{bottom:333.145500px;}
.y1e6{bottom:333.594000px;}
.y1da{bottom:335.667000px;}
.y10{bottom:335.931000px;}
.y18c{bottom:336.897000px;}
.y157{bottom:338.197500px;}
.yc4{bottom:338.698500px;}
.y1b9{bottom:339.423000px;}
.y252{bottom:341.664000px;}
.y85{bottom:346.434000px;}
.y181{bottom:347.565000px;}
.y198{bottom:348.228000px;}
.y3c{bottom:348.403500px;}
.y180{bottom:350.631000px;}
.y13a{bottom:351.975000px;}
.y1e5{bottom:352.423500px;}
.y1f4{bottom:352.978500px;}
.yf{bottom:353.818500px;}
.y1d9{bottom:354.496500px;}
.y21e{bottom:355.065000px;}
.y73{bottom:355.114500px;}
.y18b{bottom:355.726500px;}
.yec{bottom:356.854500px;}
.y156{bottom:357.027000px;}
.yc3{bottom:357.528000px;}
.y1b8{bottom:358.252500px;}
.y251{bottom:358.924500px;}
.y197{bottom:364.666500px;}
.y3b{bottom:367.233000px;}
.y17f{bottom:369.460500px;}
.y139{bottom:370.804500px;}
.y1e4{bottom:371.253000px;}
.y1d8{bottom:373.326000px;}
.y72{bottom:375.288000px;}
.yeb{bottom:375.684000px;}
.y155{bottom:375.856500px;}
.y250{bottom:376.185000px;}
.yc2{bottom:376.357500px;}
.y1b7{bottom:377.082000px;}
.y84{bottom:379.999500px;}
.ye{bottom:380.673000px;}
.y196{bottom:381.105000px;}
.y21d{bottom:381.606000px;}
.y3a{bottom:386.062500px;}
.y1e3{bottom:387.018000px;}
.y18a{bottom:387.594000px;}
.y17e{bottom:388.290000px;}
.y138{bottom:389.634000px;}
.y1e2{bottom:390.082500px;}
.y1d7{bottom:392.155500px;}
.y24f{bottom:393.445500px;}
.yea{bottom:394.513500px;}
.y154{bottom:394.684500px;}
.yc1{bottom:395.187000px;}
.y1b6{bottom:395.911500px;}
.yd{bottom:398.562000px;}
.y83{bottom:399.232500px;}
.y39{bottom:404.892000px;}
.y195{bottom:405.045000px;}
.y17d{bottom:407.119500px;}
.y21c{bottom:408.147000px;}
.y137{bottom:408.463500px;}
.y71{bottom:408.912000px;}
.y153{bottom:410.449500px;}
.y24e{bottom:410.706000px;}
.y1d6{bottom:410.985000px;}
.ye9{bottom:413.343000px;}
.y152{bottom:413.514000px;}
.yc0{bottom:414.016500px;}
.y1b5{bottom:414.741000px;}
.yc{bottom:416.449500px;}
.y82{bottom:418.465500px;}
.y194{bottom:421.483500px;}
.y38{bottom:423.721500px;}
.y136{bottom:427.293000px;}
.y70{bottom:427.741500px;}
.y24d{bottom:427.966500px;}
.y17c{bottom:430.431000px;}
.ye8{bottom:432.172500px;}
.y151{bottom:432.343500px;}
.ybf{bottom:432.846000px;}
.y1b4{bottom:433.570500px;}
.y1d5{bottom:434.298000px;}
.y21b{bottom:434.686500px;}
.y81{bottom:437.698500px;}
.y37{bottom:442.551000px;}
.yb{bottom:444.798000px;}
.y24c{bottom:445.225500px;}
.y135{bottom:446.122500px;}
.y6f{bottom:446.571000px;}
.y17b{bottom:450.606000px;}
.ye7{bottom:451.002000px;}
.y150{bottom:451.173000px;}
.ybe{bottom:451.675500px;}
.y21a{bottom:452.262000px;}
.y1b3{bottom:452.400000px;}
.y193{bottom:453.102000px;}
.y36{bottom:461.380500px;}
.y24b{bottom:462.486000px;}
.ya{bottom:462.685500px;}
.y1d4{bottom:464.725500px;}
.y134{bottom:464.952000px;}
.y6e{bottom:465.400500px;}
.y14f{bottom:467.272500px;}
.ye6{bottom:469.831500px;}
.y219{bottom:469.836000px;}
.y14e{bottom:470.002500px;}
.ybd{bottom:470.505000px;}
.y1b2{bottom:471.229500px;}
.y24a{bottom:479.746500px;}
.y35{bottom:480.210000px;}
.y9{bottom:480.574500px;}
.y133{bottom:483.781500px;}
.y1d3{bottom:483.958500px;}
.y6d{bottom:484.230000px;}
.y192{bottom:487.279500px;}
.y218{bottom:487.410000px;}
.ye5{bottom:488.661000px;}
.y14d{bottom:488.832000px;}
.ybc{bottom:489.334500px;}
.y1b1{bottom:490.059000px;}
.y249{bottom:497.007000px;}
.y34{bottom:499.039500px;}
.y132{bottom:502.611000px;}
.y6c{bottom:503.059500px;}
.y217{bottom:504.984000px;}
.y8{bottom:507.429000px;}
.ye4{bottom:507.490500px;}
.y14c{bottom:507.661500px;}
.ybb{bottom:508.164000px;}
.y248{bottom:514.267500px;}
.y33{bottom:517.869000px;}
.y131{bottom:521.440500px;}
.y6b{bottom:521.889000px;}
.y1b0{bottom:524.578500px;}
.y7{bottom:525.316500px;}
.ye3{bottom:526.320000px;}
.y14b{bottom:526.491000px;}
.yba{bottom:526.993500px;}
.y247{bottom:531.528000px;}
.y32{bottom:536.698500px;}
.y130{bottom:540.270000px;}
.y216{bottom:540.490500px;}
.y6a{bottom:540.718500px;}
.y6{bottom:543.204000px;}
.ye2{bottom:545.149500px;}
.y14a{bottom:545.320500px;}
.yb9{bottom:545.823000px;}
.y246{bottom:548.788500px;}
.y31{bottom:555.528000px;}
.y12f{bottom:559.099500px;}
.y215{bottom:559.320000px;}
.y69{bottom:559.548000px;}
.y5{bottom:561.093000px;}
.ye1{bottom:563.979000px;}
.y149{bottom:564.150000px;}
.yb8{bottom:564.652500px;}
.y245{bottom:566.049000px;}
.y1ae{bottom:574.864500px;}
.y1af{bottom:575.199000px;}
.y12e{bottom:577.929000px;}
.y214{bottom:578.149500px;}
.y68{bottom:578.377500px;}
.y30{bottom:578.839500px;}
.y4{bottom:578.980500px;}
.ye0{bottom:582.808500px;}
.y244{bottom:583.309500px;}
.yb7{bottom:583.480500px;}
.y12d{bottom:596.758500px;}
.y3{bottom:596.868000px;}
.y213{bottom:596.979000px;}
.y67{bottom:597.207000px;}
.y148{bottom:597.715500px;}
.y243{bottom:600.568500px;}
.ydf{bottom:601.638000px;}
.yb6{bottom:602.310000px;}
.y2{bottom:614.757000px;}
.y12c{bottom:615.588000px;}
.y212{bottom:615.808500px;}
.y66{bottom:616.036500px;}
.y147{bottom:616.948500px;}
.y242{bottom:617.829000px;}
.yde{bottom:620.467500px;}
.yb5{bottom:621.139500px;}
.y10a{bottom:630.382500px;}
.y1{bottom:632.644500px;}
.y12b{bottom:634.417500px;}
.y211{bottom:634.638000px;}
.y65{bottom:634.866000px;}
.y241{bottom:635.089500px;}
.y146{bottom:636.181500px;}
.ydd{bottom:639.297000px;}
.yb4{bottom:639.969000px;}
.y109{bottom:649.212000px;}
.y240{bottom:652.350000px;}
.y12a{bottom:653.247000px;}
.y210{bottom:653.467500px;}
.y64{bottom:653.695500px;}
.y2f{bottom:653.989500px;}
.ydc{bottom:658.126500px;}
.yb3{bottom:658.798500px;}
.y108{bottom:668.041500px;}
.y23f{bottom:669.610500px;}
.y129{bottom:672.076500px;}
.y20f{bottom:672.297000px;}
.y63{bottom:672.525000px;}
.ydb{bottom:676.956000px;}
.y107{bottom:686.871000px;}
.yb2{bottom:689.965500px;}
.y128{bottom:690.906000px;}
.y20e{bottom:691.126500px;}
.y62{bottom:691.354500px;}
.y2e{bottom:691.380000px;}
.yda{bottom:695.785500px;}
.y16e{bottom:698.227500px;}
.y23e{bottom:704.131500px;}
.y106{bottom:705.700500px;}
.y127{bottom:709.735500px;}
.y20d{bottom:709.956000px;}
.y61{bottom:710.184000px;}
.y2d{bottom:710.836500px;}
.yb0{bottom:713.703000px;}
.yd9{bottom:714.613500px;}
.y16d{bottom:717.057000px;}
.y23d{bottom:721.392000px;}
.yb1{bottom:721.921500px;}
.y105{bottom:724.530000px;}
.y126{bottom:728.565000px;}
.y20c{bottom:728.785500px;}
.y60{bottom:729.013500px;}
.yae{bottom:730.141500px;}
.y2c{bottom:730.294500px;}
.yd8{bottom:733.443000px;}
.y16c{bottom:735.886500px;}
.y23c{bottom:738.651000px;}
.y104{bottom:743.359500px;}
.yaf{bottom:746.580000px;}
.y125{bottom:747.394500px;}
.y20b{bottom:747.615000px;}
.y5f{bottom:747.843000px;}
.y2b{bottom:749.751000px;}
.yd7{bottom:752.272500px;}
.y16b{bottom:754.716000px;}
.y23b{bottom:755.911500px;}
.y103{bottom:762.189000px;}
.yac{bottom:763.017000px;}
.y124{bottom:766.224000px;}
.y20a{bottom:766.444500px;}
.y5e{bottom:766.671000px;}
.y2a{bottom:769.207500px;}
.yd6{bottom:771.102000px;}
.ya9{bottom:771.237000px;}
.y23a{bottom:773.172000px;}
.y16a{bottom:773.545500px;}
.yad{bottom:779.143500px;}
.yab{bottom:779.455500px;}
.y102{bottom:781.018500px;}
.y123{bottom:785.053500px;}
.y209{bottom:785.274000px;}
.y5d{bottom:785.500500px;}
.ya8{bottom:787.675500px;}
.y29{bottom:788.665500px;}
.yd5{bottom:789.931500px;}
.y239{bottom:790.432500px;}
.y169{bottom:792.375000px;}
.yaa{bottom:795.894000px;}
.y101{bottom:799.848000px;}
.y1ad{bottom:801.153000px;}
.y122{bottom:803.883000px;}
.y208{bottom:804.103500px;}
.y5c{bottom:804.330000px;}
.y238{bottom:807.693000px;}
.y28{bottom:808.122000px;}
.yd4{bottom:808.761000px;}
.y168{bottom:811.204500px;}
.ya6{bottom:812.332500px;}
.y100{bottom:818.677500px;}
.y1ac{bottom:819.982500px;}
.ya3{bottom:820.552500px;}
.y121{bottom:822.712500px;}
.y207{bottom:822.933000px;}
.y5b{bottom:823.159500px;}
.y237{bottom:824.953500px;}
.y27{bottom:827.580000px;}
.yd3{bottom:827.590500px;}
.ya7{bottom:828.459000px;}
.ya5{bottom:828.771000px;}
.y167{bottom:830.034000px;}
.ya2{bottom:836.989500px;}
.yff{bottom:837.507000px;}
.y120{bottom:841.540500px;}
.y206{bottom:841.761000px;}
.y5a{bottom:841.989000px;}
.y236{bottom:842.214000px;}
.ya4{bottom:845.209500px;}
.yd2{bottom:846.420000px;}
.y26{bottom:847.036500px;}
.y166{bottom:848.863500px;}
.yfe{bottom:856.335000px;}
.y1ab{bottom:857.641500px;}
.y235{bottom:859.474500px;}
.y11f{bottom:860.370000px;}
.y205{bottom:860.590500px;}
.y59{bottom:860.818500px;}
.ya0{bottom:861.648000px;}
.yd1{bottom:865.249500px;}
.y165{bottom:867.693000px;}
.y9d{bottom:869.866500px;}
.yfd{bottom:875.164500px;}
.y234{bottom:876.735000px;}
.ya1{bottom:877.774500px;}
.y9f{bottom:878.086500px;}
.y11e{bottom:879.199500px;}
.y204{bottom:879.420000px;}
.y58{bottom:879.648000px;}
.y1aa{bottom:883.683000px;}
.yd0{bottom:884.079000px;}
.y25{bottom:884.425500px;}
.y9c{bottom:886.305000px;}
.y164{bottom:886.522500px;}
.y1a8{bottom:890.929500px;}
.yfc{bottom:893.994000px;}
.y9e{bottom:894.525000px;}
.y11d{bottom:898.029000px;}
.y203{bottom:898.249500px;}
.y57{bottom:898.477500px;}
.y24{bottom:900.565500px;}
.y163{bottom:905.352000px;}
.y1a7{bottom:909.759000px;}
.y99{bottom:910.962000px;}
.y233{bottom:911.254500px;}
.yfb{bottom:912.823500px;}
.y11c{bottom:916.858500px;}
.y202{bottom:917.079000px;}
.y56{bottom:917.307000px;}
.ycf{bottom:917.644500px;}
.y97{bottom:919.182000px;}
.y23{bottom:921.045000px;}
.y9b{bottom:924.064500px;}
.y96{bottom:927.400500px;}
.y232{bottom:928.515000px;}
.yfa{bottom:931.653000px;}
.y22{bottom:932.844000px;}
.y189{bottom:935.200500px;}
.y9a{bottom:935.620500px;}
.y11b{bottom:935.688000px;}
.y55{bottom:936.136500px;}
.y21{bottom:937.183500px;}
.y201{bottom:940.392000px;}
.y98{bottom:943.839000px;}
.y231{bottom:945.775500px;}
.y20{bottom:948.984000px;}
.yf9{bottom:950.482500px;}
.y188{bottom:951.639000px;}
.y1f{bottom:953.323500px;}
.ycc{bottom:953.352000px;}
.y11a{bottom:954.517500px;}
.y54{bottom:954.966000px;}
.y230{bottom:963.036000px;}
.y268{bottom:967.519500px;}
.y95{bottom:967.779000px;}
.y187{bottom:968.077500px;}
.yf8{bottom:969.312000px;}
.ycd{bottom:971.286000px;}
.y119{bottom:973.347000px;}
.y53{bottom:973.795500px;}
.y200{bottom:977.388000px;}
.y22f{bottom:980.296500px;}
.y186{bottom:984.516000px;}
.y267{bottom:984.780000px;}
.yf7{bottom:988.141500px;}
.y94{bottom:991.719000px;}
.y118{bottom:992.176500px;}
.y52{bottom:992.625000px;}
.y1e{bottom:996.804000px;}
.y22e{bottom:997.557000px;}
.y1ff{bottom:999.220500px;}
.y185{bottom:1000.954500px;}
.y266{bottom:1002.040500px;}
.yf6{bottom:1006.971000px;}
.y51{bottom:1011.454500px;}
.y22d{bottom:1014.817500px;}
.y117{bottom:1015.489500px;}
.y93{bottom:1015.657500px;}
.y265{bottom:1019.299500px;}
.y184{bottom:1024.894500px;}
.yf5{bottom:1025.800500px;}
.y50{bottom:1030.284000px;}
.y22c{bottom:1032.076500px;}
.y1fe{bottom:1032.096000px;}
.y264{bottom:1036.560000px;}
.y1d{bottom:1036.723500px;}
.y92{bottom:1039.597500px;}
.yf4{bottom:1044.630000px;}
.y8f{bottom:1047.817500px;}
.y183{bottom:1048.833000px;}
.y4f{bottom:1049.113500px;}
.y22b{bottom:1049.337000px;}
.y263{bottom:1053.820500px;}
.y91{bottom:1056.036000px;}
.y1a5{bottom:1060.729500px;}
.y1a6{bottom:1061.218500px;}
.yf3{bottom:1063.459500px;}
.y8e{bottom:1064.256000px;}
.y1c{bottom:1064.967000px;}
.y1f3{bottom:1065.700500px;}
.y22a{bottom:1066.597500px;}
.y4e{bottom:1067.943000px;}
.y262{bottom:1071.081000px;}
.y90{bottom:1072.474500px;}
.y1a4{bottom:1079.224500px;}
.yf2{bottom:1082.289000px;}
.y229{bottom:1083.858000px;}
.y4d{bottom:1086.772500px;}
.y261{bottom:1088.341500px;}
.y1b{bottom:1093.212000px;}
.y4c{bottom:1105.602000px;}
.y8d{bottom:1107.082500px;}
.y4b{bottom:1168.366500px;}
.h1e{height:21.567091px;}
.h7{height:26.217754px;}
.h2{height:30.587087px;}
.h3{height:30.670772px;}
.h1d{height:33.209038px;}
.h1a{height:33.299897px;}
.h8{height:34.956859px;}
.hd{height:35.052500px;}
.h1c{height:37.921265px;}
.h9{height:38.734848px;}
.ha{height:39.326630px;}
.h21{height:39.434227px;}
.h18{height:40.745792px;}
.h19{height:42.799330px;}
.hb{height:43.038432px;}
.hc{height:43.695964px;}
.h4{height:43.815515px;}
.h16{height:45.392700px;}
.h1b{height:46.714950px;}
.h15{height:50.117087px;}
.h12{height:52.224150px;}
.h13{height:52.230150px;}
.h11{height:52.670630px;}
.h6{height:54.411312px;}
.he{height:71.608848px;}
.h1f{height:71.614848px;}
.h10{height:72.200630px;}
.hf{height:72.206630px;}
.h5{height:77.469696px;}
.h20{height:104.488848px;}
.h14{height:105.080630px;}
.h17{height:141.521281px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:165.007963px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x55{left:23.723872px;}
.x1{left:53.574000px;}
.x37{left:62.541000px;}
.x46{left:67.815000px;}
.x41{left:76.711500px;}
.x95{left:80.887500px;}
.x45{left:82.522500px;}
.x2c{left:84.109500px;}
.x53{left:85.593000px;}
.x39{left:87.109500px;}
.x38{left:93.483000px;}
.xc4{left:99.291000px;}
.x42{left:103.651500px;}
.x2b{left:105.520500px;}
.xc3{left:171.045000px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x21{left:253.714500px;}
.x64{left:258.556500px;}
.x22{left:261.933000px;}
.x98{left:268.440000px;}
.x3{left:269.764500px;}
.x6{left:281.479500px;}
.x4f{left:283.804500px;}
.xa0{left:285.957000px;}
.xba{left:287.071500px;}
.x9f{left:291.054000px;}
.x7{left:294.886500px;}
.x49{left:296.439000px;}
.xb4{left:297.645000px;}
.x50{left:298.749000px;}
.x8{left:302.359500px;}
.x47{left:305.013000px;}
.x66{left:306.858000px;}
.x5{left:309.216000px;}
.x6f{left:310.249500px;}
.x1c{left:312.984000px;}
.xf{left:316.572000px;}
.x9{left:319.278000px;}
.xbb{left:322.963500px;}
.x10{left:324.043500px;}
.x70{left:325.192500px;}
.xa{left:326.749500px;}
.x48{left:328.233000px;}
.x3a{left:329.907000px;}
.x23{left:331.552500px;}
.xb6{left:332.685000px;}
.x24{left:336.031500px;}
.x69{left:337.066500px;}
.xab{left:339.019500px;}
.x7e{left:340.324500px;}
.x82{left:344.010000px;}
.xb5{left:350.127000px;}
.xa7{left:352.752000px;}
.x99{left:354.637500px;}
.x79{left:356.724000px;}
.x6a{left:357.981000px;}
.x93{left:363.313500px;}
.x6b{left:364.753500px;}
.x8c{left:370.528500px;}
.x8d{left:378.745500px;}
.x8b{left:379.917000px;}
.xae{left:384.685500px;}
.x2a{left:386.053500px;}
.xbc{left:388.542000px;}
.xc5{left:391.806000px;}
.xbd{left:393.618000px;}
.x18{left:400.318500px;}
.x88{left:404.400000px;}
.x25{left:407.719500px;}
.x6c{left:408.841500px;}
.x19{left:415.261500px;}
.xaa{left:418.815000px;}
.x12{left:420.457500px;}
.x96{left:421.749000px;}
.x97{left:429.222000px;}
.x13{left:435.400500px;}
.xa5{left:437.070000px;}
.xc0{left:438.414000px;}
.x5b{left:442.720500px;}
.x85{left:444.013500px;}
.x2e{left:450.385500px;}
.xb0{left:453.151500px;}
.x2f{left:455.953500px;}
.x2d{left:459.430500px;}
.x4a{left:463.417500px;}
.x63{left:465.048000px;}
.x54{left:467.127000px;}
.x86{left:468.735000px;}
.xb1{left:472.219500px;}
.x91{left:473.245500px;}
.x1a{left:478.870500px;}
.x94{left:484.167000px;}
.x87{left:486.160500px;}
.x4d{left:488.230500px;}
.x1b{left:493.815000px;}
.x4b{left:497.226000px;}
.x56{left:498.984000px;}
.x4e{left:503.175000px;}
.x4c{left:512.170500px;}
.x5c{left:514.848000px;}
.x6d{left:525.903000px;}
.x9b{left:529.273500px;}
.x9a{left:535.245000px;}
.x3b{left:537.546000px;}
.x30{left:546.079500px;}
.x3d{left:550.402500px;}
.x3c{left:551.748000px;}
.xb7{left:562.026000px;}
.xa4{left:565.345500px;}
.x8e{left:567.184500px;}
.x6e{left:569.976000px;}
.x16{left:572.611500px;}
.x5e{left:574.021500px;}
.x8f{left:575.403000px;}
.x7a{left:579.792000px;}
.x92{left:581.856000px;}
.x75{left:583.485000px;}
.xb8{left:584.554500px;}
.x17{left:587.556000px;}
.x5f{left:588.966000px;}
.xac{left:590.353500px;}
.x51{left:592.057500px;}
.x84{left:593.272500px;}
.xb9{left:594.489000px;}
.x76{left:596.343000px;}
.x52{left:599.530500px;}
.x8a{left:602.599500px;}
.x26{left:612.235500px;}
.xd{left:615.099000px;}
.xbf{left:616.786500px;}
.x27{left:618.960000px;}
.x61{left:620.008500px;}
.xe{left:622.572000px;}
.x7b{left:623.878500px;}
.x62{left:627.481500px;}
.x9c{left:630.970500px;}
.x3f{left:632.004000px;}
.x90{left:635.227500px;}
.x32{left:643.603500px;}
.x31{left:646.926000px;}
.x77{left:650.083500px;}
.x73{left:653.211000px;}
.x7f{left:655.554000px;}
.x43{left:658.758000px;}
.x33{left:660.631500px;}
.x44{left:662.121000px;}
.x67{left:664.803000px;}
.x3e{left:668.344500px;}
.xbe{left:671.901000px;}
.x57{left:673.903500px;}
.xa1{left:675.805500px;}
.x78{left:678.829500px;}
.x9d{left:681.487500px;}
.x89{left:683.610000px;}
.x59{left:685.189500px;}
.x28{left:689.002500px;}
.x1d{left:690.589500px;}
.x68{left:692.508000px;}
.xb{left:694.545000px;}
.xc1{left:696.472500px;}
.x1e{left:698.806500px;}
.x5a{left:700.134000px;}
.xc{left:702.018000px;}
.xca{left:703.624500px;}
.xa2{left:708.291000px;}
.x11{left:710.196000px;}
.x40{left:711.739500px;}
.xc2{left:712.884000px;}
.x71{left:714.480000px;}
.x83{left:716.737500px;}
.xc6{left:717.741000px;}
.xcb{left:725.185500px;}
.x72{left:729.424500px;}
.xa8{left:731.094000px;}
.xb3{left:733.411500px;}
.x58{left:735.403500px;}
.xc8{left:741.961500px;}
.xa9{left:743.544000px;}
.xc7{left:744.640500px;}
.x35{left:749.934000px;}
.x65{left:751.335000px;}
.x34{left:762.751500px;}
.x36{left:764.965500px;}
.xa6{left:766.756500px;}
.x29{left:768.709500px;}
.x1f{left:771.160500px;}
.x20{left:777.132000px;}
.x60{left:786.621000px;}
.x7c{left:788.328000px;}
.x5d{left:792.141000px;}
.x9e{left:794.395500px;}
.xcc{left:796.305000px;}
.x80{left:798.540000px;}
.xad{left:801.522000px;}
.xaf{left:803.980500px;}
.x81{left:806.013000px;}
.x7d{left:809.241000px;}
.x74{left:810.460500px;}
.x14{left:818.046000px;}
.xb2{left:820.554000px;}
.xa3{left:826.377000px;}
.x15{left:832.990500px;}
.xc9{left:837.300000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.vc{vertical-align:-11.141333pt;}
.vb{vertical-align:-9.706667pt;}
.va{vertical-align:-7.973333pt;}
.v9{vertical-align:-4.935077pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.109333pt;}
.v4{vertical-align:11.861333pt;}
.v8{vertical-align:15.434667pt;}
.v5{vertical-align:17.354667pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:29.221333pt;}
.v6{vertical-align:58.448000pt;}
.ls19{letter-spacing:-1.326311pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls1c{letter-spacing:0.000537pt;}
.ls4b{letter-spacing:0.000711pt;}
.ls38{letter-spacing:0.000842pt;}
.lsa{letter-spacing:0.001007pt;}
.ls1d{letter-spacing:0.001015pt;}
.ls9{letter-spacing:0.002825pt;}
.ls1f{letter-spacing:0.501867pt;}
.ls23{letter-spacing:0.502349pt;}
.ls41{letter-spacing:0.503452pt;}
.ls20{letter-spacing:0.507682pt;}
.ls3e{letter-spacing:0.601548pt;}
.ls25{letter-spacing:0.666378pt;}
.ls1e{letter-spacing:0.767711pt;}
.ls3c{letter-spacing:1.009547pt;}
.ls22{letter-spacing:1.167711pt;}
.ls42{letter-spacing:1.331543pt;}
.ls24{letter-spacing:2.392877pt;}
.ls43{letter-spacing:2.919452pt;}
.ls11{letter-spacing:3.120533pt;}
.ls0{letter-spacing:9.293600pt;}
.ls6{letter-spacing:10.626533pt;}
.ls3f{letter-spacing:10.995733pt;}
.ls2c{letter-spacing:11.112092pt;}
.ls40{letter-spacing:11.629762pt;}
.ls16{letter-spacing:11.953007pt;}
.ls4e{letter-spacing:11.954133pt;}
.ls17{letter-spacing:11.958340pt;}
.ls51{letter-spacing:11.959467pt;}
.ls49{letter-spacing:12.125608pt;}
.ls4f{letter-spacing:12.177997pt;}
.lse{letter-spacing:12.528078pt;}
.lsd{letter-spacing:12.533411pt;}
.ls50{letter-spacing:12.708852pt;}
.ls4a{letter-spacing:12.724539pt;}
.ls2a{letter-spacing:12.748727pt;}
.ls32{letter-spacing:12.994978pt;}
.ls45{letter-spacing:13.043603pt;}
.ls1a{letter-spacing:13.070931pt;}
.ls37{letter-spacing:13.107259pt;}
.ls2f{letter-spacing:13.192479pt;}
.ls36{letter-spacing:13.196446pt;}
.lsb{letter-spacing:13.230333pt;}
.ls35{letter-spacing:13.238981pt;}
.ls2d{letter-spacing:13.278078pt;}
.ls14{letter-spacing:13.281067pt;}
.ls39{letter-spacing:13.285044pt;}
.ls44{letter-spacing:13.391020pt;}
.ls47{letter-spacing:13.436939pt;}
.ls3b{letter-spacing:13.462490pt;}
.ls30{letter-spacing:13.549136pt;}
.ls2e{letter-spacing:13.615920pt;}
.ls15{letter-spacing:13.671440pt;}
.ls4c{letter-spacing:13.765061pt;}
.ls29{letter-spacing:14.346144pt;}
.ls1b{letter-spacing:14.877483pt;}
.ls18{letter-spacing:14.983750pt;}
.ls48{letter-spacing:15.036884pt;}
.ls46{letter-spacing:15.832914pt;}
.ls31{letter-spacing:15.833892pt;}
.ls3a{letter-spacing:15.937067pt;}
.ls27{letter-spacing:15.942400pt;}
.ls33{letter-spacing:15.958404pt;}
.ls34{letter-spacing:15.963633pt;}
.ls4d{letter-spacing:16.405584pt;}
.ls2b{letter-spacing:17.002837pt;}
.ls3d{letter-spacing:17.123096pt;}
.ls21{letter-spacing:17.128429pt;}
.ls2{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls3{letter-spacing:64.321067pt;}
.ls10{letter-spacing:164.048533pt;}
.ls12{letter-spacing:176.005867pt;}
.lsf{letter-spacing:179.035200pt;}
.ls13{letter-spacing:206.021867pt;}
.ls26{letter-spacing:682.235733pt;}
.ls8{letter-spacing:2463.098400pt;}
.lsc{letter-spacing:2464.165067pt;}
.ls28{letter-spacing:2465.226400pt;}
.wsc8{word-spacing:-13.283467pt;}
.ws50{word-spacing:-11.955200pt;}
.ws2e{word-spacing:-10.626800pt;}
.wsf{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws7e{word-spacing:-2.762961pt;}
.ws7a{word-spacing:-2.497292pt;}
.wsc4{word-spacing:-2.444158pt;}
.ws9a{word-spacing:-2.391024pt;}
.wsbd{word-spacing:-2.231622pt;}
.ws9b{word-spacing:-2.178489pt;}
.ws6e{word-spacing:-2.125355pt;}
.ws94{word-spacing:-2.104115pt;}
.wsf1{word-spacing:-2.056294pt;}
.ws71{word-spacing:-2.019087pt;}
.ws6d{word-spacing:-1.912819pt;}
.ws76{word-spacing:-1.859685pt;}
.ws84{word-spacing:-1.647150pt;}
.wsef{word-spacing:-1.578086pt;}
.ws39{word-spacing:-1.540882pt;}
.ws69{word-spacing:-1.222079pt;}
.wsbc{word-spacing:-1.168945pt;}
.ws99{word-spacing:-1.115811pt;}
.wsbe{word-spacing:-1.099878pt;}
.wsc7{word-spacing:-1.062677pt;}
.ws5{word-spacing:-1.041421pt;}
.ws7b{word-spacing:-1.009543pt;}
.ws3b{word-spacing:-0.956410pt;}
.ws7{word-spacing:-0.929840pt;}
.wsf7{word-spacing:-0.908595pt;}
.ws6f{word-spacing:-0.903276pt;}
.wsbf{word-spacing:-0.860774pt;}
.ws72{word-spacing:-0.797008pt;}
.ws3a{word-spacing:-0.743874pt;}
.wsc0{word-spacing:-0.690740pt;}
.wsdd{word-spacing:-0.669491pt;}
.ws83{word-spacing:-0.584473pt;}
.ws92{word-spacing:-0.537271pt;}
.ws91{word-spacing:-0.531339pt;}
.wse9{word-spacing:-0.526029pt;}
.ws6a{word-spacing:-0.478205pt;}
.ws3c{word-spacing:-0.371937pt;}
.ws27{word-spacing:-0.318803pt;}
.ws24{word-spacing:-0.265669pt;}
.ws32{word-spacing:-0.212535pt;}
.ws17{word-spacing:-0.191283pt;}
.ws2b{word-spacing:-0.159402pt;}
.ws77{word-spacing:-0.143462pt;}
.ws2a{word-spacing:-0.106268pt;}
.ws78{word-spacing:-0.095642pt;}
.ws29{word-spacing:-0.053134pt;}
.ws19{word-spacing:-0.047821pt;}
.ws2f{word-spacing:-0.042507pt;}
.ws87{word-spacing:-0.040382pt;}
.wsb4{word-spacing:-0.005724pt;}
.ws59{word-spacing:-0.004301pt;}
.ws5a{word-spacing:-0.003200pt;}
.wsb3{word-spacing:-0.002177pt;}
.ws89{word-spacing:-0.001770pt;}
.ws5f{word-spacing:-0.001067pt;}
.ws1{word-spacing:0.000000pt;}
.ws58{word-spacing:0.001067pt;}
.wsb5{word-spacing:0.003564pt;}
.ws18{word-spacing:0.047821pt;}
.ws1e{word-spacing:0.053134pt;}
.ws9f{word-spacing:0.095642pt;}
.ws25{word-spacing:0.106268pt;}
.ws12{word-spacing:0.127522pt;}
.ws14{word-spacing:0.143462pt;}
.ws34{word-spacing:0.159402pt;}
.ws11{word-spacing:0.170029pt;}
.ws96{word-spacing:0.191283pt;}
.ws22{word-spacing:0.212535pt;}
.wseb{word-spacing:0.239104pt;}
.ws31{word-spacing:0.265669pt;}
.wsee{word-spacing:0.286925pt;}
.ws3e{word-spacing:0.318803pt;}
.ws61{word-spacing:0.371937pt;}
.ws48{word-spacing:0.425071pt;}
.ws30{word-spacing:0.478205pt;}
.ws9d{word-spacing:0.478208pt;}
.ws75{word-spacing:0.531339pt;}
.wse3{word-spacing:0.573850pt;}
.ws41{word-spacing:0.584473pt;}
.ws56{word-spacing:0.596267pt;}
.ws5e{word-spacing:0.601600pt;}
.ws9e{word-spacing:0.621670pt;}
.ws68{word-spacing:0.690740pt;}
.ws9c{word-spacing:0.717312pt;}
.ws65{word-spacing:0.743874pt;}
.wse1{word-spacing:0.765133pt;}
.ws8e{word-spacing:0.812954pt;}
.ws6{word-spacing:0.892646pt;}
.ws62{word-spacing:0.903276pt;}
.ws2c{word-spacing:0.956410pt;}
.ws64{word-spacing:1.009543pt;}
.ws3f{word-spacing:1.062677pt;}
.ws4b{word-spacing:1.115811pt;}
.wsa1{word-spacing:1.168945pt;}
.wsca{word-spacing:1.275213pt;}
.wsd7{word-spacing:1.291162pt;}
.wsc2{word-spacing:1.381481pt;}
.wsd8{word-spacing:1.386803pt;}
.ws7d{word-spacing:1.434614pt;}
.ws16{word-spacing:1.434624pt;}
.ws47{word-spacing:1.487748pt;}
.wsf4{word-spacing:1.530266pt;}
.ws40{word-spacing:1.540882pt;}
.wsfd{word-spacing:1.578086pt;}
.ws85{word-spacing:1.594016pt;}
.ws23{word-spacing:1.647150pt;}
.ws13{word-spacing:1.673728pt;}
.ws49{word-spacing:1.700284pt;}
.wsb8{word-spacing:1.753418pt;}
.ws7f{word-spacing:1.806551pt;}
.ws8a{word-spacing:1.912819pt;}
.ws95{word-spacing:1.912832pt;}
.ws42{word-spacing:1.965953pt;}
.wsdf{word-spacing:2.008474pt;}
.ws1c{word-spacing:2.019087pt;}
.ws8f{word-spacing:2.072221pt;}
.ws43{word-spacing:2.125355pt;}
.wsbb{word-spacing:2.178489pt;}
.ws45{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws38{word-spacing:2.284756pt;}
.ws37{word-spacing:2.337890pt;}
.ws26{word-spacing:2.391024pt;}
.ws4e{word-spacing:2.438861pt;}
.ws4a{word-spacing:2.444158pt;}
.wsa5{word-spacing:2.497292pt;}
.wsaf{word-spacing:2.550426pt;}
.wsb0{word-spacing:2.554361pt;}
.ws33{word-spacing:2.603559pt;}
.ws8c{word-spacing:2.630144pt;}
.wsb2{word-spacing:2.656693pt;}
.wsb1{word-spacing:2.709827pt;}
.ws44{word-spacing:2.816095pt;}
.ws1a{word-spacing:2.861926pt;}
.wsd9{word-spacing:2.866509pt;}
.ws8b{word-spacing:2.917069pt;}
.ws3d{word-spacing:2.922363pt;}
.ws70{word-spacing:2.975497pt;}
.wsb7{word-spacing:3.028630pt;}
.ws7c{word-spacing:3.081764pt;}
.wsc3{word-spacing:3.134898pt;}
.ws1b{word-spacing:3.188032pt;}
.wsa3{word-spacing:3.241166pt;}
.wsa4{word-spacing:3.294300pt;}
.ws80{word-spacing:3.347434pt;}
.ws8d{word-spacing:3.347456pt;}
.ws20{word-spacing:3.400567pt;}
.wse6{word-spacing:3.490918pt;}
.ws1f{word-spacing:3.506835pt;}
.wsc9{word-spacing:3.666237pt;}
.wsed{word-spacing:3.682202pt;}
.wsa7{word-spacing:3.719371pt;}
.ws35{word-spacing:3.772505pt;}
.ws36{word-spacing:3.825638pt;}
.ws63{word-spacing:3.878772pt;}
.wsc6{word-spacing:3.931906pt;}
.wsa6{word-spacing:4.038174pt;}
.wsc5{word-spacing:4.144442pt;}
.wsd{word-spacing:4.240070pt;}
.ws28{word-spacing:4.250709pt;}
.ws6b{word-spacing:4.303843pt;}
.wse{word-spacing:4.314458pt;}
.ws6c{word-spacing:4.356977pt;}
.ws98{word-spacing:4.569513pt;}
.wsae{word-spacing:4.622646pt;}
.wsfa{word-spacing:4.638618pt;}
.wscb{word-spacing:4.728914pt;}
.ws90{word-spacing:4.782048pt;}
.wsc1{word-spacing:4.835182pt;}
.ws73{word-spacing:4.888316pt;}
.wsd6{word-spacing:4.994583pt;}
.wsa0{word-spacing:5.100851pt;}
.ws4d{word-spacing:5.116826pt;}
.ws67{word-spacing:5.153985pt;}
.ws74{word-spacing:5.207119pt;}
.ws51{word-spacing:5.260253pt;}
.ws15{word-spacing:5.403750pt;}
.ws4c{word-spacing:5.499392pt;}
.ws97{word-spacing:5.738458pt;}
.ws4f{word-spacing:5.738496pt;}
.wsb6{word-spacing:5.843369pt;}
.wsa2{word-spacing:6.057261pt;}
.ws21{word-spacing:6.322930pt;}
.ws1d{word-spacing:6.376064pt;}
.ws82{word-spacing:6.694867pt;}
.ws81{word-spacing:6.907403pt;}
.wsb{word-spacing:6.918010pt;}
.wsd5{word-spacing:7.066804pt;}
.ws79{word-spacing:7.226206pt;}
.ws86{word-spacing:8.395151pt;}
.ws2{word-spacing:9.259165pt;}
.wsf0{word-spacing:9.851085pt;}
.ws2d{word-spacing:10.583490pt;}
.ws9{word-spacing:10.823338pt;}
.wsf6{word-spacing:10.998784pt;}
.wsde{word-spacing:11.237888pt;}
.wsf8{word-spacing:11.763917pt;}
.wse4{word-spacing:11.859558pt;}
.wsec{word-spacing:11.902242pt;}
.wse8{word-spacing:11.906082pt;}
.wsea{word-spacing:11.907183pt;}
.wse5{word-spacing:11.907379pt;}
.wsf2{word-spacing:11.955200pt;}
.wsfc{word-spacing:12.003021pt;}
.wse0{word-spacing:12.050842pt;}
.wsfb{word-spacing:12.098662pt;}
.ws46{word-spacing:13.230333pt;}
.wsf3{word-spacing:13.389824pt;}
.ws4{word-spacing:13.761632pt;}
.wsa{word-spacing:14.319536pt;}
.wsfe{word-spacing:14.537523pt;}
.wse7{word-spacing:14.776627pt;}
.wsf9{word-spacing:16.545997pt;}
.wse2{word-spacing:16.880742pt;}
.wsb9{word-spacing:16.927157pt;}
.ws88{word-spacing:18.945397pt;}
.wsc{word-spacing:23.208806pt;}
.ws8{word-spacing:23.858002pt;}
.ws10{word-spacing:40.936533pt;}
.wsf5{word-spacing:42.658133pt;}
.wsda{word-spacing:87.559885pt;}
.wsdc{word-spacing:89.664000pt;}
.wsab{word-spacing:94.111334pt;}
.wsdb{word-spacing:106.018714pt;}
.ws5c{word-spacing:114.438596pt;}
.wsa9{word-spacing:118.021734pt;}
.wsaa{word-spacing:141.932134pt;}
.ws60{word-spacing:159.961600pt;}
.wscc{word-spacing:166.016196pt;}
.wsad{word-spacing:194.869760pt;}
.ws54{word-spacing:198.599782pt;}
.wscd{word-spacing:200.036642pt;}
.wsac{word-spacing:206.824960pt;}
.ws66{word-spacing:207.760222pt;}
.ws52{word-spacing:212.657638pt;}
.ws53{word-spacing:220.645171pt;}
.ws57{word-spacing:223.464303pt;}
.ws5b{word-spacing:231.928303pt;}
.ws55{word-spacing:238.972817pt;}
.ws5d{word-spacing:274.836284pt;}
.wsd0{word-spacing:280.468992pt;}
.ws93{word-spacing:284.868506pt;}
.wsd2{word-spacing:288.024678pt;}
.wsd1{word-spacing:290.559181pt;}
.wsd3{word-spacing:296.488960pt;}
.wsd4{word-spacing:310.691738pt;}
.wsce{word-spacing:310.739558pt;}
.wscf{word-spacing:313.226240pt;}
.wsa8{word-spacing:451.715277pt;}
.wsba{word-spacing:665.714215pt;}
._55{margin-left:-19.526794pt;}
._54{margin-left:-17.969974pt;}
._6{margin-left:-10.616218pt;}
._15{margin-left:-6.822400pt;}
._a{margin-left:-5.355930pt;}
._2{margin-left:-4.128490pt;}
._0{margin-left:-2.752326pt;}
._4{margin-left:-1.338970pt;}
._2b{width:1.136807pt;}
._3{width:2.045648pt;}
._f{width:4.367600pt;}
._1{width:10.937301pt;}
._8{width:12.412102pt;}
._9{width:14.298419pt;}
._2a{width:15.536335pt;}
._e{width:16.630900pt;}
._11{width:17.916736pt;}
._c{width:19.223949pt;}
._17{width:20.297137pt;}
._16{width:21.625484pt;}
._3b{width:22.964453pt;}
._10{width:24.175909pt;}
._13{width:25.397988pt;}
._5{width:27.188522pt;}
._14{width:28.373485pt;}
._52{width:29.702142pt;}
._b{width:30.605312pt;}
._25{width:32.464793pt;}
._57{width:34.896804pt;}
._d{width:36.247920pt;}
._53{width:39.132923pt;}
._7{width:48.991760pt;}
._56{width:54.993920pt;}
._4e{width:63.745126pt;}
._4d{width:76.321997pt;}
._51{width:78.904320pt;}
._3c{width:84.945642pt;}
._4f{width:86.029619pt;}
._2f{width:96.428038pt;}
._1a{width:98.845594pt;}
._3d{width:102.001135pt;}
._1f{width:108.266291pt;}
._20{width:114.243891pt;}
._50{width:122.277786pt;}
._21{width:124.589085pt;}
._31{width:129.883520pt;}
._1e{width:142.121190pt;}
._32{width:148.627046pt;}
._19{width:154.668368pt;}
._33{width:160.582246pt;}
._34{width:169.046528pt;}
._30{width:179.519283pt;}
._1d{width:182.005965pt;}
._38{width:194.869760pt;}
._36{width:206.872781pt;}
._3a{width:218.827981pt;}
._18{width:256.048464pt;}
._39{width:258.567066pt;}
._22{width:273.416609pt;}
._37{width:274.539213pt;}
._35{width:276.691149pt;}
._4b{width:303.901184pt;}
._49{width:307.487744pt;}
._27{width:308.826726pt;}
._1b{width:323.628641pt;}
._23{width:330.106982pt;}
._4a{width:333.380933pt;}
._44{width:337.136640pt;}
._40{width:339.671142pt;}
._48{width:342.805179pt;}
._3e{width:345.122714pt;}
._45{width:346.487381pt;}
._46{width:350.765568pt;}
._1c{width:357.317018pt;}
._42{width:362.959872pt;}
._24{width:367.289429pt;}
._3f{width:374.436864pt;}
._4c{width:383.401490pt;}
._47{width:384.361454pt;}
._43{width:397.699909pt;}
._41{width:400.786125pt;}
._2c{width:408.867840pt;}
._29{width:422.305485pt;}
._28{width:504.605069pt;}
._26{width:577.818726pt;}
._2e{width:740.457267pt;}
._2d{width:759.059558pt;}
._12{width:786.854715pt;}
.fs4{font-size:31.880533pt;}
.fs9{font-size:33.219200pt;}
.fs0{font-size:37.193600pt;}
.fs8{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs7{font-size:49.829333pt;}
.fsa{font-size:51.011947pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:28.346667pt;}
.y1ca{bottom:81.400000pt;}
.y116{bottom:81.480000pt;}
.y17a{bottom:82.645333pt;}
.y1c9{bottom:84.124000pt;}
.y260{bottom:88.906667pt;}
.y49{bottom:92.108000pt;}
.y1a{bottom:93.018667pt;}
.y80{bottom:94.086667pt;}
.y1f2{bottom:95.681333pt;}
.y1c8{bottom:98.137333pt;}
.y115{bottom:98.217333pt;}
.y179{bottom:99.382667pt;}
.y1c7{bottom:100.861333pt;}
.y25f{bottom:104.249333pt;}
.y48{bottom:108.844000pt;}
.y19{bottom:108.920000pt;}
.y1a3{bottom:109.245333pt;}
.y7f{bottom:110.824000pt;}
.y1f1{bottom:112.418667pt;}
.y1a9{bottom:113.254667pt;}
.y162{bottom:113.844000pt;}
.yce{bottom:114.527600pt;}
.y114{bottom:114.954667pt;}
.y178{bottom:116.120000pt;}
.y1c6{bottom:117.598667pt;}
.y1d2{bottom:119.018667pt;}
.y25e{bottom:119.592000pt;}
.y145{bottom:120.388000pt;}
.y18{bottom:124.820000pt;}
.y47{bottom:125.581333pt;}
.y1a2{bottom:125.982667pt;}
.y228{bottom:126.094667pt;}
.y7e{bottom:127.561333pt;}
.y161{bottom:128.456000pt;}
.y1f0{bottom:129.156000pt;}
.y1c5{bottom:131.612000pt;}
.y113{bottom:131.692000pt;}
.y177{bottom:132.857333pt;}
.y1c4{bottom:134.336000pt;}
.y25d{bottom:134.933333pt;}
.y1d1{bottom:136.114667pt;}
.y1fd{bottom:139.429333pt;}
.y17{bottom:140.720000pt;}
.y227{bottom:141.716000pt;}
.y46{bottom:142.318667pt;}
.y1a1{bottom:142.720000pt;}
.y160{bottom:143.068000pt;}
.y7d{bottom:144.298667pt;}
.y144{bottom:145.494667pt;}
.y1ef{bottom:145.893333pt;}
.y1c3{bottom:148.349333pt;}
.y112{bottom:148.429333pt;}
.y176{bottom:149.594667pt;}
.y25c{bottom:150.276000pt;}
.y15e{bottom:150.373333pt;}
.y1c2{bottom:151.073333pt;}
.y1fc{bottom:154.041333pt;}
.y16{bottom:156.621333pt;}
.y226{bottom:157.337333pt;}
.y15f{bottom:157.678667pt;}
.y45{bottom:159.056000pt;}
.y1a0{bottom:159.457333pt;}
.y7c{bottom:161.036000pt;}
.y1ee{bottom:162.630667pt;}
.y111{bottom:165.166667pt;}
.y25b{bottom:165.618667pt;}
.y175{bottom:166.332000pt;}
.y1c1{bottom:167.810667pt;}
.y15d{bottom:172.290667pt;}
.y15{bottom:172.521333pt;}
.y225{bottom:172.960000pt;}
.y1fb{bottom:175.321333pt;}
.y44{bottom:175.793333pt;}
.y19f{bottom:176.194667pt;}
.y7b{bottom:177.773333pt;}
.y143{bottom:178.969333pt;}
.y1ed{bottom:179.368000pt;}
.y25a{bottom:180.961333pt;}
.y1e1{bottom:181.209333pt;}
.y110{bottom:181.904000pt;}
.y174{bottom:183.069333pt;}
.y1d0{bottom:183.201333pt;}
.ycb{bottom:183.904000pt;}
.y1c0{bottom:184.548000pt;}
.y15b{bottom:186.902667pt;}
.y14{bottom:188.421333pt;}
.y224{bottom:188.581333pt;}
.y8c{bottom:190.780000pt;}
.y43{bottom:192.530667pt;}
.y19e{bottom:192.932000pt;}
.y142{bottom:192.981333pt;}
.y7a{bottom:194.510667pt;}
.y141{bottom:195.706667pt;}
.y1ec{bottom:196.105333pt;}
.y259{bottom:196.304000pt;}
.y1fa{bottom:196.601333pt;}
.y1e0{bottom:197.946667pt;}
.y10f{bottom:198.641333pt;}
.y173{bottom:199.806667pt;}
.y1cf{bottom:199.938667pt;}
.yca{bottom:200.641333pt;}
.y1bf{bottom:201.285333pt;}
.y15c{bottom:201.514667pt;}
.y191{bottom:202.626667pt;}
.y223{bottom:204.202667pt;}
.y13{bottom:204.322667pt;}
.yf1{bottom:205.613333pt;}
.y8b{bottom:207.517333pt;}
.y42{bottom:209.268000pt;}
.y19d{bottom:209.668000pt;}
.y1f9{bottom:211.213333pt;}
.y79{bottom:211.248000pt;}
.y258{bottom:211.646667pt;}
.y140{bottom:212.444000pt;}
.y1eb{bottom:212.841333pt;}
.y1df{bottom:214.684000pt;}
.y10e{bottom:215.378667pt;}
.y1ce{bottom:216.676000pt;}
.yc9{bottom:217.378667pt;}
.y1be{bottom:218.022667pt;}
.y222{bottom:219.824000pt;}
.yf0{bottom:220.225333pt;}
.y15a{bottom:222.794667pt;}
.y8a{bottom:224.254667pt;}
.y1f8{bottom:225.825333pt;}
.y41{bottom:226.005333pt;}
.y19c{bottom:226.405333pt;}
.y257{bottom:226.989333pt;}
.y78{bottom:227.985333pt;}
.y13f{bottom:229.181333pt;}
.y1ea{bottom:229.578667pt;}
.y172{bottom:229.642667pt;}
.y1de{bottom:231.421333pt;}
.y190{bottom:232.514667pt;}
.y1cd{bottom:233.413333pt;}
.yc8{bottom:234.116000pt;}
.y1bd{bottom:234.760000pt;}
.yef{bottom:234.837333pt;}
.y221{bottom:235.445333pt;}
.y89{bottom:240.992000pt;}
.y256{bottom:242.332000pt;}
.y40{bottom:242.742667pt;}
.y19b{bottom:243.142667pt;}
.y10d{bottom:243.165333pt;}
.y77{bottom:244.722667pt;}
.y13e{bottom:245.918667pt;}
.y1e9{bottom:246.316000pt;}
.y171{bottom:246.738667pt;}
.y1f7{bottom:247.104000pt;}
.y1dd{bottom:248.158667pt;}
.y18f{bottom:249.252000pt;}
.yc7{bottom:250.853333pt;}
.y159{bottom:250.901333pt;}
.y1bc{bottom:251.497333pt;}
.y1cc{bottom:254.134667pt;}
.yee{bottom:256.116000pt;}
.y255{bottom:257.673333pt;}
.y88{bottom:257.729333pt;}
.y3f{bottom:259.480000pt;}
.y19a{bottom:259.880000pt;}
.y10c{bottom:260.261333pt;}
.y76{bottom:261.460000pt;}
.y13d{bottom:262.656000pt;}
.y1e8{bottom:263.053333pt;}
.y220{bottom:263.329333pt;}
.y170{bottom:263.834667pt;}
.y1dc{bottom:264.896000pt;}
.y18e{bottom:265.989333pt;}
.y12{bottom:266.804000pt;}
.yc6{bottom:267.590667pt;}
.y1bb{bottom:268.234667pt;}
.y1f6{bottom:268.384000pt;}
.y254{bottom:273.016000pt;}
.y87{bottom:274.466667pt;}
.y1f5{bottom:275.689333pt;}
.y182{bottom:275.770667pt;}
.y3e{bottom:276.217333pt;}
.y10b{bottom:277.357333pt;}
.y75{bottom:278.197333pt;}
.y13c{bottom:279.393333pt;}
.y1e7{bottom:279.790667pt;}
.y16f{bottom:280.929333pt;}
.y1cb{bottom:281.181333pt;}
.y1db{bottom:281.633333pt;}
.y11{bottom:282.705333pt;}
.y18d{bottom:282.726667pt;}
.y21f{bottom:282.936000pt;}
.y158{bottom:283.882667pt;}
.yed{bottom:284.222667pt;}
.yc5{bottom:284.328000pt;}
.y1ba{bottom:284.972000pt;}
.y253{bottom:288.358667pt;}
.y86{bottom:291.204000pt;}
.y199{bottom:292.786667pt;}
.y3d{bottom:292.954667pt;}
.y74{bottom:294.934667pt;}
.y13b{bottom:296.129333pt;}
.y1e6{bottom:296.528000pt;}
.y1da{bottom:298.370667pt;}
.y10{bottom:298.605333pt;}
.y18c{bottom:299.464000pt;}
.y157{bottom:300.620000pt;}
.yc4{bottom:301.065333pt;}
.y1b9{bottom:301.709333pt;}
.y252{bottom:303.701333pt;}
.y85{bottom:307.941333pt;}
.y181{bottom:308.946667pt;}
.y198{bottom:309.536000pt;}
.y3c{bottom:309.692000pt;}
.y180{bottom:311.672000pt;}
.y13a{bottom:312.866667pt;}
.y1e5{bottom:313.265333pt;}
.y1f4{bottom:313.758667pt;}
.yf{bottom:314.505333pt;}
.y1d9{bottom:315.108000pt;}
.y21e{bottom:315.613333pt;}
.y73{bottom:315.657333pt;}
.y18b{bottom:316.201333pt;}
.yec{bottom:317.204000pt;}
.y156{bottom:317.357333pt;}
.yc3{bottom:317.802667pt;}
.y1b8{bottom:318.446667pt;}
.y251{bottom:319.044000pt;}
.y197{bottom:324.148000pt;}
.y3b{bottom:326.429333pt;}
.y17f{bottom:328.409333pt;}
.y139{bottom:329.604000pt;}
.y1e4{bottom:330.002667pt;}
.y1d8{bottom:331.845333pt;}
.y72{bottom:333.589333pt;}
.yeb{bottom:333.941333pt;}
.y155{bottom:334.094667pt;}
.y250{bottom:334.386667pt;}
.yc2{bottom:334.540000pt;}
.y1b7{bottom:335.184000pt;}
.y84{bottom:337.777333pt;}
.ye{bottom:338.376000pt;}
.y196{bottom:338.760000pt;}
.y21d{bottom:339.205333pt;}
.y3a{bottom:343.166667pt;}
.y1e3{bottom:344.016000pt;}
.y18a{bottom:344.528000pt;}
.y17e{bottom:345.146667pt;}
.y138{bottom:346.341333pt;}
.y1e2{bottom:346.740000pt;}
.y1d7{bottom:348.582667pt;}
.y24f{bottom:349.729333pt;}
.yea{bottom:350.678667pt;}
.y154{bottom:350.830667pt;}
.yc1{bottom:351.277333pt;}
.y1b6{bottom:351.921333pt;}
.yd{bottom:354.277333pt;}
.y83{bottom:354.873333pt;}
.y39{bottom:359.904000pt;}
.y195{bottom:360.040000pt;}
.y17d{bottom:361.884000pt;}
.y21c{bottom:362.797333pt;}
.y137{bottom:363.078667pt;}
.y71{bottom:363.477333pt;}
.y153{bottom:364.844000pt;}
.y24e{bottom:365.072000pt;}
.y1d6{bottom:365.320000pt;}
.ye9{bottom:367.416000pt;}
.y152{bottom:367.568000pt;}
.yc0{bottom:368.014667pt;}
.y1b5{bottom:368.658667pt;}
.yc{bottom:370.177333pt;}
.y82{bottom:371.969333pt;}
.y194{bottom:374.652000pt;}
.y38{bottom:376.641333pt;}
.y136{bottom:379.816000pt;}
.y70{bottom:380.214667pt;}
.y24d{bottom:380.414667pt;}
.y17c{bottom:382.605333pt;}
.ye8{bottom:384.153333pt;}
.y151{bottom:384.305333pt;}
.ybf{bottom:384.752000pt;}
.y1b4{bottom:385.396000pt;}
.y1d5{bottom:386.042667pt;}
.y21b{bottom:386.388000pt;}
.y81{bottom:389.065333pt;}
.y37{bottom:393.378667pt;}
.yb{bottom:395.376000pt;}
.y24c{bottom:395.756000pt;}
.y135{bottom:396.553333pt;}
.y6f{bottom:396.952000pt;}
.y17b{bottom:400.538667pt;}
.ye7{bottom:400.890667pt;}
.y150{bottom:401.042667pt;}
.ybe{bottom:401.489333pt;}
.y21a{bottom:402.010667pt;}
.y1b3{bottom:402.133333pt;}
.y193{bottom:402.757333pt;}
.y36{bottom:410.116000pt;}
.y24b{bottom:411.098667pt;}
.ya{bottom:411.276000pt;}
.y1d4{bottom:413.089333pt;}
.y134{bottom:413.290667pt;}
.y6e{bottom:413.689333pt;}
.y14f{bottom:415.353333pt;}
.ye6{bottom:417.628000pt;}
.y219{bottom:417.632000pt;}
.y14e{bottom:417.780000pt;}
.ybd{bottom:418.226667pt;}
.y1b2{bottom:418.870667pt;}
.y24a{bottom:426.441333pt;}
.y35{bottom:426.853333pt;}
.y9{bottom:427.177333pt;}
.y133{bottom:430.028000pt;}
.y1d3{bottom:430.185333pt;}
.y6d{bottom:430.426667pt;}
.y192{bottom:433.137333pt;}
.y218{bottom:433.253333pt;}
.ye5{bottom:434.365333pt;}
.y14d{bottom:434.517333pt;}
.ybc{bottom:434.964000pt;}
.y1b1{bottom:435.608000pt;}
.y249{bottom:441.784000pt;}
.y34{bottom:443.590667pt;}
.y132{bottom:446.765333pt;}
.y6c{bottom:447.164000pt;}
.y217{bottom:448.874667pt;}
.y8{bottom:451.048000pt;}
.ye4{bottom:451.102667pt;}
.y14c{bottom:451.254667pt;}
.ybb{bottom:451.701333pt;}
.y248{bottom:457.126667pt;}
.y33{bottom:460.328000pt;}
.y131{bottom:463.502667pt;}
.y6b{bottom:463.901333pt;}
.y1b0{bottom:466.292000pt;}
.y7{bottom:466.948000pt;}
.ye3{bottom:467.840000pt;}
.y14b{bottom:467.992000pt;}
.yba{bottom:468.438667pt;}
.y247{bottom:472.469333pt;}
.y32{bottom:477.065333pt;}
.y130{bottom:480.240000pt;}
.y216{bottom:480.436000pt;}
.y6a{bottom:480.638667pt;}
.y6{bottom:482.848000pt;}
.ye2{bottom:484.577333pt;}
.y14a{bottom:484.729333pt;}
.yb9{bottom:485.176000pt;}
.y246{bottom:487.812000pt;}
.y31{bottom:493.802667pt;}
.y12f{bottom:496.977333pt;}
.y215{bottom:497.173333pt;}
.y69{bottom:497.376000pt;}
.y5{bottom:498.749333pt;}
.ye1{bottom:501.314667pt;}
.y149{bottom:501.466667pt;}
.yb8{bottom:501.913333pt;}
.y245{bottom:503.154667pt;}
.y1ae{bottom:510.990667pt;}
.y1af{bottom:511.288000pt;}
.y12e{bottom:513.714667pt;}
.y214{bottom:513.910667pt;}
.y68{bottom:514.113333pt;}
.y30{bottom:514.524000pt;}
.y4{bottom:514.649333pt;}
.ye0{bottom:518.052000pt;}
.y244{bottom:518.497333pt;}
.yb7{bottom:518.649333pt;}
.y12d{bottom:530.452000pt;}
.y3{bottom:530.549333pt;}
.y213{bottom:530.648000pt;}
.y67{bottom:530.850667pt;}
.y148{bottom:531.302667pt;}
.y243{bottom:533.838667pt;}
.ydf{bottom:534.789333pt;}
.yb6{bottom:535.386667pt;}
.y2{bottom:546.450667pt;}
.y12c{bottom:547.189333pt;}
.y212{bottom:547.385333pt;}
.y66{bottom:547.588000pt;}
.y147{bottom:548.398667pt;}
.y242{bottom:549.181333pt;}
.yde{bottom:551.526667pt;}
.yb5{bottom:552.124000pt;}
.y10a{bottom:560.340000pt;}
.y1{bottom:562.350667pt;}
.y12b{bottom:563.926667pt;}
.y211{bottom:564.122667pt;}
.y65{bottom:564.325333pt;}
.y241{bottom:564.524000pt;}
.y146{bottom:565.494667pt;}
.ydd{bottom:568.264000pt;}
.yb4{bottom:568.861333pt;}
.y109{bottom:577.077333pt;}
.y240{bottom:579.866667pt;}
.y12a{bottom:580.664000pt;}
.y210{bottom:580.860000pt;}
.y64{bottom:581.062667pt;}
.y2f{bottom:581.324000pt;}
.ydc{bottom:585.001333pt;}
.yb3{bottom:585.598667pt;}
.y108{bottom:593.814667pt;}
.y23f{bottom:595.209333pt;}
.y129{bottom:597.401333pt;}
.y20f{bottom:597.597333pt;}
.y63{bottom:597.800000pt;}
.ydb{bottom:601.738667pt;}
.y107{bottom:610.552000pt;}
.yb2{bottom:613.302667pt;}
.y128{bottom:614.138667pt;}
.y20e{bottom:614.334667pt;}
.y62{bottom:614.537333pt;}
.y2e{bottom:614.560000pt;}
.yda{bottom:618.476000pt;}
.y16e{bottom:620.646667pt;}
.y23e{bottom:625.894667pt;}
.y106{bottom:627.289333pt;}
.y127{bottom:630.876000pt;}
.y20d{bottom:631.072000pt;}
.y61{bottom:631.274667pt;}
.y2d{bottom:631.854667pt;}
.yb0{bottom:634.402667pt;}
.yd9{bottom:635.212000pt;}
.y16d{bottom:637.384000pt;}
.y23d{bottom:641.237333pt;}
.yb1{bottom:641.708000pt;}
.y105{bottom:644.026667pt;}
.y126{bottom:647.613333pt;}
.y20c{bottom:647.809333pt;}
.y60{bottom:648.012000pt;}
.yae{bottom:649.014667pt;}
.y2c{bottom:649.150667pt;}
.yd8{bottom:651.949333pt;}
.y16c{bottom:654.121333pt;}
.y23c{bottom:656.578667pt;}
.y104{bottom:660.764000pt;}
.yaf{bottom:663.626667pt;}
.y125{bottom:664.350667pt;}
.y20b{bottom:664.546667pt;}
.y5f{bottom:664.749333pt;}
.y2b{bottom:666.445333pt;}
.yd7{bottom:668.686667pt;}
.y16b{bottom:670.858667pt;}
.y23b{bottom:671.921333pt;}
.y103{bottom:677.501333pt;}
.yac{bottom:678.237333pt;}
.y124{bottom:681.088000pt;}
.y20a{bottom:681.284000pt;}
.y5e{bottom:681.485333pt;}
.y2a{bottom:683.740000pt;}
.yd6{bottom:685.424000pt;}
.ya9{bottom:685.544000pt;}
.y23a{bottom:687.264000pt;}
.y16a{bottom:687.596000pt;}
.yad{bottom:692.572000pt;}
.yab{bottom:692.849333pt;}
.y102{bottom:694.238667pt;}
.y123{bottom:697.825333pt;}
.y209{bottom:698.021333pt;}
.y5d{bottom:698.222667pt;}
.ya8{bottom:700.156000pt;}
.y29{bottom:701.036000pt;}
.yd5{bottom:702.161333pt;}
.y239{bottom:702.606667pt;}
.y169{bottom:704.333333pt;}
.yaa{bottom:707.461333pt;}
.y101{bottom:710.976000pt;}
.y1ad{bottom:712.136000pt;}
.y122{bottom:714.562667pt;}
.y208{bottom:714.758667pt;}
.y5c{bottom:714.960000pt;}
.y238{bottom:717.949333pt;}
.y28{bottom:718.330667pt;}
.yd4{bottom:718.898667pt;}
.y168{bottom:721.070667pt;}
.ya6{bottom:722.073333pt;}
.y100{bottom:727.713333pt;}
.y1ac{bottom:728.873333pt;}
.ya3{bottom:729.380000pt;}
.y121{bottom:731.300000pt;}
.y207{bottom:731.496000pt;}
.y5b{bottom:731.697333pt;}
.y237{bottom:733.292000pt;}
.y27{bottom:735.626667pt;}
.yd3{bottom:735.636000pt;}
.ya7{bottom:736.408000pt;}
.ya5{bottom:736.685333pt;}
.y167{bottom:737.808000pt;}
.ya2{bottom:743.990667pt;}
.yff{bottom:744.450667pt;}
.y120{bottom:748.036000pt;}
.y206{bottom:748.232000pt;}
.y5a{bottom:748.434667pt;}
.y236{bottom:748.634667pt;}
.ya4{bottom:751.297333pt;}
.yd2{bottom:752.373333pt;}
.y26{bottom:752.921333pt;}
.y166{bottom:754.545333pt;}
.yfe{bottom:761.186667pt;}
.y1ab{bottom:762.348000pt;}
.y235{bottom:763.977333pt;}
.y11f{bottom:764.773333pt;}
.y205{bottom:764.969333pt;}
.y59{bottom:765.172000pt;}
.ya0{bottom:765.909333pt;}
.yd1{bottom:769.110667pt;}
.y165{bottom:771.282667pt;}
.y9d{bottom:773.214667pt;}
.yfd{bottom:777.924000pt;}
.y234{bottom:779.320000pt;}
.ya1{bottom:780.244000pt;}
.y9f{bottom:780.521333pt;}
.y11e{bottom:781.510667pt;}
.y204{bottom:781.706667pt;}
.y58{bottom:781.909333pt;}
.y1aa{bottom:785.496000pt;}
.yd0{bottom:785.848000pt;}
.y25{bottom:786.156000pt;}
.y9c{bottom:787.826667pt;}
.y164{bottom:788.020000pt;}
.y1a8{bottom:791.937333pt;}
.yfc{bottom:794.661333pt;}
.y9e{bottom:795.133333pt;}
.y11d{bottom:798.248000pt;}
.y203{bottom:798.444000pt;}
.y57{bottom:798.646667pt;}
.y24{bottom:800.502667pt;}
.y163{bottom:804.757333pt;}
.y1a7{bottom:808.674667pt;}
.y99{bottom:809.744000pt;}
.y233{bottom:810.004000pt;}
.yfb{bottom:811.398667pt;}
.y11c{bottom:814.985333pt;}
.y202{bottom:815.181333pt;}
.y56{bottom:815.384000pt;}
.ycf{bottom:815.684000pt;}
.y97{bottom:817.050667pt;}
.y23{bottom:818.706667pt;}
.y9b{bottom:821.390667pt;}
.y96{bottom:824.356000pt;}
.y232{bottom:825.346667pt;}
.yfa{bottom:828.136000pt;}
.y22{bottom:829.194667pt;}
.y189{bottom:831.289333pt;}
.y9a{bottom:831.662667pt;}
.y11b{bottom:831.722667pt;}
.y55{bottom:832.121333pt;}
.y21{bottom:833.052000pt;}
.y201{bottom:835.904000pt;}
.y98{bottom:838.968000pt;}
.y231{bottom:840.689333pt;}
.y20{bottom:843.541333pt;}
.yf9{bottom:844.873333pt;}
.y188{bottom:845.901333pt;}
.y1f{bottom:847.398667pt;}
.ycc{bottom:847.424000pt;}
.y11a{bottom:848.460000pt;}
.y54{bottom:848.858667pt;}
.y230{bottom:856.032000pt;}
.y268{bottom:860.017333pt;}
.y95{bottom:860.248000pt;}
.y187{bottom:860.513333pt;}
.yf8{bottom:861.610667pt;}
.ycd{bottom:863.365333pt;}
.y119{bottom:865.197333pt;}
.y53{bottom:865.596000pt;}
.y200{bottom:868.789333pt;}
.y22f{bottom:871.374667pt;}
.y186{bottom:875.125333pt;}
.y267{bottom:875.360000pt;}
.yf7{bottom:878.348000pt;}
.y94{bottom:881.528000pt;}
.y118{bottom:881.934667pt;}
.y52{bottom:882.333333pt;}
.y1e{bottom:886.048000pt;}
.y22e{bottom:886.717333pt;}
.y1ff{bottom:888.196000pt;}
.y185{bottom:889.737333pt;}
.y266{bottom:890.702667pt;}
.yf6{bottom:895.085333pt;}
.y51{bottom:899.070667pt;}
.y22d{bottom:902.060000pt;}
.y117{bottom:902.657333pt;}
.y93{bottom:902.806667pt;}
.y265{bottom:906.044000pt;}
.y184{bottom:911.017333pt;}
.yf5{bottom:911.822667pt;}
.y50{bottom:915.808000pt;}
.y22c{bottom:917.401333pt;}
.y1fe{bottom:917.418667pt;}
.y264{bottom:921.386667pt;}
.y1d{bottom:921.532000pt;}
.y92{bottom:924.086667pt;}
.yf4{bottom:928.560000pt;}
.y8f{bottom:931.393333pt;}
.y183{bottom:932.296000pt;}
.y4f{bottom:932.545333pt;}
.y22b{bottom:932.744000pt;}
.y263{bottom:936.729333pt;}
.y91{bottom:938.698667pt;}
.y1a5{bottom:942.870667pt;}
.y1a6{bottom:943.305333pt;}
.yf3{bottom:945.297333pt;}
.y8e{bottom:946.005333pt;}
.y1c{bottom:946.637333pt;}
.y1f3{bottom:947.289333pt;}
.y22a{bottom:948.086667pt;}
.y4e{bottom:949.282667pt;}
.y262{bottom:952.072000pt;}
.y90{bottom:953.310667pt;}
.y1a4{bottom:959.310667pt;}
.yf2{bottom:962.034667pt;}
.y229{bottom:963.429333pt;}
.y4d{bottom:966.020000pt;}
.y261{bottom:967.414667pt;}
.y1b{bottom:971.744000pt;}
.y4c{bottom:982.757333pt;}
.y8d{bottom:984.073333pt;}
.y4b{bottom:1038.548000pt;}
.h1e{height:19.170747pt;}
.h7{height:23.304670pt;}
.h2{height:27.188522pt;}
.h3{height:27.262909pt;}
.h1d{height:29.519145pt;}
.h1a{height:29.599908pt;}
.h8{height:31.072763pt;}
.hd{height:31.157778pt;}
.h1c{height:33.707791pt;}
.h9{height:34.430976pt;}
.ha{height:34.957005pt;}
.h21{height:35.052646pt;}
.h18{height:36.218482pt;}
.h19{height:38.043849pt;}
.hb{height:38.256384pt;}
.hc{height:38.840857pt;}
.h4{height:38.947124pt;}
.h16{height:40.349067pt;}
.h1b{height:41.524400pt;}
.h15{height:44.548522pt;}
.h12{height:46.421467pt;}
.h13{height:46.426800pt;}
.h11{height:46.818338pt;}
.h6{height:48.365611pt;}
.he{height:63.652309pt;}
.h1f{height:63.657643pt;}
.h10{height:64.178338pt;}
.hf{height:64.183671pt;}
.h5{height:68.861952pt;}
.h20{height:92.878976pt;}
.h14{height:93.405005pt;}
.h17{height:125.796695pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:146.673745pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x55{left:21.087886pt;}
.x1{left:47.621333pt;}
.x37{left:55.592000pt;}
.x46{left:60.280000pt;}
.x41{left:68.188000pt;}
.x95{left:71.900000pt;}
.x45{left:73.353333pt;}
.x2c{left:74.764000pt;}
.x53{left:76.082667pt;}
.x39{left:77.430667pt;}
.x38{left:83.096000pt;}
.xc4{left:88.258667pt;}
.x42{left:92.134667pt;}
.x2b{left:93.796000pt;}
.xc3{left:152.040000pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x21{left:225.524000pt;}
.x64{left:229.828000pt;}
.x22{left:232.829333pt;}
.x98{left:238.613333pt;}
.x3{left:239.790667pt;}
.x6{left:250.204000pt;}
.x4f{left:252.270667pt;}
.xa0{left:254.184000pt;}
.xba{left:255.174667pt;}
.x9f{left:258.714667pt;}
.x7{left:262.121333pt;}
.x49{left:263.501333pt;}
.xb4{left:264.573333pt;}
.x50{left:265.554667pt;}
.x8{left:268.764000pt;}
.x47{left:271.122667pt;}
.x66{left:272.762667pt;}
.x5{left:274.858667pt;}
.x6f{left:275.777333pt;}
.x1c{left:278.208000pt;}
.xf{left:281.397333pt;}
.x9{left:283.802667pt;}
.xbb{left:287.078667pt;}
.x10{left:288.038667pt;}
.x70{left:289.060000pt;}
.xa{left:290.444000pt;}
.x48{left:291.762667pt;}
.x3a{left:293.250667pt;}
.x23{left:294.713333pt;}
.xb6{left:295.720000pt;}
.x24{left:298.694667pt;}
.x69{left:299.614667pt;}
.xab{left:301.350667pt;}
.x7e{left:302.510667pt;}
.x82{left:305.786667pt;}
.xb5{left:311.224000pt;}
.xa7{left:313.557333pt;}
.x99{left:315.233333pt;}
.x79{left:317.088000pt;}
.x6a{left:318.205333pt;}
.x93{left:322.945333pt;}
.x6b{left:324.225333pt;}
.x8c{left:329.358667pt;}
.x8d{left:336.662667pt;}
.x8b{left:337.704000pt;}
.xae{left:341.942667pt;}
.x2a{left:343.158667pt;}
.xbc{left:345.370667pt;}
.xc5{left:348.272000pt;}
.xbd{left:349.882667pt;}
.x18{left:355.838667pt;}
.x88{left:359.466667pt;}
.x25{left:362.417333pt;}
.x6c{left:363.414667pt;}
.x19{left:369.121333pt;}
.xaa{left:372.280000pt;}
.x12{left:373.740000pt;}
.x96{left:374.888000pt;}
.x97{left:381.530667pt;}
.x13{left:387.022667pt;}
.xa5{left:388.506667pt;}
.xc0{left:389.701333pt;}
.x5b{left:393.529333pt;}
.x85{left:394.678667pt;}
.x2e{left:400.342667pt;}
.xb0{left:402.801333pt;}
.x2f{left:405.292000pt;}
.x2d{left:408.382667pt;}
.x4a{left:411.926667pt;}
.x63{left:413.376000pt;}
.x54{left:415.224000pt;}
.x86{left:416.653333pt;}
.xb1{left:419.750667pt;}
.x91{left:420.662667pt;}
.x1a{left:425.662667pt;}
.x94{left:430.370667pt;}
.x87{left:432.142667pt;}
.x4d{left:433.982667pt;}
.x1b{left:438.946667pt;}
.x4b{left:441.978667pt;}
.x56{left:443.541333pt;}
.x4e{left:447.266667pt;}
.x4c{left:455.262667pt;}
.x5c{left:457.642667pt;}
.x6d{left:467.469333pt;}
.x9b{left:470.465333pt;}
.x9a{left:475.773333pt;}
.x3b{left:477.818667pt;}
.x30{left:485.404000pt;}
.x3d{left:489.246667pt;}
.x3c{left:490.442667pt;}
.xb7{left:499.578667pt;}
.xa4{left:502.529333pt;}
.x8e{left:504.164000pt;}
.x6e{left:506.645333pt;}
.x16{left:508.988000pt;}
.x5e{left:510.241333pt;}
.x8f{left:511.469333pt;}
.x7a{left:515.370667pt;}
.x92{left:517.205333pt;}
.x75{left:518.653333pt;}
.xb8{left:519.604000pt;}
.x17{left:522.272000pt;}
.x5f{left:523.525333pt;}
.xac{left:524.758667pt;}
.x51{left:526.273333pt;}
.x84{left:527.353333pt;}
.xb9{left:528.434667pt;}
.x76{left:530.082667pt;}
.x52{left:532.916000pt;}
.x8a{left:535.644000pt;}
.x26{left:544.209333pt;}
.xd{left:546.754667pt;}
.xbf{left:548.254667pt;}
.x27{left:550.186667pt;}
.x61{left:551.118667pt;}
.xe{left:553.397333pt;}
.x7b{left:554.558667pt;}
.x62{left:557.761333pt;}
.x9c{left:560.862667pt;}
.x3f{left:561.781333pt;}
.x90{left:564.646667pt;}
.x32{left:572.092000pt;}
.x31{left:575.045333pt;}
.x77{left:577.852000pt;}
.x73{left:580.632000pt;}
.x7f{left:582.714667pt;}
.x43{left:585.562667pt;}
.x33{left:587.228000pt;}
.x44{left:588.552000pt;}
.x67{left:590.936000pt;}
.x3e{left:594.084000pt;}
.xbe{left:597.245333pt;}
.x57{left:599.025333pt;}
.xa1{left:600.716000pt;}
.x78{left:603.404000pt;}
.x9d{left:605.766667pt;}
.x89{left:607.653333pt;}
.x59{left:609.057333pt;}
.x28{left:612.446667pt;}
.x1d{left:613.857333pt;}
.x68{left:615.562667pt;}
.xb{left:617.373333pt;}
.xc1{left:619.086667pt;}
.x1e{left:621.161333pt;}
.x5a{left:622.341333pt;}
.xc{left:624.016000pt;}
.xca{left:625.444000pt;}
.xa2{left:629.592000pt;}
.x11{left:631.285333pt;}
.x40{left:632.657333pt;}
.xc2{left:633.674667pt;}
.x71{left:635.093333pt;}
.x83{left:637.100000pt;}
.xc6{left:637.992000pt;}
.xcb{left:644.609333pt;}
.x72{left:648.377333pt;}
.xa8{left:649.861333pt;}
.xb3{left:651.921333pt;}
.x58{left:653.692000pt;}
.xc8{left:659.521333pt;}
.xa9{left:660.928000pt;}
.xc7{left:661.902667pt;}
.x35{left:666.608000pt;}
.x65{left:667.853333pt;}
.x34{left:678.001333pt;}
.x36{left:679.969333pt;}
.xa6{left:681.561333pt;}
.x29{left:683.297333pt;}
.x1f{left:685.476000pt;}
.x20{left:690.784000pt;}
.x60{left:699.218667pt;}
.x7c{left:700.736000pt;}
.x5d{left:704.125333pt;}
.x9e{left:706.129333pt;}
.xcc{left:707.826667pt;}
.x80{left:709.813333pt;}
.xad{left:712.464000pt;}
.xaf{left:714.649333pt;}
.x81{left:716.456000pt;}
.x7d{left:719.325333pt;}
.x74{left:720.409333pt;}
.x14{left:727.152000pt;}
.xb2{left:729.381333pt;}
.xa3{left:734.557333pt;}
.x15{left:740.436000pt;}
.xc9{left:744.266667pt;}
}


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