
/* 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_57ee31095d19.woff")format("woff");}.ff1{font-family:ff1;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_4241f8ae8098.woff")format("woff");}.ff2{font-family:ff2;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_eb167c0ac2e6.woff")format("woff");}.ff3{font-family:ff3;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_a58f7836026f.woff")format("woff");}.ff4{font-family:ff4;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_1ae56354975e.woff")format("woff");}.ff5{font-family:ff5;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_79dcdc6f476d.woff")format("woff");}.ff6{font-family:ff6;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_632d12bc5e5c.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_1f7f0b55ee6a.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_f683063ddb9c.woff")format("woff");}.ff9{font-family:ff9;line-height:2.399000;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_31914d465c97.woff")format("woff");}.ffa{font-family:ffa;line-height:0.770000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_9439a2f77ddc.woff")format("woff");}.ffb{font-family:ffb;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_8595c54e3708.woff")format("woff");}.ffc{font-family:ffc;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_7788598c81ed.woff")format("woff");}.ffd{font-family:ffd;line-height:0.281000;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;}
.m2{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);}
.m22{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);}
.me{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);}
.m1e{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);}
.m19{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);}
.m1a{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);}
.m27{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m15{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);}
.m1c{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);}
.m12{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);}
.m10{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);}
.m20{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);}
.m24{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);}
.mb{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);}
.m13{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);}
.mc{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);}
.m18{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);}
.m9{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);}
.m5{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);}
.m25{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);}
.m3{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);}
.m1b{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);}
.mf{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);}
.m17{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);}
.m7{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m6{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);}
.m14{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);}
.m26{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);}
.m1f{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);}
.md{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);}
.ma{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);}
.m8{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{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.364000px;}
.v4{vertical-align:-12.612000px;}
.vb{vertical-align:-11.100000px;}
.va{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v7{vertical-align:24.690000px;}
.v8{vertical-align:40.470000px;}
.v6{vertical-align:84.318000px;}
.v5{vertical-align:107.538000px;}
.v3{vertical-align:120.150000px;}
.v9{vertical-align:125.322000px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000600px;}
.lsd{letter-spacing:0.226741px;}
.ls4b{letter-spacing:0.648088px;}
.ls40{letter-spacing:0.660422px;}
.ls4a{letter-spacing:0.670800px;}
.ls13{letter-spacing:0.701607px;}
.ls3e{letter-spacing:0.748200px;}
.ls23{letter-spacing:0.748766px;}
.ls45{letter-spacing:1.195133px;}
.ls8{letter-spacing:1.275394px;}
.ls3c{letter-spacing:1.310725px;}
.ls42{letter-spacing:1.312200px;}
.ls37{letter-spacing:1.312825px;}
.ls3b{letter-spacing:1.316725px;}
.ls2b{letter-spacing:1.318825px;}
.ls27{letter-spacing:1.420741px;}
.ls2d{letter-spacing:1.472576px;}
.ls2f{letter-spacing:1.478576px;}
.ls2c{letter-spacing:1.491181px;}
.ls15{letter-spacing:1.492200px;}
.ls30{letter-spacing:1.492766px;}
.ls11{letter-spacing:1.498200px;}
.ls1d{letter-spacing:1.608385px;}
.ls1a{letter-spacing:1.794337px;}
.ls31{letter-spacing:1.834741px;}
.ls0{letter-spacing:1.861130px;}
.ls3a{letter-spacing:1.942954px;}
.lsc{letter-spacing:2.092766px;}
.ls1e{letter-spacing:2.252576px;}
.ls12{letter-spacing:2.386200px;}
.ls17{letter-spacing:2.392200px;}
.ls24{letter-spacing:3.733200px;}
.ls34{letter-spacing:3.736200px;}
.lse{letter-spacing:4.243834px;}
.ls1{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.954850px;}
.ls50{letter-spacing:12.099380px;}
.ls1c{letter-spacing:12.495483px;}
.ls18{letter-spacing:13.073607px;}
.ls19{letter-spacing:13.089483px;}
.ls1b{letter-spacing:13.114766px;}
.ls38{letter-spacing:13.114825px;}
.ls2e{letter-spacing:13.120766px;}
.ls4f{letter-spacing:13.448400px;}
.ls4d{letter-spacing:13.454400px;}
.ls51{letter-spacing:13.574691px;}
.ls46{letter-spacing:14.166817px;}
.ls3f{letter-spacing:14.525471px;}
.ls9{letter-spacing:14.645022px;}
.lsa{letter-spacing:14.824349px;}
.ls21{letter-spacing:14.910159px;}
.ls20{letter-spacing:14.976508px;}
.ls43{letter-spacing:15.063451px;}
.ls44{letter-spacing:15.720983px;}
.ls26{letter-spacing:15.882385px;}
.ls28{letter-spacing:15.990337px;}
.ls16{letter-spacing:16.371483px;}
.ls22{letter-spacing:16.375068px;}
.ls32{letter-spacing:17.014514px;}
.ls49{letter-spacing:17.319483px;}
.ls3d{letter-spacing:17.325483px;}
.ls2a{letter-spacing:18.069483px;}
.ls10{letter-spacing:18.075483px;}
.ls36{letter-spacing:18.093181px;}
.ls47{letter-spacing:18.100200px;}
.ls29{letter-spacing:18.396337px;}
.ls4e{letter-spacing:19.285694px;}
.ls33{letter-spacing:19.515483px;}
.lsb{letter-spacing:19.546621px;}
.ls48{letter-spacing:19.984200px;}
.lsf{letter-spacing:20.845834px;}
.ls35{letter-spacing:21.340200px;}
.ls25{letter-spacing:24.460200px;}
.ls14{letter-spacing:28.808100px;}
.ls3{letter-spacing:62.695200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls41{letter-spacing:376.612090px;}
.ls1f{letter-spacing:410.405607px;}
.ls39{letter-spacing:414.273943px;}
.ls4c{letter-spacing:464.302800px;}
.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;}
}
.ws44{word-spacing:-14.943900px;}
.ws85{word-spacing:-13.449600px;}
.ws31{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.ws8{word-spacing:-10.460700px;}
.ws46{word-spacing:-4.315812px;}
.ws65{word-spacing:-2.988780px;}
.ws7b{word-spacing:-2.630126px;}
.ws93{word-spacing:-2.570351px;}
.ws87{word-spacing:-2.331248px;}
.ws2c{word-spacing:-1.972595px;}
.ws5{word-spacing:-1.908367px;}
.ws43{word-spacing:-1.824757px;}
.ws45{word-spacing:-1.824415px;}
.wsa4{word-spacing:-1.775347px;}
.ws90{word-spacing:-1.613941px;}
.ws8e{word-spacing:-1.554166px;}
.ws7c{word-spacing:-1.434614px;}
.ws4{word-spacing:-1.322630px;}
.ws7a{word-spacing:-1.315063px;}
.ws17{word-spacing:-1.237363px;}
.ws24{word-spacing:-1.195512px;}
.ws37{word-spacing:-1.075961px;}
.ws7e{word-spacing:-1.022170px;}
.ws50{word-spacing:-0.956410px;}
.ws8f{word-spacing:-0.896634px;}
.ws80{word-spacing:-0.777083px;}
.ws7f{word-spacing:-0.753178px;}
.ws57{word-spacing:-0.657532px;}
.ws36{word-spacing:-0.597756px;}
.ws88{word-spacing:-0.591782px;}
.ws23{word-spacing:-0.478205px;}
.ws9f{word-spacing:-0.430387px;}
.ws38{word-spacing:-0.418429px;}
.ws2a{word-spacing:-0.358654px;}
.ws89{word-spacing:-0.322790px;}
.ws27{word-spacing:-0.298878px;}
.ws1e{word-spacing:-0.268992px;}
.ws25{word-spacing:-0.239102px;}
.ws9a{word-spacing:-0.215194px;}
.ws3a{word-spacing:-0.179327px;}
.ws1a{word-spacing:-0.161395px;}
.ws55{word-spacing:-0.132666px;}
.ws2d{word-spacing:-0.119551px;}
.ws1d{word-spacing:-0.107597px;}
.ws33{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.053798px;}
.ws13{word-spacing:-0.047821px;}
.ws47{word-spacing:-0.031746px;}
.wsa3{word-spacing:-0.004435px;}
.ws7{word-spacing:-0.002740px;}
.ws9d{word-spacing:-0.001267px;}
.ws30{word-spacing:-0.000424px;}
.ws0{word-spacing:0.000000px;}
.ws1b{word-spacing:0.053798px;}
.ws2f{word-spacing:0.059776px;}
.wsa8{word-spacing:0.107597px;}
.ws26{word-spacing:0.119551px;}
.ws51{word-spacing:0.126449px;}
.ws3e{word-spacing:0.161395px;}
.ws2b{word-spacing:0.179327px;}
.ws9{word-spacing:0.209214px;}
.ws96{word-spacing:0.215194px;}
.ws4f{word-spacing:0.239102px;}
.wsb{word-spacing:0.292900px;}
.ws3b{word-spacing:0.298878px;}
.ws97{word-spacing:0.322790px;}
.ws53{word-spacing:0.358654px;}
.ws39{word-spacing:0.418429px;}
.ws52{word-spacing:0.478205px;}
.ws41{word-spacing:0.537980px;}
.ws6a{word-spacing:0.657532px;}
.ws99{word-spacing:0.699379px;}
.ws81{word-spacing:0.707188px;}
.ws69{word-spacing:0.717307px;}
.ws74{word-spacing:0.777083px;}
.ws48{word-spacing:0.836858px;}
.ws6d{word-spacing:0.956410px;}
.ws73{word-spacing:1.022170px;}
.ws76{word-spacing:1.075961px;}
.ws58{word-spacing:1.135736px;}
.ws83{word-spacing:1.315063px;}
.ws32{word-spacing:1.434614px;}
.ws56{word-spacing:1.494390px;}
.ws7d{word-spacing:1.554166px;}
.ws16{word-spacing:1.560154px;}
.ws86{word-spacing:1.613941px;}
.wsa2{word-spacing:1.613952px;}
.wsa6{word-spacing:1.721549px;}
.ws28{word-spacing:1.733492px;}
.ws2e{word-spacing:1.793268px;}
.ws68{word-spacing:1.912819px;}
.wsa{word-spacing:2.008454px;}
.ws54{word-spacing:2.032370px;}
.ws5e{word-spacing:2.092146px;}
.ws4e{word-spacing:2.151922px;}
.wsa0{word-spacing:2.151936px;}
.ws59{word-spacing:2.331248px;}
.ws3c{word-spacing:2.510575px;}
.ws14{word-spacing:2.869236px;}
.ws5b{word-spacing:2.929004px;}
.ws6c{word-spacing:2.988780px;}
.ws6f{word-spacing:3.012710px;}
.ws49{word-spacing:3.048556px;}
.ws94{word-spacing:3.108331px;}
.wsa5{word-spacing:3.120307px;}
.ws4d{word-spacing:3.155377px;}
.ws34{word-spacing:3.168107px;}
.ws79{word-spacing:3.227882px;}
.ws9e{word-spacing:3.227904px;}
.ws3d{word-spacing:3.287658px;}
.ws6e{word-spacing:3.335501px;}
.wsa9{word-spacing:3.389299px;}
.ws5a{word-spacing:3.407209px;}
.ws61{word-spacing:3.526760px;}
.ws19{word-spacing:3.550694px;}
.ws21{word-spacing:3.586536px;}
.ws8b{word-spacing:3.623827px;}
.ws67{word-spacing:3.624221px;}
.ws1f{word-spacing:3.658291px;}
.ws98{word-spacing:3.712090px;}
.ws77{word-spacing:3.825638px;}
.ws5c{word-spacing:3.885414px;}
.ws60{word-spacing:4.064741px;}
.ws95{word-spacing:4.196275px;}
.ws62{word-spacing:4.244068px;}
.ws82{word-spacing:4.303843px;}
.ws4b{word-spacing:4.329044px;}
.ws71{word-spacing:4.357670px;}
.ws72{word-spacing:4.411469px;}
.ws78{word-spacing:4.542946px;}
.ws40{word-spacing:4.602721px;}
.wsa1{word-spacing:4.626662px;}
.ws3f{word-spacing:4.662497px;}
.ws35{word-spacing:4.782048px;}
.ws84{word-spacing:4.841824px;}
.ws64{word-spacing:4.961375px;}
.ws91{word-spacing:5.007256px;}
.ws1c{word-spacing:5.057050px;}
.ws5f{word-spacing:5.080926px;}
.ws92{word-spacing:5.439580px;}
.ws6b{word-spacing:5.559131px;}
.ws5d{word-spacing:5.798233px;}
.ws11{word-spacing:6.067206px;}
.ws12{word-spacing:6.150892px;}
.ws15{word-spacing:6.294413px;}
.ws20{word-spacing:6.509606px;}
.ws22{word-spacing:7.352399px;}
.ws8d{word-spacing:7.471950px;}
.wsf{word-spacing:8.661460px;}
.wsa7{word-spacing:9.141898px;}
.ws29{word-spacing:9.384769px;}
.ws70{word-spacing:9.468518px;}
.ws63{word-spacing:9.548628px;}
.ws75{word-spacing:10.580281px;}
.ws9c{word-spacing:12.319834px;}
.ws4c{word-spacing:13.017899px;}
.ws6{word-spacing:15.483541px;}
.wsc{word-spacing:16.142252px;}
.wsd{word-spacing:16.151321px;}
.wse{word-spacing:17.699504px;}
.ws42{word-spacing:17.938541px;}
.ws4a{word-spacing:24.354061px;}
.ws10{word-spacing:27.448877px;}
.ws9b{word-spacing:45.728640px;}
.ws2{word-spacing:46.059600px;}
.ws3{word-spacing:60.999600px;}
.ws8a{word-spacing:256.865699px;}
.ws8c{word-spacing:305.166518px;}
.ws66{word-spacing:348.521699px;}
._33{margin-left:-19.934221px;}
._0{margin-left:-11.943245px;}
._17{margin-left:-7.287597px;}
._e{margin-left:-5.917824px;}
._9{margin-left:-4.495136px;}
._5{margin-left:-3.096367px;}
._3{margin-left:-1.322630px;}
._4{width:1.091170px;}
._1{width:2.987725px;}
._15{width:4.886390px;}
._16{width:9.824172px;}
._18{width:11.968834px;}
._7{width:12.971268px;}
._14{width:14.114609px;}
._c{width:15.772070px;}
._10{width:17.402267px;}
._a{width:18.721843px;}
._19{width:20.263928px;}
._b{width:21.949747px;}
._f{width:23.294707px;}
._11{width:24.635114px;}
._6{width:25.944936px;}
._d{width:27.759974px;}
._21{width:29.110717px;}
._1a{width:30.724658px;}
._8{width:32.637384px;}
._20{width:34.079659px;}
._1b{width:35.514274px;}
._2f{width:41.058270px;}
._34{width:47.241733px;}
._2{width:54.429634px;}
._31{width:59.124442px;}
._32{width:61.868160px;}
._30{width:88.767360px;}
._23{width:433.579371px;}
._2a{width:464.771917px;}
._1f{width:601.681306px;}
._1d{width:603.402854px;}
._1e{width:627.817891px;}
._1c{width:629.226086px;}
._2e{width:841.837363px;}
._2c{width:842.859533px;}
._2d{width:845.945184px;}
._29{width:851.467277px;}
._25{width:859.426416px;}
._2b{width:862.764941px;}
._28{width:864.916877px;}
._26{width:867.230208px;}
._24{width:868.628966px;}
._27{width:899.347853px;}
._12{width:1045.779583px;}
._22{width:2606.073300px;}
._13{width:2629.983300px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(55,106,127);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fsb{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.425340px;}
.y8{bottom:14.151273px;}
.y2{bottom:15.334850px;}
.y4b{bottom:31.890000px;}
.ycc{bottom:88.993500px;}
.y115{bottom:93.258000px;}
.yff{bottom:94.359000px;}
.y134{bottom:97.588500px;}
.y84{bottom:99.685500px;}
.y88{bottom:99.996000px;}
.yba{bottom:101.428500px;}
.y20{bottom:102.823500px;}
.y4a{bottom:103.621500px;}
.y156{bottom:104.392500px;}
.ycb{bottom:107.823000px;}
.y177{bottom:109.431000px;}
.yf6{bottom:110.452500px;}
.y114{bottom:112.087500px;}
.yfe{bottom:113.188500px;}
.y133{bottom:116.418000px;}
.y83{bottom:118.515000px;}
.y80{bottom:118.545000px;}
.y87{bottom:118.824000px;}
.yb9{bottom:120.258000px;}
.y1f{bottom:120.711000px;}
.y81{bottom:121.698000px;}
.y49{bottom:122.449500px;}
.y155{bottom:123.222000px;}
.yca{bottom:126.652500px;}
.y176{bottom:126.691500px;}
.yf5{bottom:129.282000px;}
.y113{bottom:130.917000px;}
.yfd{bottom:132.016500px;}
.y132{bottom:135.247500px;}
.y6f{bottom:136.864500px;}
.y82{bottom:137.344500px;}
.y86{bottom:137.653500px;}
.y1e{bottom:138.600000px;}
.yb8{bottom:139.087500px;}
.y48{bottom:141.279000px;}
.y154{bottom:142.051500px;}
.y175{bottom:143.950500px;}
.yc9{bottom:145.482000px;}
.yf4{bottom:148.111500px;}
.y85{bottom:148.582500px;}
.y112{bottom:149.746500px;}
.y131{bottom:154.077000px;}
.yfc{bottom:155.329500px;}
.y6e{bottom:155.694000px;}
.y1d{bottom:156.487500px;}
.yb7{bottom:157.917000px;}
.y47{bottom:160.108500px;}
.y153{bottom:160.881000px;}
.y174{bottom:161.211000px;}
.yf3{bottom:166.941000px;}
.y111{bottom:168.574500px;}
.yc8{bottom:168.795000px;}
.y7f{bottom:171.159000px;}
.y130{bottom:172.906500px;}
.y1c{bottom:174.375000px;}
.y6d{bottom:174.523500px;}
.yb6{bottom:176.746500px;}
.y173{bottom:178.471500px;}
.y46{bottom:178.938000px;}
.y152{bottom:179.710500px;}
.yfb{bottom:185.757000px;}
.yf2{bottom:185.770500px;}
.y110{bottom:187.404000px;}
.yc7{bottom:187.624500px;}
.y7e{bottom:189.988500px;}
.y12f{bottom:191.736000px;}
.y1b{bottom:192.264000px;}
.yb5{bottom:195.574500px;}
.y172{bottom:195.732000px;}
.y45{bottom:197.767500px;}
.y151{bottom:198.540000px;}
.yf1{bottom:204.600000px;}
.yfa{bottom:204.990000px;}
.yc6{bottom:206.454000px;}
.y6c{bottom:208.089000px;}
.y7d{bottom:208.818000px;}
.y1a{bottom:210.151500px;}
.y171{bottom:212.992500px;}
.yb4{bottom:214.404000px;}
.y44{bottom:216.597000px;}
.y10f{bottom:221.082000px;}
.yf0{bottom:223.429500px;}
.yf9{bottom:224.223000px;}
.yc5{bottom:225.283500px;}
.y12e{bottom:225.301500px;}
.y7c{bottom:227.647500px;}
.y19{bottom:228.039000px;}
.y170{bottom:230.253000px;}
.yb3{bottom:233.233500px;}
.y43{bottom:235.426500px;}
.y12b{bottom:238.293000px;}
.yef{bottom:242.257500px;}
.yf8{bottom:243.456000px;}
.y150{bottom:244.002000px;}
.y16f{bottom:247.513500px;}
.y7b{bottom:250.959000px;}
.y42{bottom:254.256000px;}
.yc4{bottom:256.384500px;}
.yb2{bottom:256.546500px;}
.y12a{bottom:257.122500px;}
.y14f{bottom:260.440500px;}
.yee{bottom:261.087000px;}
.yf7{bottom:262.689000px;}
.y16e{bottom:264.774000px;}
.y7a{bottom:271.134000px;}
.y41{bottom:273.085500px;}
.yc3{bottom:275.617500px;}
.y129{bottom:275.952000px;}
.y14e{bottom:276.879000px;}
.yed{bottom:279.916500px;}
.y16d{bottom:282.033000px;}
.yb1{bottom:290.170500px;}
.y40{bottom:291.915000px;}
.y14d{bottom:293.317500px;}
.y128{bottom:294.781500px;}
.yec{bottom:298.746000px;}
.y16c{bottom:299.293500px;}
.y79{bottom:301.561500px;}
.y18{bottom:307.299000px;}
.yb0{bottom:309.000000px;}
.y3f{bottom:310.744500px;}
.y127{bottom:313.611000px;}
.y16b{bottom:316.554000px;}
.y14c{bottom:317.256000px;}
.yeb{bottom:317.575500px;}
.y78{bottom:320.794500px;}
.y17{bottom:325.186500px;}
.yaf{bottom:327.829500px;}
.y3e{bottom:329.574000px;}
.y16a{bottom:333.814500px;}
.yea{bottom:336.405000px;}
.y126{bottom:336.924000px;}
.y14b{bottom:341.196000px;}
.y16{bottom:343.074000px;}
.yae{bottom:346.659000px;}
.y3d{bottom:348.403500px;}
.y169{bottom:351.075000px;}
.ye9{bottom:355.234500px;}
.y14a{bottom:357.634500px;}
.y15{bottom:360.963000px;}
.yad{bottom:365.488500px;}
.y3c{bottom:367.233000px;}
.y125{bottom:370.548000px;}
.y168{bottom:372.819000px;}
.ye8{bottom:374.064000px;}
.y149{bottom:374.073000px;}
.y1a2{bottom:379.722000px;}
.yac{bottom:384.318000px;}
.y3b{bottom:386.062500px;}
.y124{bottom:389.377500px;}
.y148{bottom:390.511500px;}
.ye7{bottom:392.893500px;}
.y1a1{bottom:396.982500px;}
.y14{bottom:399.024000px;}
.yab{bottom:403.147500px;}
.y3a{bottom:404.892000px;}
.y167{bottom:406.443000px;}
.y123{bottom:408.207000px;}
.ye6{bottom:411.723000px;}
.y1a0{bottom:414.243000px;}
.y147{bottom:414.451500px;}
.y13{bottom:416.913000px;}
.yaa{bottom:421.977000px;}
.y39{bottom:423.721500px;}
.y122{bottom:427.036500px;}
.ye5{bottom:430.552500px;}
.y19f{bottom:431.503500px;}
.y166{bottom:432.982500px;}
.y12{bottom:434.800500px;}
.y146{bottom:438.390000px;}
.ya9{bottom:440.806500px;}
.y121{bottom:445.866000px;}
.y38{bottom:447.034500px;}
.y19e{bottom:448.764000px;}
.ye4{bottom:453.865500px;}
.y145{bottom:454.828500px;}
.y165{bottom:459.523500px;}
.ya8{bottom:459.636000px;}
.y120{bottom:464.695500px;}
.y19d{bottom:466.024500px;}
.y11{bottom:470.622000px;}
.y144{bottom:471.267000px;}
.ya7{bottom:478.465500px;}
.y19c{bottom:483.283500px;}
.y11f{bottom:483.525000px;}
.y164{bottom:486.064500px;}
.ye3{bottom:487.489500px;}
.y143{bottom:487.705500px;}
.y10{bottom:488.509500px;}
.ya6{bottom:497.295000px;}
.y19b{bottom:500.544000px;}
.y11e{bottom:502.354500px;}
.y163{bottom:503.638500px;}
.ye2{bottom:506.319000px;}
.y142{bottom:512.329500px;}
.ya5{bottom:516.124500px;}
.y19a{bottom:517.804500px;}
.y6b{bottom:519.280500px;}
.y11d{bottom:521.184000px;}
.y37{bottom:522.184500px;}
.yf{bottom:524.329500px;}
.ye1{bottom:525.148500px;}
.y162{bottom:530.178000px;}
.ya4{bottom:534.954000px;}
.y199{bottom:535.065000px;}
.y12d{bottom:537.777000px;}
.y6a{bottom:538.110000px;}
.y11c{bottom:540.013500px;}
.y36{bottom:541.641000px;}
.ye{bottom:542.218500px;}
.y10e{bottom:542.730000px;}
.y141{bottom:543.948000px;}
.ydf{bottom:543.978000px;}
.ye0{bottom:546.622500px;}
.y161{bottom:547.753500px;}
.y198{bottom:552.325500px;}
.ya3{bottom:553.783500px;}
.y69{bottom:556.939500px;}
.y11b{bottom:558.843000px;}
.yd{bottom:560.106000px;}
.y10d{bottom:561.559500px;}
.yde{bottom:562.807500px;}
.y160{bottom:565.327500px;}
.y197{bottom:569.586000px;}
.ya2{bottom:572.613000px;}
.y68{bottom:575.769000px;}
.y11a{bottom:577.672500px;}
.yc{bottom:577.993500px;}
.y35{bottom:579.031500px;}
.y140{bottom:579.558000px;}
.y10c{bottom:580.389000px;}
.y15f{bottom:582.901500px;}
.y196{bottom:586.846500px;}
.ya1{bottom:591.442500px;}
.y67{bottom:594.598500px;}
.yb{bottom:595.882500px;}
.y119{bottom:596.500500px;}
.y13f{bottom:598.387500px;}
.y34{bottom:598.488000px;}
.y10b{bottom:599.218500px;}
.y15e{bottom:600.475500px;}
.ydd{bottom:603.786000px;}
.y195{bottom:604.107000px;}
.ya0{bottom:610.272000px;}
.ya{bottom:613.770000px;}
.y13e{bottom:617.217000px;}
.y66{bottom:617.911500px;}
.y33{bottom:617.944500px;}
.y10a{bottom:618.048000px;}
.y15d{bottom:618.049500px;}
.y118{bottom:619.813500px;}
.ydc{bottom:620.224500px;}
.y194{bottom:621.366000px;}
.y9f{bottom:629.100000px;}
.y15c{bottom:635.623500px;}
.y13d{bottom:636.046500px;}
.y7{bottom:636.141055px;}
.ydb{bottom:636.663000px;}
.y109{bottom:636.877500px;}
.y32{bottom:637.402500px;}
.y77{bottom:638.550000px;}
.y193{bottom:638.626500px;}
.y117{bottom:650.352000px;}
.y9e{bottom:652.413000px;}
.yda{bottom:653.101500px;}
.y13c{bottom:654.876000px;}
.y65{bottom:655.420500px;}
.y108{bottom:655.707000px;}
.y192{bottom:655.887000px;}
.y31{bottom:656.859000px;}
.y76{bottom:657.379500px;}
.y15b{bottom:671.130000px;}
.y191{bottom:673.147500px;}
.y13b{bottom:673.705500px;}
.y64{bottom:674.250000px;}
.y107{bottom:674.536500px;}
.y75{bottom:676.209000px;}
.y30{bottom:676.315500px;}
.yd9{bottom:677.724000px;}
.y9d{bottom:686.037000px;}
.y15a{bottom:689.959500px;}
.y190{bottom:690.408000px;}
.y13a{bottom:692.535000px;}
.y63{bottom:693.079500px;}
.y106{bottom:693.366000px;}
.y74{bottom:695.038500px;}
.y2f{bottom:695.773500px;}
.y9c{bottom:704.866500px;}
.y18f{bottom:707.668500px;}
.y159{bottom:708.789000px;}
.yd8{bottom:709.344000px;}
.y139{bottom:711.364500px;}
.y62{bottom:711.909000px;}
.y105{bottom:712.195500px;}
.y73{bottom:713.868000px;}
.y2e{bottom:715.230000px;}
.y9b{bottom:723.696000px;}
.y18e{bottom:724.929000px;}
.y158{bottom:727.618500px;}
.y138{bottom:730.194000px;}
.y61{bottom:730.738500px;}
.y104{bottom:731.023500px;}
.y72{bottom:732.697500px;}
.y2d{bottom:734.688000px;}
.y18d{bottom:742.189500px;}
.y9a{bottom:742.525500px;}
.yd7{bottom:746.448000px;}
.y137{bottom:749.023500px;}
.y60{bottom:749.568000px;}
.y103{bottom:749.853000px;}
.y71{bottom:751.527000px;}
.y2c{bottom:754.144500px;}
.y18c{bottom:759.450000px;}
.y99{bottom:761.355000px;}
.yd6{bottom:765.277500px;}
.y136{bottom:767.853000px;}
.y5f{bottom:768.397500px;}
.y102{bottom:768.682500px;}
.y2b{bottom:773.601000px;}
.y18b{bottom:776.709000px;}
.y98{bottom:780.184500px;}
.yd5{bottom:784.107000px;}
.y70{bottom:785.092500px;}
.y5e{bottom:787.227000px;}
.y135{bottom:791.166000px;}
.y2a{bottom:793.059000px;}
.y18a{bottom:793.969500px;}
.y97{bottom:799.014000px;}
.y101{bottom:802.360500px;}
.yd4{bottom:802.936500px;}
.y5d{bottom:806.056500px;}
.y189{bottom:811.230000px;}
.y29{bottom:812.515500px;}
.y96{bottom:817.843500px;}
.y100{bottom:821.593500px;}
.yd3{bottom:821.766000px;}
.y5c{bottom:824.886000px;}
.y188{bottom:828.490500px;}
.y28{bottom:831.972000px;}
.y27{bottom:831.973500px;}
.y95{bottom:836.673000px;}
.yd2{bottom:840.595500px;}
.y12c{bottom:841.287000px;}
.y5b{bottom:843.715500px;}
.y187{bottom:845.751000px;}
.y94{bottom:855.502500px;}
.yc2{bottom:859.425000px;}
.y5a{bottom:862.545000px;}
.y186{bottom:863.011500px;}
.y26{bottom:870.315000px;}
.yc1{bottom:878.254500px;}
.y93{bottom:878.815500px;}
.y185{bottom:880.272000px;}
.y59{bottom:881.374500px;}
.y25{bottom:886.455000px;}
.yc0{bottom:897.084000px;}
.y184{bottom:897.532500px;}
.y92{bottom:898.989000px;}
.y58{bottom:900.204000px;}
.y24{bottom:906.933000px;}
.y182{bottom:914.791500px;}
.y183{bottom:914.793000px;}
.ybf{bottom:915.913500px;}
.y57{bottom:919.033500px;}
.y23{bottom:923.073000px;}
.y181{bottom:932.052000px;}
.y91{bottom:932.613000px;}
.ybe{bottom:934.743000px;}
.y22{bottom:934.873500px;}
.y56{bottom:937.863000px;}
.y180{bottom:949.312500px;}
.y90{bottom:951.442500px;}
.ybd{bottom:953.572500px;}
.y21{bottom:955.353000px;}
.y55{bottom:956.692500px;}
.y17f{bottom:966.573000px;}
.yd1{bottom:972.402000px;}
.y54{bottom:975.522000px;}
.ybc{bottom:976.884000px;}
.y8f{bottom:977.101500px;}
.y17e{bottom:983.833500px;}
.y8e{bottom:987.352500px;}
.yd0{bottom:991.231500px;}
.y116{bottom:991.678500px;}
.y53{bottom:994.351500px;}
.y6{bottom:995.302500px;}
.y157{bottom:995.713500px;}
.y17d{bottom:1001.094000px;}
.ycf{bottom:1010.061000px;}
.ybb{bottom:1010.508000px;}
.y52{bottom:1013.181000px;}
.y17c{bottom:1018.354500px;}
.yce{bottom:1028.890500px;}
.y8d{bottom:1029.337500px;}
.y51{bottom:1032.010500px;}
.y17b{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y8c{bottom:1048.167000px;}
.y50{bottom:1050.840000px;}
.ycd{bottom:1052.202000px;}
.y17a{bottom:1052.875500px;}
.y8b{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y4f{bottom:1069.669500px;}
.y179{bottom:1070.134500px;}
.y8a{bottom:1085.826000px;}
.y178{bottom:1087.395000px;}
.y4e{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y89{bottom:1104.655500px;}
.y4d{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4c{bottom:1173.397500px;}
.h15{height:2.391024px;}
.h7{height:25.508090px;}
.hc{height:26.217754px;}
.h1d{height:28.645638px;}
.h16{height:29.529146px;}
.ha{height:30.587087px;}
.hb{height:30.712615px;}
.h18{height:31.083964px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.hd{height:34.956859px;}
.h12{height:35.100320px;}
.he{height:38.734848px;}
.h1c{height:39.057638px;}
.hf{height:39.326630px;}
.h1e{height:39.488026px;}
.h10{height:43.038432px;}
.h11{height:43.695964px;}
.h4{height:43.875290px;}
.h13{height:46.714950px;}
.h2{height:50.930649px;}
.h6{height:54.405312px;}
.h19{height:54.911038px;}
.h5{height:77.469696px;}
.h1a{height:86.709024px;}
.h3{height:102.503837px;}
.h17{height:109.929024px;}
.h14{height:122.541024px;}
.h1b{height:127.713024px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:150.573298px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:62.356690px;}
.x8d{left:86.272500px;}
.x84{left:107.179500px;}
.x88{left:117.067500px;}
.x86{left:153.906000px;}
.x89{left:159.493500px;}
.x87{left:164.644500px;}
.x85{left:165.942000px;}
.x83{left:181.752000px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x7b{left:251.905500px;}
.x42{left:263.704500px;}
.x5{left:270.622500px;}
.x82{left:277.438500px;}
.x7c{left:281.287500px;}
.x9{left:282.786000px;}
.x57{left:283.795500px;}
.x54{left:285.490500px;}
.x2a{left:291.568500px;}
.x58{left:295.171500px;}
.x38{left:301.090500px;}
.x29{left:308.124000px;}
.x39{left:310.923000px;}
.x7{left:312.772500px;}
.x80{left:314.650500px;}
.x55{left:318.988500px;}
.x8{left:324.642000px;}
.x63{left:329.323500px;}
.x59{left:330.609000px;}
.x71{left:337.240500px;}
.x61{left:338.908500px;}
.x64{left:344.268000px;}
.x53{left:349.644000px;}
.x6a{left:353.251500px;}
.x5a{left:356.785500px;}
.x62{left:362.026500px;}
.xe{left:363.988500px;}
.xf{left:371.461500px;}
.x4f{left:377.667000px;}
.x20{left:382.365000px;}
.x10{left:389.119500px;}
.x7d{left:390.583500px;}
.x50{left:392.610000px;}
.x8c{left:394.747500px;}
.x11{left:396.591000px;}
.x74{left:399.213000px;}
.x21{left:401.019000px;}
.x6d{left:403.303500px;}
.x2b{left:406.582500px;}
.x6e{left:410.029500px;}
.x22{left:415.963500px;}
.x2d{left:417.430500px;}
.x2c{left:421.771500px;}
.x8a{left:428.271000px;}
.x2e{left:434.482500px;}
.x12{left:439.386000px;}
.x13{left:446.857500px;}
.x5b{left:448.195500px;}
.x14{left:450.579000px;}
.x15{left:458.050500px;}
.x5c{left:463.140000px;}
.x5d{left:488.166000px;}
.x6b{left:499.390500px;}
.x78{left:504.060000px;}
.x2f{left:512.862000px;}
.x5e{left:514.032000px;}
.x25{left:515.038500px;}
.x44{left:518.496000px;}
.x32{left:523.188000px;}
.x31{left:524.697000px;}
.x26{left:529.983000px;}
.x45{left:533.440500px;}
.x7e{left:535.071000px;}
.x4b{left:541.549500px;}
.x30{left:545.872500px;}
.x37{left:547.659000px;}
.x70{left:555.417000px;}
.x4c{left:556.494000px;}
.x8b{left:559.387500px;}
.x1c{left:560.748000px;}
.x7f{left:562.278000px;}
.x3c{left:570.783000px;}
.x75{left:572.235000px;}
.x1d{left:575.692500px;}
.x1e{left:579.454500px;}
.x33{left:585.084000px;}
.x1f{left:594.399000px;}
.x79{left:597.645000px;}
.xa{left:603.208500px;}
.x3a{left:608.676000px;}
.xb{left:610.680000px;}
.xc{left:614.491500px;}
.x51{left:615.756000px;}
.xd{left:621.963000px;}
.x35{left:624.025500px;}
.x7a{left:626.083500px;}
.x52{left:630.699000px;}
.x3b{left:633.027000px;}
.x3d{left:635.553000px;}
.x3e{left:643.362000px;}
.x65{left:649.992000px;}
.x46{left:651.442500px;}
.x66{left:656.716500px;}
.x34{left:662.553000px;}
.x67{left:663.576000px;}
.x3f{left:668.212500px;}
.x56{left:681.399000px;}
.x68{left:687.211500px;}
.x69{left:693.936000px;}
.x72{left:696.486000px;}
.x40{left:698.650500px;}
.x23{left:704.149500px;}
.x6c{left:705.427500px;}
.x36{left:708.924000px;}
.x41{left:711.024000px;}
.x24{left:719.094000px;}
.x93{left:724.614000px;}
.x73{left:726.370500px;}
.x8e{left:732.823500px;}
.x5f{left:734.175000px;}
.x90{left:739.339500px;}
.x60{left:742.416000px;}
.x1a{left:744.279000px;}
.x47{left:750.531000px;}
.x1b{left:751.752000px;}
.x8f{left:759.721500px;}
.x48{left:765.475500px;}
.x16{left:771.667500px;}
.x17{left:779.139000px;}
.x18{left:782.950500px;}
.x27{left:785.074500px;}
.x19{left:790.422000px;}
.x6f{left:795.361500px;}
.x28{left:800.019000px;}
.x76{left:807.001500px;}
.x91{left:810.312000px;}
.x81{left:815.544000px;}
.x4d{left:816.951000px;}
.x49{left:818.893500px;}
.x43{left:825.201000px;}
.x4e{left:831.894000px;}
.x4a{left:833.838000px;}
.x77{left:835.618500px;}
.x92{left:837.211500px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v4{vertical-align:-11.210667pt;}
.vb{vertical-align:-9.866667pt;}
.va{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v7{vertical-align:21.946667pt;}
.v8{vertical-align:35.973333pt;}
.v6{vertical-align:74.949333pt;}
.v5{vertical-align:95.589333pt;}
.v3{vertical-align:106.800000pt;}
.v9{vertical-align:111.397333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000533pt;}
.lsd{letter-spacing:0.201548pt;}
.ls4b{letter-spacing:0.576078pt;}
.ls40{letter-spacing:0.587042pt;}
.ls4a{letter-spacing:0.596267pt;}
.ls13{letter-spacing:0.623651pt;}
.ls3e{letter-spacing:0.665067pt;}
.ls23{letter-spacing:0.665570pt;}
.ls45{letter-spacing:1.062340pt;}
.ls8{letter-spacing:1.133683pt;}
.ls3c{letter-spacing:1.165089pt;}
.ls42{letter-spacing:1.166400pt;}
.ls37{letter-spacing:1.166956pt;}
.ls3b{letter-spacing:1.170422pt;}
.ls2b{letter-spacing:1.172289pt;}
.ls27{letter-spacing:1.262881pt;}
.ls2d{letter-spacing:1.308957pt;}
.ls2f{letter-spacing:1.314290pt;}
.ls2c{letter-spacing:1.325494pt;}
.ls15{letter-spacing:1.326400pt;}
.ls30{letter-spacing:1.326903pt;}
.ls11{letter-spacing:1.331733pt;}
.ls1d{letter-spacing:1.429676pt;}
.ls1a{letter-spacing:1.594966pt;}
.ls31{letter-spacing:1.630881pt;}
.ls0{letter-spacing:1.654338pt;}
.ls3a{letter-spacing:1.727070pt;}
.lsc{letter-spacing:1.860237pt;}
.ls1e{letter-spacing:2.002290pt;}
.ls12{letter-spacing:2.121067pt;}
.ls17{letter-spacing:2.126400pt;}
.ls24{letter-spacing:3.318400pt;}
.ls34{letter-spacing:3.321067pt;}
.lse{letter-spacing:3.772297pt;}
.ls1{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.626533pt;}
.ls50{letter-spacing:10.755004pt;}
.ls1c{letter-spacing:11.107096pt;}
.ls18{letter-spacing:11.620984pt;}
.ls19{letter-spacing:11.635096pt;}
.ls1b{letter-spacing:11.657570pt;}
.ls38{letter-spacing:11.657622pt;}
.ls2e{letter-spacing:11.662903pt;}
.ls4f{letter-spacing:11.954133pt;}
.ls4d{letter-spacing:11.959467pt;}
.ls51{letter-spacing:12.066392pt;}
.ls46{letter-spacing:12.592726pt;}
.ls3f{letter-spacing:12.911530pt;}
.ls9{letter-spacing:13.017797pt;}
.lsa{letter-spacing:13.177199pt;}
.ls21{letter-spacing:13.253475pt;}
.ls20{letter-spacing:13.312452pt;}
.ls43{letter-spacing:13.389734pt;}
.ls44{letter-spacing:13.974207pt;}
.ls26{letter-spacing:14.117676pt;}
.ls28{letter-spacing:14.213633pt;}
.ls16{letter-spacing:14.552429pt;}
.ls22{letter-spacing:14.555616pt;}
.ls32{letter-spacing:15.124013pt;}
.ls49{letter-spacing:15.395096pt;}
.ls3d{letter-spacing:15.400429pt;}
.ls2a{letter-spacing:16.061762pt;}
.ls10{letter-spacing:16.067096pt;}
.ls36{letter-spacing:16.082827pt;}
.ls47{letter-spacing:16.089067pt;}
.ls29{letter-spacing:16.352300pt;}
.ls4e{letter-spacing:17.142839pt;}
.ls33{letter-spacing:17.347096pt;}
.lsb{letter-spacing:17.374774pt;}
.ls48{letter-spacing:17.763733pt;}
.lsf{letter-spacing:18.529630pt;}
.ls35{letter-spacing:18.969067pt;}
.ls25{letter-spacing:21.742400pt;}
.ls14{letter-spacing:25.607200pt;}
.ls3{letter-spacing:55.729067pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls41{letter-spacing:334.766302pt;}
.ls1f{letter-spacing:364.804984pt;}
.ls39{letter-spacing:368.243505pt;}
.ls4c{letter-spacing:412.713600pt;}
.ws44{word-spacing:-13.283467pt;}
.ws85{word-spacing:-11.955200pt;}
.ws31{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.ws8{word-spacing:-9.298400pt;}
.ws46{word-spacing:-3.836277pt;}
.ws65{word-spacing:-2.656693pt;}
.ws7b{word-spacing:-2.337890pt;}
.ws93{word-spacing:-2.284756pt;}
.ws87{word-spacing:-2.072221pt;}
.ws2c{word-spacing:-1.753418pt;}
.ws5{word-spacing:-1.696326pt;}
.ws43{word-spacing:-1.622006pt;}
.ws45{word-spacing:-1.621702pt;}
.wsa4{word-spacing:-1.578086pt;}
.ws90{word-spacing:-1.434614pt;}
.ws8e{word-spacing:-1.381481pt;}
.ws7c{word-spacing:-1.275213pt;}
.ws4{word-spacing:-1.175671pt;}
.ws7a{word-spacing:-1.168945pt;}
.ws17{word-spacing:-1.099878pt;}
.ws24{word-spacing:-1.062677pt;}
.ws37{word-spacing:-0.956410pt;}
.ws7e{word-spacing:-0.908595pt;}
.ws50{word-spacing:-0.850142pt;}
.ws8f{word-spacing:-0.797008pt;}
.ws80{word-spacing:-0.690740pt;}
.ws7f{word-spacing:-0.669491pt;}
.ws57{word-spacing:-0.584473pt;}
.ws36{word-spacing:-0.531339pt;}
.ws88{word-spacing:-0.526029pt;}
.ws23{word-spacing:-0.425071pt;}
.ws9f{word-spacing:-0.382566pt;}
.ws38{word-spacing:-0.371937pt;}
.ws2a{word-spacing:-0.318803pt;}
.ws89{word-spacing:-0.286925pt;}
.ws27{word-spacing:-0.265669pt;}
.ws1e{word-spacing:-0.239104pt;}
.ws25{word-spacing:-0.212535pt;}
.ws9a{word-spacing:-0.191283pt;}
.ws3a{word-spacing:-0.159402pt;}
.ws1a{word-spacing:-0.143462pt;}
.ws55{word-spacing:-0.117925pt;}
.ws2d{word-spacing:-0.106268pt;}
.ws1d{word-spacing:-0.095642pt;}
.ws33{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.047821pt;}
.ws13{word-spacing:-0.042507pt;}
.ws47{word-spacing:-0.028219pt;}
.wsa3{word-spacing:-0.003942pt;}
.ws7{word-spacing:-0.002435pt;}
.ws9d{word-spacing:-0.001126pt;}
.ws30{word-spacing:-0.000377pt;}
.ws0{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.047821pt;}
.ws2f{word-spacing:0.053134pt;}
.wsa8{word-spacing:0.095642pt;}
.ws26{word-spacing:0.106268pt;}
.ws51{word-spacing:0.112399pt;}
.ws3e{word-spacing:0.143462pt;}
.ws2b{word-spacing:0.159402pt;}
.ws9{word-spacing:0.185968pt;}
.ws96{word-spacing:0.191283pt;}
.ws4f{word-spacing:0.212535pt;}
.wsb{word-spacing:0.260355pt;}
.ws3b{word-spacing:0.265669pt;}
.ws97{word-spacing:0.286925pt;}
.ws53{word-spacing:0.318803pt;}
.ws39{word-spacing:0.371937pt;}
.ws52{word-spacing:0.425071pt;}
.ws41{word-spacing:0.478205pt;}
.ws6a{word-spacing:0.584473pt;}
.ws99{word-spacing:0.621670pt;}
.ws81{word-spacing:0.628612pt;}
.ws69{word-spacing:0.637606pt;}
.ws74{word-spacing:0.690740pt;}
.ws48{word-spacing:0.743874pt;}
.ws6d{word-spacing:0.850142pt;}
.ws73{word-spacing:0.908595pt;}
.ws76{word-spacing:0.956410pt;}
.ws58{word-spacing:1.009543pt;}
.ws83{word-spacing:1.168945pt;}
.ws32{word-spacing:1.275213pt;}
.ws56{word-spacing:1.328347pt;}
.ws7d{word-spacing:1.381481pt;}
.ws16{word-spacing:1.386803pt;}
.ws86{word-spacing:1.434614pt;}
.wsa2{word-spacing:1.434624pt;}
.wsa6{word-spacing:1.530266pt;}
.ws28{word-spacing:1.540882pt;}
.ws2e{word-spacing:1.594016pt;}
.ws68{word-spacing:1.700284pt;}
.wsa{word-spacing:1.785293pt;}
.ws54{word-spacing:1.806551pt;}
.ws5e{word-spacing:1.859685pt;}
.ws4e{word-spacing:1.912819pt;}
.wsa0{word-spacing:1.912832pt;}
.ws59{word-spacing:2.072221pt;}
.ws3c{word-spacing:2.231622pt;}
.ws14{word-spacing:2.550432pt;}
.ws5b{word-spacing:2.603559pt;}
.ws6c{word-spacing:2.656693pt;}
.ws6f{word-spacing:2.677965pt;}
.ws49{word-spacing:2.709827pt;}
.ws94{word-spacing:2.762961pt;}
.wsa5{word-spacing:2.773606pt;}
.ws4d{word-spacing:2.804780pt;}
.ws34{word-spacing:2.816095pt;}
.ws79{word-spacing:2.869229pt;}
.ws9e{word-spacing:2.869248pt;}
.ws3d{word-spacing:2.922363pt;}
.ws6e{word-spacing:2.964890pt;}
.wsa9{word-spacing:3.012710pt;}
.ws5a{word-spacing:3.028630pt;}
.ws61{word-spacing:3.134898pt;}
.ws19{word-spacing:3.156173pt;}
.ws21{word-spacing:3.188032pt;}
.ws8b{word-spacing:3.221180pt;}
.ws67{word-spacing:3.221530pt;}
.ws1f{word-spacing:3.251814pt;}
.ws98{word-spacing:3.299635pt;}
.ws77{word-spacing:3.400567pt;}
.ws5c{word-spacing:3.453701pt;}
.ws60{word-spacing:3.613103pt;}
.ws95{word-spacing:3.730022pt;}
.ws62{word-spacing:3.772505pt;}
.ws82{word-spacing:3.825638pt;}
.ws4b{word-spacing:3.848039pt;}
.ws71{word-spacing:3.873485pt;}
.ws72{word-spacing:3.921306pt;}
.ws78{word-spacing:4.038174pt;}
.ws40{word-spacing:4.091308pt;}
.wsa1{word-spacing:4.112589pt;}
.ws3f{word-spacing:4.144442pt;}
.ws35{word-spacing:4.250709pt;}
.ws84{word-spacing:4.303843pt;}
.ws64{word-spacing:4.410111pt;}
.ws91{word-spacing:4.450894pt;}
.ws1c{word-spacing:4.495155pt;}
.ws5f{word-spacing:4.516379pt;}
.ws92{word-spacing:4.835182pt;}
.ws6b{word-spacing:4.941450pt;}
.ws5d{word-spacing:5.153985pt;}
.ws11{word-spacing:5.393072pt;}
.ws12{word-spacing:5.467459pt;}
.ws15{word-spacing:5.595034pt;}
.ws20{word-spacing:5.786317pt;}
.ws22{word-spacing:6.535466pt;}
.ws8d{word-spacing:6.641733pt;}
.wsf{word-spacing:7.699075pt;}
.wsa7{word-spacing:8.126131pt;}
.ws29{word-spacing:8.342017pt;}
.ws70{word-spacing:8.416461pt;}
.ws63{word-spacing:8.487669pt;}
.ws75{word-spacing:9.404694pt;}
.ws9c{word-spacing:10.950963pt;}
.ws4c{word-spacing:11.571466pt;}
.ws6{word-spacing:13.763148pt;}
.wsc{word-spacing:14.348669pt;}
.wsd{word-spacing:14.356730pt;}
.wse{word-spacing:15.732893pt;}
.ws42{word-spacing:15.945370pt;}
.ws4a{word-spacing:21.648054pt;}
.ws10{word-spacing:24.399002pt;}
.ws9b{word-spacing:40.647680pt;}
.ws2{word-spacing:40.941867pt;}
.ws3{word-spacing:54.221867pt;}
.ws8a{word-spacing:228.325066pt;}
.ws8c{word-spacing:271.259127pt;}
.ws66{word-spacing:309.797066pt;}
._33{margin-left:-17.719308pt;}
._0{margin-left:-10.616218pt;}
._17{margin-left:-6.477864pt;}
._e{margin-left:-5.260288pt;}
._9{margin-left:-3.995677pt;}
._5{margin-left:-2.752326pt;}
._3{margin-left:-1.175671pt;}
._4{width:0.969929pt;}
._1{width:2.655756pt;}
._15{width:4.343458pt;}
._16{width:8.732597pt;}
._18{width:10.638963pt;}
._7{width:11.530016pt;}
._14{width:12.546319pt;}
._c{width:14.019618pt;}
._10{width:15.468682pt;}
._a{width:16.641638pt;}
._19{width:18.012381pt;}
._b{width:19.510886pt;}
._f{width:20.706406pt;}
._11{width:21.897879pt;}
._6{width:23.062165pt;}
._d{width:24.675533pt;}
._21{width:25.876193pt;}
._1a{width:27.310807pt;}
._8{width:29.011008pt;}
._20{width:30.293030pt;}
._1b{width:31.568243pt;}
._2f{width:36.496240pt;}
._34{width:41.992652pt;}
._2{width:48.381897pt;}
._31{width:52.555059pt;}
._32{width:54.993920pt;}
._30{width:78.904320pt;}
._23{width:385.403886pt;}
._2a{width:413.130593pt;}
._1f{width:534.827827pt;}
._1d{width:536.358093pt;}
._1e{width:558.060348pt;}
._1c{width:559.312077pt;}
._2e{width:748.299878pt;}
._2c{width:749.208474pt;}
._2d{width:751.951275pt;}
._29{width:756.859802pt;}
._25{width:763.934592pt;}
._2b{width:766.902170pt;}
._28{width:768.815002pt;}
._26{width:770.871296pt;}
._24{width:772.114637pt;}
._27{width:799.420314pt;}
._12{width:929.581851pt;}
._22{width:2316.509600pt;}
._13{width:2337.762933pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fsb{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.044747pt;}
.y8{bottom:12.578910pt;}
.y2{bottom:13.630978pt;}
.y4b{bottom:28.346667pt;}
.ycc{bottom:79.105333pt;}
.y115{bottom:82.896000pt;}
.yff{bottom:83.874667pt;}
.y134{bottom:86.745333pt;}
.y84{bottom:88.609333pt;}
.y88{bottom:88.885333pt;}
.yba{bottom:90.158667pt;}
.y20{bottom:91.398667pt;}
.y4a{bottom:92.108000pt;}
.y156{bottom:92.793333pt;}
.ycb{bottom:95.842667pt;}
.y177{bottom:97.272000pt;}
.yf6{bottom:98.180000pt;}
.y114{bottom:99.633333pt;}
.yfe{bottom:100.612000pt;}
.y133{bottom:103.482667pt;}
.y83{bottom:105.346667pt;}
.y80{bottom:105.373333pt;}
.y87{bottom:105.621333pt;}
.yb9{bottom:106.896000pt;}
.y1f{bottom:107.298667pt;}
.y81{bottom:108.176000pt;}
.y49{bottom:108.844000pt;}
.y155{bottom:109.530667pt;}
.yca{bottom:112.580000pt;}
.y176{bottom:112.614667pt;}
.yf5{bottom:114.917333pt;}
.y113{bottom:116.370667pt;}
.yfd{bottom:117.348000pt;}
.y132{bottom:120.220000pt;}
.y6f{bottom:121.657333pt;}
.y82{bottom:122.084000pt;}
.y86{bottom:122.358667pt;}
.y1e{bottom:123.200000pt;}
.yb8{bottom:123.633333pt;}
.y48{bottom:125.581333pt;}
.y154{bottom:126.268000pt;}
.y175{bottom:127.956000pt;}
.yc9{bottom:129.317333pt;}
.yf4{bottom:131.654667pt;}
.y85{bottom:132.073333pt;}
.y112{bottom:133.108000pt;}
.y131{bottom:136.957333pt;}
.yfc{bottom:138.070667pt;}
.y6e{bottom:138.394667pt;}
.y1d{bottom:139.100000pt;}
.yb7{bottom:140.370667pt;}
.y47{bottom:142.318667pt;}
.y153{bottom:143.005333pt;}
.y174{bottom:143.298667pt;}
.yf3{bottom:148.392000pt;}
.y111{bottom:149.844000pt;}
.yc8{bottom:150.040000pt;}
.y7f{bottom:152.141333pt;}
.y130{bottom:153.694667pt;}
.y1c{bottom:155.000000pt;}
.y6d{bottom:155.132000pt;}
.yb6{bottom:157.108000pt;}
.y173{bottom:158.641333pt;}
.y46{bottom:159.056000pt;}
.y152{bottom:159.742667pt;}
.yfb{bottom:165.117333pt;}
.yf2{bottom:165.129333pt;}
.y110{bottom:166.581333pt;}
.yc7{bottom:166.777333pt;}
.y7e{bottom:168.878667pt;}
.y12f{bottom:170.432000pt;}
.y1b{bottom:170.901333pt;}
.yb5{bottom:173.844000pt;}
.y172{bottom:173.984000pt;}
.y45{bottom:175.793333pt;}
.y151{bottom:176.480000pt;}
.yf1{bottom:181.866667pt;}
.yfa{bottom:182.213333pt;}
.yc6{bottom:183.514667pt;}
.y6c{bottom:184.968000pt;}
.y7d{bottom:185.616000pt;}
.y1a{bottom:186.801333pt;}
.y171{bottom:189.326667pt;}
.yb4{bottom:190.581333pt;}
.y44{bottom:192.530667pt;}
.y10f{bottom:196.517333pt;}
.yf0{bottom:198.604000pt;}
.yf9{bottom:199.309333pt;}
.yc5{bottom:200.252000pt;}
.y12e{bottom:200.268000pt;}
.y7c{bottom:202.353333pt;}
.y19{bottom:202.701333pt;}
.y170{bottom:204.669333pt;}
.yb3{bottom:207.318667pt;}
.y43{bottom:209.268000pt;}
.y12b{bottom:211.816000pt;}
.yef{bottom:215.340000pt;}
.yf8{bottom:216.405333pt;}
.y150{bottom:216.890667pt;}
.y16f{bottom:220.012000pt;}
.y7b{bottom:223.074667pt;}
.y42{bottom:226.005333pt;}
.yc4{bottom:227.897333pt;}
.yb2{bottom:228.041333pt;}
.y12a{bottom:228.553333pt;}
.y14f{bottom:231.502667pt;}
.yee{bottom:232.077333pt;}
.yf7{bottom:233.501333pt;}
.y16e{bottom:235.354667pt;}
.y7a{bottom:241.008000pt;}
.y41{bottom:242.742667pt;}
.yc3{bottom:244.993333pt;}
.y129{bottom:245.290667pt;}
.y14e{bottom:246.114667pt;}
.yed{bottom:248.814667pt;}
.y16d{bottom:250.696000pt;}
.yb1{bottom:257.929333pt;}
.y40{bottom:259.480000pt;}
.y14d{bottom:260.726667pt;}
.y128{bottom:262.028000pt;}
.yec{bottom:265.552000pt;}
.y16c{bottom:266.038667pt;}
.y79{bottom:268.054667pt;}
.y18{bottom:273.154667pt;}
.yb0{bottom:274.666667pt;}
.y3f{bottom:276.217333pt;}
.y127{bottom:278.765333pt;}
.y16b{bottom:281.381333pt;}
.y14c{bottom:282.005333pt;}
.yeb{bottom:282.289333pt;}
.y78{bottom:285.150667pt;}
.y17{bottom:289.054667pt;}
.yaf{bottom:291.404000pt;}
.y3e{bottom:292.954667pt;}
.y16a{bottom:296.724000pt;}
.yea{bottom:299.026667pt;}
.y126{bottom:299.488000pt;}
.y14b{bottom:303.285333pt;}
.y16{bottom:304.954667pt;}
.yae{bottom:308.141333pt;}
.y3d{bottom:309.692000pt;}
.y169{bottom:312.066667pt;}
.ye9{bottom:315.764000pt;}
.y14a{bottom:317.897333pt;}
.y15{bottom:320.856000pt;}
.yad{bottom:324.878667pt;}
.y3c{bottom:326.429333pt;}
.y125{bottom:329.376000pt;}
.y168{bottom:331.394667pt;}
.ye8{bottom:332.501333pt;}
.y149{bottom:332.509333pt;}
.y1a2{bottom:337.530667pt;}
.yac{bottom:341.616000pt;}
.y3b{bottom:343.166667pt;}
.y124{bottom:346.113333pt;}
.y148{bottom:347.121333pt;}
.ye7{bottom:349.238667pt;}
.y1a1{bottom:352.873333pt;}
.y14{bottom:354.688000pt;}
.yab{bottom:358.353333pt;}
.y3a{bottom:359.904000pt;}
.y167{bottom:361.282667pt;}
.y123{bottom:362.850667pt;}
.ye6{bottom:365.976000pt;}
.y1a0{bottom:368.216000pt;}
.y147{bottom:368.401333pt;}
.y13{bottom:370.589333pt;}
.yaa{bottom:375.090667pt;}
.y39{bottom:376.641333pt;}
.y122{bottom:379.588000pt;}
.ye5{bottom:382.713333pt;}
.y19f{bottom:383.558667pt;}
.y166{bottom:384.873333pt;}
.y12{bottom:386.489333pt;}
.y146{bottom:389.680000pt;}
.ya9{bottom:391.828000pt;}
.y121{bottom:396.325333pt;}
.y38{bottom:397.364000pt;}
.y19e{bottom:398.901333pt;}
.ye4{bottom:403.436000pt;}
.y145{bottom:404.292000pt;}
.y165{bottom:408.465333pt;}
.ya8{bottom:408.565333pt;}
.y120{bottom:413.062667pt;}
.y19d{bottom:414.244000pt;}
.y11{bottom:418.330667pt;}
.y144{bottom:418.904000pt;}
.ya7{bottom:425.302667pt;}
.y19c{bottom:429.585333pt;}
.y11f{bottom:429.800000pt;}
.y164{bottom:432.057333pt;}
.ye3{bottom:433.324000pt;}
.y143{bottom:433.516000pt;}
.y10{bottom:434.230667pt;}
.ya6{bottom:442.040000pt;}
.y19b{bottom:444.928000pt;}
.y11e{bottom:446.537333pt;}
.y163{bottom:447.678667pt;}
.ye2{bottom:450.061333pt;}
.y142{bottom:455.404000pt;}
.ya5{bottom:458.777333pt;}
.y19a{bottom:460.270667pt;}
.y6b{bottom:461.582667pt;}
.y11d{bottom:463.274667pt;}
.y37{bottom:464.164000pt;}
.yf{bottom:466.070667pt;}
.ye1{bottom:466.798667pt;}
.y162{bottom:471.269333pt;}
.ya4{bottom:475.514667pt;}
.y199{bottom:475.613333pt;}
.y12d{bottom:478.024000pt;}
.y6a{bottom:478.320000pt;}
.y11c{bottom:480.012000pt;}
.y36{bottom:481.458667pt;}
.ye{bottom:481.972000pt;}
.y10e{bottom:482.426667pt;}
.y141{bottom:483.509333pt;}
.ydf{bottom:483.536000pt;}
.ye0{bottom:485.886667pt;}
.y161{bottom:486.892000pt;}
.y198{bottom:490.956000pt;}
.ya3{bottom:492.252000pt;}
.y69{bottom:495.057333pt;}
.y11b{bottom:496.749333pt;}
.yd{bottom:497.872000pt;}
.y10d{bottom:499.164000pt;}
.yde{bottom:500.273333pt;}
.y160{bottom:502.513333pt;}
.y197{bottom:506.298667pt;}
.ya2{bottom:508.989333pt;}
.y68{bottom:511.794667pt;}
.y11a{bottom:513.486667pt;}
.yc{bottom:513.772000pt;}
.y35{bottom:514.694667pt;}
.y140{bottom:515.162667pt;}
.y10c{bottom:515.901333pt;}
.y15f{bottom:518.134667pt;}
.y196{bottom:521.641333pt;}
.ya1{bottom:525.726667pt;}
.y67{bottom:528.532000pt;}
.yb{bottom:529.673333pt;}
.y119{bottom:530.222667pt;}
.y13f{bottom:531.900000pt;}
.y34{bottom:531.989333pt;}
.y10b{bottom:532.638667pt;}
.y15e{bottom:533.756000pt;}
.ydd{bottom:536.698667pt;}
.y195{bottom:536.984000pt;}
.ya0{bottom:542.464000pt;}
.ya{bottom:545.573333pt;}
.y13e{bottom:548.637333pt;}
.y66{bottom:549.254667pt;}
.y33{bottom:549.284000pt;}
.y10a{bottom:549.376000pt;}
.y15d{bottom:549.377333pt;}
.y118{bottom:550.945333pt;}
.ydc{bottom:551.310667pt;}
.y194{bottom:552.325333pt;}
.y9f{bottom:559.200000pt;}
.y15c{bottom:564.998667pt;}
.y13d{bottom:565.374667pt;}
.y7{bottom:565.458715pt;}
.ydb{bottom:565.922667pt;}
.y109{bottom:566.113333pt;}
.y32{bottom:566.580000pt;}
.y77{bottom:567.600000pt;}
.y193{bottom:567.668000pt;}
.y117{bottom:578.090667pt;}
.y9e{bottom:579.922667pt;}
.yda{bottom:580.534667pt;}
.y13c{bottom:582.112000pt;}
.y65{bottom:582.596000pt;}
.y108{bottom:582.850667pt;}
.y192{bottom:583.010667pt;}
.y31{bottom:583.874667pt;}
.y76{bottom:584.337333pt;}
.y15b{bottom:596.560000pt;}
.y191{bottom:598.353333pt;}
.y13b{bottom:598.849333pt;}
.y64{bottom:599.333333pt;}
.y107{bottom:599.588000pt;}
.y75{bottom:601.074667pt;}
.y30{bottom:601.169333pt;}
.yd9{bottom:602.421333pt;}
.y9d{bottom:609.810667pt;}
.y15a{bottom:613.297333pt;}
.y190{bottom:613.696000pt;}
.y13a{bottom:615.586667pt;}
.y63{bottom:616.070667pt;}
.y106{bottom:616.325333pt;}
.y74{bottom:617.812000pt;}
.y2f{bottom:618.465333pt;}
.y9c{bottom:626.548000pt;}
.y18f{bottom:629.038667pt;}
.y159{bottom:630.034667pt;}
.yd8{bottom:630.528000pt;}
.y139{bottom:632.324000pt;}
.y62{bottom:632.808000pt;}
.y105{bottom:633.062667pt;}
.y73{bottom:634.549333pt;}
.y2e{bottom:635.760000pt;}
.y9b{bottom:643.285333pt;}
.y18e{bottom:644.381333pt;}
.y158{bottom:646.772000pt;}
.y138{bottom:649.061333pt;}
.y61{bottom:649.545333pt;}
.y104{bottom:649.798667pt;}
.y72{bottom:651.286667pt;}
.y2d{bottom:653.056000pt;}
.y18d{bottom:659.724000pt;}
.y9a{bottom:660.022667pt;}
.yd7{bottom:663.509333pt;}
.y137{bottom:665.798667pt;}
.y60{bottom:666.282667pt;}
.y103{bottom:666.536000pt;}
.y71{bottom:668.024000pt;}
.y2c{bottom:670.350667pt;}
.y18c{bottom:675.066667pt;}
.y99{bottom:676.760000pt;}
.yd6{bottom:680.246667pt;}
.y136{bottom:682.536000pt;}
.y5f{bottom:683.020000pt;}
.y102{bottom:683.273333pt;}
.y2b{bottom:687.645333pt;}
.y18b{bottom:690.408000pt;}
.y98{bottom:693.497333pt;}
.yd5{bottom:696.984000pt;}
.y70{bottom:697.860000pt;}
.y5e{bottom:699.757333pt;}
.y135{bottom:703.258667pt;}
.y2a{bottom:704.941333pt;}
.y18a{bottom:705.750667pt;}
.y97{bottom:710.234667pt;}
.y101{bottom:713.209333pt;}
.yd4{bottom:713.721333pt;}
.y5d{bottom:716.494667pt;}
.y189{bottom:721.093333pt;}
.y29{bottom:722.236000pt;}
.y96{bottom:726.972000pt;}
.y100{bottom:730.305333pt;}
.yd3{bottom:730.458667pt;}
.y5c{bottom:733.232000pt;}
.y188{bottom:736.436000pt;}
.y28{bottom:739.530667pt;}
.y27{bottom:739.532000pt;}
.y95{bottom:743.709333pt;}
.yd2{bottom:747.196000pt;}
.y12c{bottom:747.810667pt;}
.y5b{bottom:749.969333pt;}
.y187{bottom:751.778667pt;}
.y94{bottom:760.446667pt;}
.yc2{bottom:763.933333pt;}
.y5a{bottom:766.706667pt;}
.y186{bottom:767.121333pt;}
.y26{bottom:773.613333pt;}
.yc1{bottom:780.670667pt;}
.y93{bottom:781.169333pt;}
.y185{bottom:782.464000pt;}
.y59{bottom:783.444000pt;}
.y25{bottom:787.960000pt;}
.yc0{bottom:797.408000pt;}
.y184{bottom:797.806667pt;}
.y92{bottom:799.101333pt;}
.y58{bottom:800.181333pt;}
.y24{bottom:806.162667pt;}
.y182{bottom:813.148000pt;}
.y183{bottom:813.149333pt;}
.ybf{bottom:814.145333pt;}
.y57{bottom:816.918667pt;}
.y23{bottom:820.509333pt;}
.y181{bottom:828.490667pt;}
.y91{bottom:828.989333pt;}
.ybe{bottom:830.882667pt;}
.y22{bottom:830.998667pt;}
.y56{bottom:833.656000pt;}
.y180{bottom:843.833333pt;}
.y90{bottom:845.726667pt;}
.ybd{bottom:847.620000pt;}
.y21{bottom:849.202667pt;}
.y55{bottom:850.393333pt;}
.y17f{bottom:859.176000pt;}
.yd1{bottom:864.357333pt;}
.y54{bottom:867.130667pt;}
.ybc{bottom:868.341333pt;}
.y8f{bottom:868.534667pt;}
.y17e{bottom:874.518667pt;}
.y8e{bottom:877.646667pt;}
.yd0{bottom:881.094667pt;}
.y116{bottom:881.492000pt;}
.y53{bottom:883.868000pt;}
.y6{bottom:884.713333pt;}
.y157{bottom:885.078667pt;}
.y17d{bottom:889.861333pt;}
.ycf{bottom:897.832000pt;}
.ybb{bottom:898.229333pt;}
.y52{bottom:900.605333pt;}
.y17c{bottom:905.204000pt;}
.yce{bottom:914.569333pt;}
.y8d{bottom:914.966667pt;}
.y51{bottom:917.342667pt;}
.y17b{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y8c{bottom:931.704000pt;}
.y50{bottom:934.080000pt;}
.ycd{bottom:935.290667pt;}
.y17a{bottom:935.889333pt;}
.y8b{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y4f{bottom:950.817333pt;}
.y179{bottom:951.230667pt;}
.y8a{bottom:965.178667pt;}
.y178{bottom:966.573333pt;}
.y4e{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y89{bottom:981.916000pt;}
.y4d{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4c{bottom:1043.020000pt;}
.h15{height:2.125355pt;}
.h7{height:22.673858pt;}
.hc{height:23.304670pt;}
.h1d{height:25.462789pt;}
.h16{height:26.248130pt;}
.ha{height:27.188522pt;}
.hb{height:27.300102pt;}
.h18{height:27.630190pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.hd{height:31.072763pt;}
.h12{height:31.200285pt;}
.he{height:34.430976pt;}
.h1c{height:34.717901pt;}
.hf{height:34.957005pt;}
.h1e{height:35.100467pt;}
.h10{height:38.256384pt;}
.h11{height:38.840857pt;}
.h4{height:39.000258pt;}
.h13{height:41.524400pt;}
.h2{height:45.271688pt;}
.h6{height:48.360277pt;}
.h19{height:48.809811pt;}
.h5{height:68.861952pt;}
.h1a{height:77.074688pt;}
.h3{height:91.114522pt;}
.h17{height:97.714688pt;}
.h14{height:108.925355pt;}
.h1b{height:113.522688pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:133.842932pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:55.428169pt;}
.x8d{left:76.686667pt;}
.x84{left:95.270667pt;}
.x88{left:104.060000pt;}
.x86{left:136.805333pt;}
.x89{left:141.772000pt;}
.x87{left:146.350667pt;}
.x85{left:147.504000pt;}
.x83{left:161.557333pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x7b{left:223.916000pt;}
.x42{left:234.404000pt;}
.x5{left:240.553333pt;}
.x82{left:246.612000pt;}
.x7c{left:250.033333pt;}
.x9{left:251.365333pt;}
.x57{left:252.262667pt;}
.x54{left:253.769333pt;}
.x2a{left:259.172000pt;}
.x58{left:262.374667pt;}
.x38{left:267.636000pt;}
.x29{left:273.888000pt;}
.x39{left:276.376000pt;}
.x7{left:278.020000pt;}
.x80{left:279.689333pt;}
.x55{left:283.545333pt;}
.x8{left:288.570667pt;}
.x63{left:292.732000pt;}
.x59{left:293.874667pt;}
.x71{left:299.769333pt;}
.x61{left:301.252000pt;}
.x64{left:306.016000pt;}
.x53{left:310.794667pt;}
.x6a{left:314.001333pt;}
.x5a{left:317.142667pt;}
.x62{left:321.801333pt;}
.xe{left:323.545333pt;}
.xf{left:330.188000pt;}
.x4f{left:335.704000pt;}
.x20{left:339.880000pt;}
.x10{left:345.884000pt;}
.x7d{left:347.185333pt;}
.x50{left:348.986667pt;}
.x8c{left:350.886667pt;}
.x11{left:352.525333pt;}
.x74{left:354.856000pt;}
.x21{left:356.461333pt;}
.x6d{left:358.492000pt;}
.x2b{left:361.406667pt;}
.x6e{left:364.470667pt;}
.x22{left:369.745333pt;}
.x2d{left:371.049333pt;}
.x2c{left:374.908000pt;}
.x8a{left:380.685333pt;}
.x2e{left:386.206667pt;}
.x12{left:390.565333pt;}
.x13{left:397.206667pt;}
.x5b{left:398.396000pt;}
.x14{left:400.514667pt;}
.x15{left:407.156000pt;}
.x5c{left:411.680000pt;}
.x5d{left:433.925333pt;}
.x6b{left:443.902667pt;}
.x78{left:448.053333pt;}
.x2f{left:455.877333pt;}
.x5e{left:456.917333pt;}
.x25{left:457.812000pt;}
.x44{left:460.885333pt;}
.x32{left:465.056000pt;}
.x31{left:466.397333pt;}
.x26{left:471.096000pt;}
.x45{left:474.169333pt;}
.x7e{left:475.618667pt;}
.x4b{left:481.377333pt;}
.x30{left:485.220000pt;}
.x37{left:486.808000pt;}
.x70{left:493.704000pt;}
.x4c{left:494.661333pt;}
.x8b{left:497.233333pt;}
.x1c{left:498.442667pt;}
.x7f{left:499.802667pt;}
.x3c{left:507.362667pt;}
.x75{left:508.653333pt;}
.x1d{left:511.726667pt;}
.x1e{left:515.070667pt;}
.x33{left:520.074667pt;}
.x1f{left:528.354667pt;}
.x79{left:531.240000pt;}
.xa{left:536.185333pt;}
.x3a{left:541.045333pt;}
.xb{left:542.826667pt;}
.xc{left:546.214667pt;}
.x51{left:547.338667pt;}
.xd{left:552.856000pt;}
.x35{left:554.689333pt;}
.x7a{left:556.518667pt;}
.x52{left:560.621333pt;}
.x3b{left:562.690667pt;}
.x3d{left:564.936000pt;}
.x3e{left:571.877333pt;}
.x65{left:577.770667pt;}
.x46{left:579.060000pt;}
.x66{left:583.748000pt;}
.x34{left:588.936000pt;}
.x67{left:589.845333pt;}
.x3f{left:593.966667pt;}
.x56{left:605.688000pt;}
.x68{left:610.854667pt;}
.x69{left:616.832000pt;}
.x72{left:619.098667pt;}
.x40{left:621.022667pt;}
.x23{left:625.910667pt;}
.x6c{left:627.046667pt;}
.x36{left:630.154667pt;}
.x41{left:632.021333pt;}
.x24{left:639.194667pt;}
.x93{left:644.101333pt;}
.x73{left:645.662667pt;}
.x8e{left:651.398667pt;}
.x5f{left:652.600000pt;}
.x90{left:657.190667pt;}
.x60{left:659.925333pt;}
.x1a{left:661.581333pt;}
.x47{left:667.138667pt;}
.x1b{left:668.224000pt;}
.x8f{left:675.308000pt;}
.x48{left:680.422667pt;}
.x16{left:685.926667pt;}
.x17{left:692.568000pt;}
.x18{left:695.956000pt;}
.x27{left:697.844000pt;}
.x19{left:702.597333pt;}
.x6f{left:706.988000pt;}
.x28{left:711.128000pt;}
.x76{left:717.334667pt;}
.x91{left:720.277333pt;}
.x81{left:724.928000pt;}
.x4d{left:726.178667pt;}
.x49{left:727.905333pt;}
.x43{left:733.512000pt;}
.x4e{left:739.461333pt;}
.x4a{left:741.189333pt;}
.x77{left:742.772000pt;}
.x92{left:744.188000pt;}
}


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