
/* 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_e78eb8eadb3d.woff")format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_8b6cda6804ba.woff")format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_256a11171d67.woff")format("woff");}.ff3{font-family:ff3;line-height:0.946000;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_eb0ef1df434d.woff")format("woff");}.ff4{font-family:ff4;line-height:0.955000;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_ce95027638c4.woff")format("woff");}.ff5{font-family:ff5;line-height:0.946000;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_7d7d8106d3e9.woff")format("woff");}.ff6{font-family:ff6;line-height:0.720000;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_256a11171d67.woff")format("woff");}.ff7{font-family:ff7;line-height:0.946000;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_82b114a0ac2a.woff")format("woff");}.ff8{font-family:ff8;line-height:0.525000;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_1fdef5751d1e.woff")format("woff");}.ff9{font-family:ff9;line-height:0.720000;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_e1ee44edbfe3.woff")format("woff");}.ffa{font-family:ffa;line-height:0.720000;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_144f6e5e33dc.woff")format("woff");}.ffb{font-family:ffb;line-height:0.720000;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;}
.m3{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);}
.m1b{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);}
.m6{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);}
.m7{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);}
.m9{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);}
.m13{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);}
.m5{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);}
.ma{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m25{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);}
.m1c{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);}
.m1a{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);}
.md{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);}
.m23{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);}
.m4{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);}
.m15{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);}
.mc{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);}
.m21{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);}
.m26{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);}
.m22{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);}
.m12{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);}
.me{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);}
.m11{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);}
.m1f{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);}
.m18{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);}
.mb{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);}
.m24{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);}
.m14{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);}
.m27{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);}
.m10{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);}
.m2{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);}
.m1e{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);}
.m1d{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);}
.m19{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);}
.mf{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);}
.m16{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:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.040000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.986800px;}
.ls0{letter-spacing:2.989920px;}
.ls5{letter-spacing:13.391820px;}
.ls4{letter-spacing:13.712634px;}
.ls3{letter-spacing:15.446220px;}
.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;}
}
.ws2{word-spacing:-14.944500px;}
.wsa2{word-spacing:-10.461000px;}
.ws28{word-spacing:-4.303626px;}
.ws93{word-spacing:-4.088819px;}
.ws2f{word-spacing:-3.765451px;}
.ws2e{word-spacing:-3.712032px;}
.ws8b{word-spacing:-3.442621px;}
.ws9{word-spacing:-3.389256px;}
.ws8c{word-spacing:-3.281879px;}
.ws52{word-spacing:-3.227868px;}
.wsb2{word-spacing:-3.221779px;}
.ws3f{word-spacing:-3.173856px;}
.wsac{word-spacing:-3.138384px;}
.ws56{word-spacing:-3.119845px;}
.ws9d{word-spacing:-3.012468px;}
.ws39{word-spacing:-2.797661px;}
.ws41{word-spacing:-2.635681px;}
.ws4d{word-spacing:-2.420874px;}
.ws25{word-spacing:-2.366916px;}
.ws73{word-spacing:-2.313497px;}
.ws99{word-spacing:-2.259486px;}
.ws54{word-spacing:-2.205528px;}
.ws8e{word-spacing:-2.152109px;}
.ws74{word-spacing:-1.990721px;}
.ws76{word-spacing:-1.981980px;}
.wsab{word-spacing:-1.841136px;}
.ws5a{word-spacing:-1.721311px;}
.ws94{word-spacing:-1.613934px;}
.ws53{word-spacing:-1.559923px;}
.ws6f{word-spacing:-1.452546px;}
.ws8{word-spacing:-1.398535px;}
.ws3e{word-spacing:-1.345115px;}
.ws2b{word-spacing:-1.291158px;}
.ws4e{word-spacing:-1.183727px;}
.ws50{word-spacing:-1.129770px;}
.ws7{word-spacing:-1.075759px;}
.ws3b{word-spacing:-1.022339px;}
.ws17{word-spacing:-1.021747px;}
.ws7a{word-spacing:-0.914371px;}
.ws8d{word-spacing:-0.752983px;}
.ws97{word-spacing:-0.699563px;}
.ws8f{word-spacing:-0.591595px;}
.wsa9{word-spacing:-0.543930px;}
.ws3c{word-spacing:-0.376787px;}
.ws2a{word-spacing:-0.322776px;}
.ws31{word-spacing:-0.269410px;}
.wsf{word-spacing:-0.268765px;}
.ws13{word-spacing:-0.238957px;}
.ws1f{word-spacing:-0.215399px;}
.ws38{word-spacing:-0.214807px;}
.wsa3{word-spacing:-0.167125px;}
.ws5{word-spacing:-0.161388px;}
.ws9e{word-spacing:-0.143556px;}
.ws7e{word-spacing:-0.107969px;}
.ws16{word-spacing:-0.107377px;}
.wsa8{word-spacing:-0.083688px;}
.ws3{word-spacing:-0.065454px;}
.ws2c{word-spacing:-0.054011px;}
.ws35{word-spacing:-0.053796px;}
.ws71{word-spacing:-0.053419px;}
.wsa0{word-spacing:-0.047533px;}
.ws1b{word-spacing:-0.000293px;}
.ws12{word-spacing:-0.000143px;}
.ws1{word-spacing:0.000000px;}
.ws1a{word-spacing:0.000293px;}
.ws29{word-spacing:0.053419px;}
.ws49{word-spacing:0.054011px;}
.ws6c{word-spacing:0.061704px;}
.wsa1{word-spacing:0.083688px;}
.ws34{word-spacing:0.107377px;}
.ws1c{word-spacing:0.107969px;}
.wsa4{word-spacing:0.125699px;}
.ws6{word-spacing:0.161388px;}
.wsb0{word-spacing:0.167083px;}
.wsae{word-spacing:0.167711px;}
.ws95{word-spacing:0.214807px;}
.wsa{word-spacing:0.215399px;}
.wsad{word-spacing:0.251106px;}
.ws66{word-spacing:0.255635px;}
.ws65{word-spacing:0.258342px;}
.ws21{word-spacing:0.268765px;}
.wse{word-spacing:0.322776px;}
.ws91{word-spacing:0.484164px;}
.wsb{word-spacing:0.591595px;}
.ws33{word-spacing:0.645552px;}
.ws18{word-spacing:0.699563px;}
.ws98{word-spacing:0.753574px;}
.ws1e{word-spacing:0.806940px;}
.ws3a{word-spacing:0.860951px;}
.ws6d{word-spacing:0.914371px;}
.ws22{word-spacing:1.021747px;}
.ws15{word-spacing:1.022339px;}
.ws47{word-spacing:1.075759px;}
.ws32{word-spacing:1.129770px;}
.ws70{word-spacing:1.291158px;}
.ws2d{word-spacing:1.345115px;}
.wsa7{word-spacing:1.380936px;}
.ws37{word-spacing:1.398535px;}
.ws48{word-spacing:1.667299px;}
.wsb1{word-spacing:1.673760px;}
.ws9f{word-spacing:1.673843px;}
.ws42{word-spacing:1.775322px;}
.ws5f{word-spacing:1.990129px;}
.ws5c{word-spacing:1.990721px;}
.ws6e{word-spacing:2.044087px;}
.ws61{word-spacing:2.098098px;}
.ws36{word-spacing:2.259486px;}
.ws19{word-spacing:2.420874px;}
.wsb5{word-spacing:2.510766px;}
.ws1d{word-spacing:2.636273px;}
.ws4{word-spacing:2.689692px;}
.ws30{word-spacing:2.743704px;}
.ws5b{word-spacing:2.905092px;}
.ws62{word-spacing:2.958457px;}
.ws64{word-spacing:2.959049px;}
.ws4b{word-spacing:3.012468px;}
.ws7c{word-spacing:3.173856px;}
.ws9c{word-spacing:3.227868px;}
.ws23{word-spacing:3.281233px;}
.ws24{word-spacing:3.281879px;}
.ws51{word-spacing:3.442621px;}
.ws9b{word-spacing:3.496632px;}
.wsd{word-spacing:3.658020px;}
.ws57{word-spacing:3.712032px;}
.wsc{word-spacing:3.819408px;}
.ws82{word-spacing:3.873420px;}
.ws87{word-spacing:3.980796px;}
.ws27{word-spacing:4.142238px;}
.ws10{word-spacing:4.196196px;}
.ws60{word-spacing:4.303626px;}
.ws46{word-spacing:4.465014px;}
.ws78{word-spacing:4.572391px;}
.ws26{word-spacing:5.379385px;}
.ws20{word-spacing:5.433342px;}
.ws4a{word-spacing:5.702161px;}
.ws8a{word-spacing:5.917560px;}
.ws58{word-spacing:6.078948px;}
.wsb3{word-spacing:7.197377px;}
.ws90{word-spacing:8.015658px;}
.wsaa{word-spacing:9.875226px;}
.ws40{word-spacing:10.245924px;}
.wsb6{word-spacing:10.412004px;}
.wsa6{word-spacing:10.418863px;}
.wsa5{word-spacing:10.502844px;}
.wsaf{word-spacing:10.586867px;}
.wsb4{word-spacing:11.381903px;}
.ws75{word-spacing:11.404483px;}
.ws11{word-spacing:11.907180px;}
.ws84{word-spacing:11.942658px;}
.ws67{word-spacing:11.996669px;}
.ws45{word-spacing:11.997924px;}
.ws81{word-spacing:12.101161px;}
.ws85{word-spacing:13.072428px;}
.ws6a{word-spacing:13.179805px;}
.ws72{word-spacing:13.287827px;}
.ws69{word-spacing:13.341193px;}
.ws4c{word-spacing:13.395204px;}
.ws6b{word-spacing:13.449000px;}
.ws59{word-spacing:13.556592px;}
.ws92{word-spacing:13.574130px;}
.ws7d{word-spacing:13.598184px;}
.ws96{word-spacing:13.610603px;}
.ws7b{word-spacing:13.642471px;}
.ws4f{word-spacing:13.651872px;}
.ws7f{word-spacing:13.745161px;}
.ws80{word-spacing:14.579123px;}
.ws68{word-spacing:14.761963px;}
.ws86{word-spacing:14.930472px;}
.ws44{word-spacing:15.165924px;}
.ws43{word-spacing:15.170784px;}
.ws5d{word-spacing:15.385925px;}
.ws88{word-spacing:15.441797px;}
.ws55{word-spacing:16.084896px;}
.ws3d{word-spacing:16.298046px;}
.ws77{word-spacing:16.354253px;}
.ws5e{word-spacing:16.631544px;}
.ws9a{word-spacing:16.937047px;}
.ws83{word-spacing:17.268624px;}
.ws79{word-spacing:18.828546px;}
.ws89{word-spacing:19.312764px;}
.ws63{word-spacing:19.330099px;}
.ws0{word-spacing:25.719210px;}
.ws14{word-spacing:65.388546px;}
._3{margin-left:-5.738400px;}
._2{margin-left:-3.526902px;}
._0{margin-left:-2.065903px;}
._5{margin-left:-1.021747px;}
._4{width:1.043510px;}
._1{width:2.211786px;}
._8{width:3.999221px;}
._e{width:9.835559px;}
._7{width:12.317993px;}
._a{width:13.341623px;}
._b{width:14.492564px;}
._6{width:18.151176px;}
._c{width:20.317577px;}
._f{width:22.231170px;}
._d{width:30.492451px;}
._9{width:65.454000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:32.880000px;}
.fs8{font-size:41.844000px;}
.fsa{font-size:43.638000px;}
.fs6{font-size:47.820000px;}
.fs3{font-size:52.602000px;}
.fs5{font-size:53.796000px;}
.fs2{font-size:59.778000px;}
.fs9{font-size:60.000000px;}
.fs4{font-size:65.454000px;}
.fs1{font-size:71.730000px;}
.fs0{font-size:103.290000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:45.000000px;}
.ybb{bottom:126.979500px;}
.y93{bottom:130.939500px;}
.y5c{bottom:132.322500px;}
.ye4{bottom:134.017500px;}
.y33{bottom:138.934500px;}
.yba{bottom:143.416500px;}
.y5b{bottom:148.761000px;}
.y92{bottom:150.085500px;}
.ye3{bottom:150.456000px;}
.y32{bottom:150.889500px;}
.y10b{bottom:154.476000px;}
.yd7{bottom:154.708500px;}
.y140{bottom:158.361000px;}
.yb9{bottom:159.855000px;}
.y31{bottom:162.844500px;}
.y5a{bottom:165.199500px;}
.y91{bottom:166.524000px;}
.ye2{bottom:166.894500px;}
.y13f{bottom:170.316000px;}
.y10a{bottom:170.914500px;}
.yd6{bottom:171.147000px;}
.y30{bottom:174.799500px;}
.yb8{bottom:176.293500px;}
.y59{bottom:181.638000px;}
.y13e{bottom:182.271000px;}
.y90{bottom:182.962500px;}
.ye1{bottom:183.333000px;}
.y2f{bottom:186.754500px;}
.y109{bottom:187.353000px;}
.yd5{bottom:187.585500px;}
.yb7{bottom:192.732000px;}
.y13d{bottom:194.226000px;}
.y58{bottom:198.076500px;}
.y2e{bottom:198.709500px;}
.y8f{bottom:199.401000px;}
.ye0{bottom:199.771500px;}
.y108{bottom:203.791500px;}
.yd4{bottom:204.024000px;}
.y13c{bottom:206.182500px;}
.yb6{bottom:209.170500px;}
.y2d{bottom:210.664500px;}
.y57{bottom:214.515000px;}
.y8e{bottom:215.838000px;}
.ydf{bottom:216.210000px;}
.y13b{bottom:218.137500px;}
.y107{bottom:220.228500px;}
.yd3{bottom:220.462500px;}
.yb5{bottom:225.609000px;}
.y2c{bottom:227.230500px;}
.y13a{bottom:230.092500px;}
.y56{bottom:230.952000px;}
.y8d{bottom:232.276500px;}
.yde{bottom:232.648500px;}
.y106{bottom:236.667000px;}
.yd2{bottom:236.901000px;}
.yb4{bottom:242.047500px;}
.y55{bottom:247.390500px;}
.y8c{bottom:248.715000px;}
.ydd{bottom:249.087000px;}
.y2b{bottom:249.523500px;}
.y105{bottom:253.105500px;}
.yd1{bottom:253.339500px;}
.y139{bottom:254.002500px;}
.yb3{bottom:262.738500px;}
.y54{bottom:263.829000px;}
.ydc{bottom:265.525500px;}
.y138{bottom:265.957500px;}
.y2a{bottom:265.960500px;}
.y8b{bottom:269.263500px;}
.y104{bottom:269.544000px;}
.yd0{bottom:269.778000px;}
.y137{bottom:277.912500px;}
.yb2{bottom:279.175500px;}
.y53{bottom:280.267500px;}
.ydb{bottom:281.964000px;}
.y29{bottom:282.399000px;}
.y103{bottom:285.982500px;}
.ycf{bottom:286.215000px;}
.y136{bottom:289.867500px;}
.yb1{bottom:295.614000px;}
.y52{bottom:296.706000px;}
.yda{bottom:298.402500px;}
.y28{bottom:298.837500px;}
.y8a{bottom:301.099500px;}
.y135{bottom:301.822500px;}
.yce{bottom:302.653500px;}
.y102{bottom:306.531000px;}
.yb0{bottom:312.052500px;}
.y51{bottom:313.144500px;}
.y134{bottom:313.779000px;}
.yd9{bottom:314.839500px;}
.y27{bottom:315.276000px;}
.y89{bottom:317.538000px;}
.ycd{bottom:319.092000px;}
.y133{bottom:325.734000px;}
.yaf{bottom:328.491000px;}
.y50{bottom:329.583000px;}
.yd8{bottom:331.278000px;}
.y26{bottom:331.714500px;}
.y88{bottom:333.976500px;}
.ycc{bottom:335.530500px;}
.y132{bottom:337.689000px;}
.y101{bottom:337.987500px;}
.y4f{bottom:346.021500px;}
.y25{bottom:348.153000px;}
.yae{bottom:349.039500px;}
.y131{bottom:349.644000px;}
.y87{bottom:350.415000px;}
.ycb{bottom:351.969000px;}
.y100{bottom:354.426000px;}
.y130{bottom:361.599000px;}
.y4e{bottom:362.460000px;}
.y86{bottom:366.853500px;}
.yca{bottom:368.407500px;}
.y24{bottom:368.701500px;}
.yff{bottom:370.864500px;}
.y12f{bottom:373.554000px;}
.y4d{bottom:378.898500px;}
.yad{bottom:382.635000px;}
.y85{bottom:383.290500px;}
.yc9{bottom:384.846000px;}
.y12e{bottom:385.509000px;}
.yfe{bottom:387.303000px;}
.y4c{bottom:395.335500px;}
.yac{bottom:399.073500px;}
.y84{bottom:399.729000px;}
.y23{bottom:401.110500px;}
.yc8{bottom:401.284500px;}
.y12d{bottom:401.574000px;}
.yfd{bottom:403.741500px;}
.y4b{bottom:411.774000px;}
.yab{bottom:415.512000px;}
.y83{bottom:416.167500px;}
.y22{bottom:417.549000px;}
.yc7{bottom:417.723000px;}
.yfc{bottom:420.180000px;}
.y4a{bottom:428.212500px;}
.y21{bottom:432.493500px;}
.y82{bottom:432.606000px;}
.y12c{bottom:433.330500px;}
.yc6{bottom:434.161500px;}
.yaa{bottom:436.060500px;}
.yfb{bottom:436.617000px;}
.y49{bottom:444.651000px;}
.y20{bottom:447.438000px;}
.y81{bottom:449.044500px;}
.y12b{bottom:449.769000px;}
.yc5{bottom:450.598500px;}
.yfa{bottom:453.055500px;}
.y48{bottom:461.089500px;}
.y1f{bottom:462.381000px;}
.y80{bottom:465.483000px;}
.y12a{bottom:466.206000px;}
.yc4{bottom:467.037000px;}
.yf9{bottom:469.494000px;}
.ya9{bottom:469.657500px;}
.y1e{bottom:477.325500px;}
.y47{bottom:477.528000px;}
.y7f{bottom:481.921500px;}
.y129{bottom:482.644500px;}
.yc3{bottom:483.475500px;}
.yf8{bottom:485.932500px;}
.ya8{bottom:486.096000px;}
.y46{bottom:493.966500px;}
.y7e{bottom:498.360000px;}
.yc2{bottom:499.914000px;}
.yf7{bottom:502.371000px;}
.ya7{bottom:502.533000px;}
.y128{bottom:503.193000px;}
.y1d{bottom:506.295000px;}
.y45{bottom:510.405000px;}
.y7d{bottom:514.798500px;}
.yc1{bottom:516.352500px;}
.yf6{bottom:518.809500px;}
.ya6{bottom:518.971500px;}
.y1c{bottom:522.733500px;}
.y44{bottom:526.843500px;}
.y7c{bottom:531.237000px;}
.yc0{bottom:532.791000px;}
.y127{bottom:534.949500px;}
.yf5{bottom:535.248000px;}
.ya5{bottom:535.410000px;}
.y1b{bottom:539.172000px;}
.y43{bottom:543.282000px;}
.y7b{bottom:547.674000px;}
.ybf{bottom:549.229500px;}
.y126{bottom:551.388000px;}
.yf4{bottom:551.686500px;}
.ya4{bottom:551.848500px;}
.y1a{bottom:555.610500px;}
.y42{bottom:559.720500px;}
.y7a{bottom:564.112500px;}
.ybe{bottom:565.668000px;}
.y125{bottom:567.825000px;}
.yf3{bottom:568.125000px;}
.ya3{bottom:568.287000px;}
.y19{bottom:572.049000px;}
.y41{bottom:576.157500px;}
.y79{bottom:580.551000px;}
.y124{bottom:584.263500px;}
.yf2{bottom:584.563500px;}
.ya2{bottom:584.725500px;}
.y18{bottom:588.487500px;}
.y40{bottom:592.596000px;}
.y77{bottom:596.989500px;}
.y123{bottom:600.702000px;}
.yf1{bottom:601.000500px;}
.ya1{bottom:601.164000px;}
.y78{bottom:601.872000px;}
.y17{bottom:604.924500px;}
.ybd{bottom:607.959000px;}
.y3f{bottom:609.034500px;}
.y122{bottom:617.140500px;}
.yf0{bottom:617.439000px;}
.ya0{bottom:617.602500px;}
.y76{bottom:618.102000px;}
.y16{bottom:621.363000px;}
.ybc{bottom:624.397500px;}
.y3e{bottom:625.473000px;}
.y121{bottom:633.579000px;}
.yef{bottom:633.877500px;}
.y9f{bottom:634.041000px;}
.y15{bottom:637.801500px;}
.y3d{bottom:641.911500px;}
.y75{bottom:649.938000px;}
.y120{bottom:650.017500px;}
.yee{bottom:650.316000px;}
.y9e{bottom:650.479500px;}
.y14{bottom:654.240000px;}
.y3c{bottom:658.350000px;}
.y74{bottom:666.375000px;}
.y11f{bottom:666.456000px;}
.yed{bottom:666.754500px;}
.y9d{bottom:666.916500px;}
.y13{bottom:670.678500px;}
.y3b{bottom:674.788500px;}
.y73{bottom:682.813500px;}
.y11e{bottom:682.894500px;}
.yec{bottom:683.193000px;}
.y9c{bottom:683.355000px;}
.y12{bottom:687.117000px;}
.y3a{bottom:691.227000px;}
.y11d{bottom:699.333000px;}
.yeb{bottom:699.631500px;}
.y9b{bottom:699.793500px;}
.y72{bottom:703.362000px;}
.y11{bottom:703.555500px;}
.y39{bottom:707.665500px;}
.y11c{bottom:715.771500px;}
.yea{bottom:716.070000px;}
.y9a{bottom:716.232000px;}
.y10{bottom:719.994000px;}
.y38{bottom:724.104000px;}
.y11b{bottom:732.208500px;}
.ye9{bottom:732.508500px;}
.y99{bottom:732.670500px;}
.y71{bottom:735.198000px;}
.yf{bottom:736.432500px;}
.y37{bottom:740.541000px;}
.y11a{bottom:748.647000px;}
.ye8{bottom:748.947000px;}
.y98{bottom:749.109000px;}
.y70{bottom:751.636500px;}
.ye{bottom:752.871000px;}
.y36{bottom:756.979500px;}
.y119{bottom:765.085500px;}
.ye7{bottom:765.385500px;}
.y97{bottom:765.547500px;}
.y6f{bottom:768.075000px;}
.yd{bottom:769.309500px;}
.y35{bottom:773.418000px;}
.y118{bottom:781.524000px;}
.ye6{bottom:781.822500px;}
.y96{bottom:781.986000px;}
.y6e{bottom:784.513500px;}
.yc{bottom:785.746500px;}
.y34{bottom:789.856500px;}
.y117{bottom:797.962500px;}
.y95{bottom:798.424500px;}
.y6d{bottom:800.952000px;}
.ye5{bottom:802.371000px;}
.yb{bottom:806.295000px;}
.y116{bottom:814.401000px;}
.y6c{bottom:817.390500px;}
.y115{bottom:830.839500px;}
.ya{bottom:832.918500px;}
.y6b{bottom:833.827500px;}
.y114{bottom:847.278000px;}
.y94{bottom:848.077500px;}
.y6a{bottom:850.266000px;}
.y9{bottom:850.851000px;}
.y113{bottom:863.716500px;}
.y69{bottom:866.704500px;}
.y8{bottom:868.783500px;}
.y112{bottom:880.155000px;}
.y68{bottom:883.143000px;}
.y111{bottom:896.593500px;}
.y7{bottom:899.208000px;}
.y67{bottom:899.581500px;}
.y110{bottom:913.030500px;}
.y66{bottom:916.020000px;}
.y6{bottom:917.140500px;}
.y10f{bottom:929.469000px;}
.y65{bottom:932.458500px;}
.y5{bottom:935.073000px;}
.y10e{bottom:945.907500px;}
.y64{bottom:948.897000px;}
.y10d{bottom:962.346000px;}
.y63{bottom:965.335500px;}
.y4{bottom:968.853000px;}
.y62{bottom:981.774000px;}
.y10c{bottom:982.894500px;}
.y3{bottom:986.785500px;}
.y61{bottom:998.211000px;}
.y2{bottom:1004.718000px;}
.y60{bottom:1014.649500px;}
.y5f{bottom:1031.088000px;}
.y1{bottom:1044.562500px;}
.y5e{bottom:1047.526500px;}
.h9{height:23.279040px;}
.hd{height:27.973920px;}
.ha{height:29.625552px;}
.hc{height:30.895704px;}
.h8{height:33.856560px;}
.h7{height:34.286940px;}
.h6{height:38.087568px;}
.he{height:38.571732px;}
.h3{height:42.322824px;}
.hb{height:42.540000px;}
.h5{height:46.930518px;}
.h2{height:50.784840px;}
.h4{height:63.282216px;}
.h1{height:72.096420px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x19{left:80.697000px;}
.x26{left:95.641500px;}
.x2{left:136.690500px;}
.xb{left:138.526500px;}
.x3{left:148.516500px;}
.xa{left:152.674500px;}
.x30{left:176.703000px;}
.x4{left:183.195000px;}
.x31{left:187.153500px;}
.xc{left:196.935000px;}
.x2b{left:216.883500px;}
.x2c{left:226.060500px;}
.x1{left:257.269500px;}
.x14{left:275.829000px;}
.x13{left:285.066000px;}
.x2d{left:299.590500px;}
.x15{left:305.559000px;}
.x2e{left:332.130000px;}
.x2f{left:344.134500px;}
.xe{left:373.222500px;}
.xd{left:386.641500px;}
.x6{left:388.831500px;}
.x32{left:391.986000px;}
.x27{left:399.528000px;}
.x28{left:405.781500px;}
.x5{left:407.413500px;}
.x29{left:428.607000px;}
.x7{left:431.062500px;}
.x2a{left:434.862000px;}
.xf{left:443.160000px;}
.x1a{left:476.932500px;}
.x33{left:490.659000px;}
.x1b{left:491.877000px;}
.x36{left:496.717500px;}
.x17{left:501.258000px;}
.x18{left:520.962000px;}
.x16{left:533.712000px;}
.x22{left:538.183500px;}
.x23{left:544.438500px;}
.x1e{left:562.753500px;}
.x1f{left:569.008500px;}
.x10{left:606.316500px;}
.x8{left:616.908000px;}
.x11{left:625.215000px;}
.x12{left:644.073000px;}
.x9{left:669.979500px;}
.x20{left:700.758000px;}
.x21{left:707.011500px;}
.x24{left:755.149500px;}
.x1c{left:759.151500px;}
.x25{left:761.404500px;}
.x1d{left:765.406500px;}
.x34{left:803.805000px;}
.x35{left:810.058500px;}
@media print{
.v2{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.146667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.654933pt;}
.ls0{letter-spacing:2.657707pt;}
.ls5{letter-spacing:11.903840pt;}
.ls4{letter-spacing:12.189008pt;}
.ls3{letter-spacing:13.729973pt;}
.ws2{word-spacing:-13.284000pt;}
.wsa2{word-spacing:-9.298667pt;}
.ws28{word-spacing:-3.825446pt;}
.ws93{word-spacing:-3.634506pt;}
.ws2f{word-spacing:-3.347068pt;}
.ws2e{word-spacing:-3.299584pt;}
.ws8b{word-spacing:-3.060108pt;}
.ws9{word-spacing:-3.012672pt;}
.ws8c{word-spacing:-2.917226pt;}
.ws52{word-spacing:-2.869216pt;}
.wsb2{word-spacing:-2.863803pt;}
.ws3f{word-spacing:-2.821206pt;}
.wsac{word-spacing:-2.789674pt;}
.ws56{word-spacing:-2.773196pt;}
.ws9d{word-spacing:-2.677750pt;}
.ws39{word-spacing:-2.486810pt;}
.ws41{word-spacing:-2.342828pt;}
.ws4d{word-spacing:-2.151888pt;}
.ws25{word-spacing:-2.103926pt;}
.ws73{word-spacing:-2.056442pt;}
.ws99{word-spacing:-2.008432pt;}
.ws54{word-spacing:-1.960470pt;}
.ws8e{word-spacing:-1.912986pt;}
.ws74{word-spacing:-1.769530pt;}
.ws76{word-spacing:-1.761760pt;}
.wsab{word-spacing:-1.636565pt;}
.ws5a{word-spacing:-1.530054pt;}
.ws94{word-spacing:-1.434608pt;}
.ws53{word-spacing:-1.386598pt;}
.ws6f{word-spacing:-1.291152pt;}
.ws8{word-spacing:-1.243142pt;}
.ws3e{word-spacing:-1.195658pt;}
.ws2b{word-spacing:-1.147696pt;}
.ws4e{word-spacing:-1.052202pt;}
.ws50{word-spacing:-1.004240pt;}
.ws7{word-spacing:-0.956230pt;}
.ws3b{word-spacing:-0.908746pt;}
.ws17{word-spacing:-0.908220pt;}
.ws7a{word-spacing:-0.812774pt;}
.ws8d{word-spacing:-0.669318pt;}
.ws97{word-spacing:-0.621834pt;}
.ws8f{word-spacing:-0.525862pt;}
.wsa9{word-spacing:-0.483493pt;}
.ws3c{word-spacing:-0.334922pt;}
.ws2a{word-spacing:-0.286912pt;}
.ws31{word-spacing:-0.239476pt;}
.wsf{word-spacing:-0.238902pt;}
.ws13{word-spacing:-0.212406pt;}
.ws1f{word-spacing:-0.191466pt;}
.ws38{word-spacing:-0.190940pt;}
.wsa3{word-spacing:-0.148555pt;}
.ws5{word-spacing:-0.143456pt;}
.ws9e{word-spacing:-0.127605pt;}
.ws7e{word-spacing:-0.095972pt;}
.ws16{word-spacing:-0.095446pt;}
.wsa8{word-spacing:-0.074389pt;}
.ws3{word-spacing:-0.058181pt;}
.ws2c{word-spacing:-0.048010pt;}
.ws35{word-spacing:-0.047819pt;}
.ws71{word-spacing:-0.047484pt;}
.wsa0{word-spacing:-0.042252pt;}
.ws1b{word-spacing:-0.000260pt;}
.ws12{word-spacing:-0.000128pt;}
.ws1{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.000260pt;}
.ws29{word-spacing:0.047484pt;}
.ws49{word-spacing:0.048010pt;}
.ws6c{word-spacing:0.054848pt;}
.wsa1{word-spacing:0.074389pt;}
.ws34{word-spacing:0.095446pt;}
.ws1c{word-spacing:0.095972pt;}
.wsa4{word-spacing:0.111733pt;}
.ws6{word-spacing:0.143456pt;}
.wsb0{word-spacing:0.148518pt;}
.wsae{word-spacing:0.149076pt;}
.ws95{word-spacing:0.190940pt;}
.wsa{word-spacing:0.191466pt;}
.wsad{word-spacing:0.223205pt;}
.ws66{word-spacing:0.227231pt;}
.ws65{word-spacing:0.229637pt;}
.ws21{word-spacing:0.238902pt;}
.wse{word-spacing:0.286912pt;}
.ws91{word-spacing:0.430368pt;}
.wsb{word-spacing:0.525862pt;}
.ws33{word-spacing:0.573824pt;}
.ws18{word-spacing:0.621834pt;}
.ws98{word-spacing:0.669844pt;}
.ws1e{word-spacing:0.717280pt;}
.ws3a{word-spacing:0.765290pt;}
.ws6d{word-spacing:0.812774pt;}
.ws22{word-spacing:0.908220pt;}
.ws15{word-spacing:0.908746pt;}
.ws47{word-spacing:0.956230pt;}
.ws32{word-spacing:1.004240pt;}
.ws70{word-spacing:1.147696pt;}
.ws2d{word-spacing:1.195658pt;}
.wsa7{word-spacing:1.227498pt;}
.ws37{word-spacing:1.243142pt;}
.ws48{word-spacing:1.482044pt;}
.wsb1{word-spacing:1.487787pt;}
.ws9f{word-spacing:1.487861pt;}
.ws42{word-spacing:1.578064pt;}
.ws5f{word-spacing:1.769004pt;}
.ws5c{word-spacing:1.769530pt;}
.ws6e{word-spacing:1.816966pt;}
.ws61{word-spacing:1.864976pt;}
.ws36{word-spacing:2.008432pt;}
.ws19{word-spacing:2.151888pt;}
.wsb5{word-spacing:2.231792pt;}
.ws1d{word-spacing:2.343354pt;}
.ws4{word-spacing:2.390838pt;}
.ws30{word-spacing:2.438848pt;}
.ws5b{word-spacing:2.582304pt;}
.ws62{word-spacing:2.629740pt;}
.ws64{word-spacing:2.630266pt;}
.ws4b{word-spacing:2.677750pt;}
.ws7c{word-spacing:2.821206pt;}
.ws9c{word-spacing:2.869216pt;}
.ws23{word-spacing:2.916652pt;}
.ws24{word-spacing:2.917226pt;}
.ws51{word-spacing:3.060108pt;}
.ws9b{word-spacing:3.108118pt;}
.wsd{word-spacing:3.251574pt;}
.ws57{word-spacing:3.299584pt;}
.wsc{word-spacing:3.395030pt;}
.ws82{word-spacing:3.443040pt;}
.ws87{word-spacing:3.538486pt;}
.ws27{word-spacing:3.681990pt;}
.ws10{word-spacing:3.729952pt;}
.ws60{word-spacing:3.825446pt;}
.ws46{word-spacing:3.968902pt;}
.ws78{word-spacing:4.064348pt;}
.ws26{word-spacing:4.781675pt;}
.ws20{word-spacing:4.829638pt;}
.ws4a{word-spacing:5.068587pt;}
.ws8a{word-spacing:5.260053pt;}
.ws58{word-spacing:5.403509pt;}
.wsb3{word-spacing:6.397669pt;}
.ws90{word-spacing:7.125029pt;}
.wsaa{word-spacing:8.777979pt;}
.ws40{word-spacing:9.107488pt;}
.wsb6{word-spacing:9.255115pt;}
.wsa6{word-spacing:9.261212pt;}
.wsa5{word-spacing:9.335861pt;}
.wsaf{word-spacing:9.410548pt;}
.wsb4{word-spacing:10.117247pt;}
.ws75{word-spacing:10.137318pt;}
.ws11{word-spacing:10.584160pt;}
.ws84{word-spacing:10.615696pt;}
.ws67{word-spacing:10.663706pt;}
.ws45{word-spacing:10.664821pt;}
.ws81{word-spacing:10.756587pt;}
.ws85{word-spacing:11.619936pt;}
.ws6a{word-spacing:11.715382pt;}
.ws72{word-spacing:11.811402pt;}
.ws69{word-spacing:11.858838pt;}
.ws4c{word-spacing:11.906848pt;}
.ws6b{word-spacing:11.954667pt;}
.ws59{word-spacing:12.050304pt;}
.ws92{word-spacing:12.065894pt;}
.ws7d{word-spacing:12.087275pt;}
.ws96{word-spacing:12.098314pt;}
.ws7b{word-spacing:12.126641pt;}
.ws4f{word-spacing:12.134997pt;}
.ws7f{word-spacing:12.217921pt;}
.ws80{word-spacing:12.959221pt;}
.ws68{word-spacing:13.121745pt;}
.ws86{word-spacing:13.271531pt;}
.ws44{word-spacing:13.480821pt;}
.ws43{word-spacing:13.485141pt;}
.ws5d{word-spacing:13.676378pt;}
.ws88{word-spacing:13.726042pt;}
.ws55{word-spacing:14.297686pt;}
.ws3d{word-spacing:14.487152pt;}
.ws77{word-spacing:14.537114pt;}
.ws5e{word-spacing:14.783595pt;}
.ws9a{word-spacing:15.055153pt;}
.ws83{word-spacing:15.349888pt;}
.ws79{word-spacing:16.736486pt;}
.ws89{word-spacing:17.166901pt;}
.ws63{word-spacing:17.182310pt;}
.ws0{word-spacing:22.861520pt;}
.ws14{word-spacing:58.123152pt;}
._3{margin-left:-5.100800pt;}
._2{margin-left:-3.135024pt;}
._0{margin-left:-1.836358pt;}
._5{margin-left:-0.908220pt;}
._4{width:0.927565pt;}
._1{width:1.966032pt;}
._8{width:3.554863pt;}
._e{width:8.742719pt;}
._7{width:10.949327pt;}
._a{width:11.859221pt;}
._b{width:12.882279pt;}
._6{width:16.134379pt;}
._c{width:18.060069pt;}
._f{width:19.761040pt;}
._d{width:27.104401pt;}
._9{width:58.181333pt;}
.fs7{font-size:29.226667pt;}
.fs8{font-size:37.194667pt;}
.fsa{font-size:38.789333pt;}
.fs6{font-size:42.506667pt;}
.fs3{font-size:46.757333pt;}
.fs5{font-size:47.818667pt;}
.fs2{font-size:53.136000pt;}
.fs9{font-size:53.333333pt;}
.fs4{font-size:58.181333pt;}
.fs1{font-size:63.760000pt;}
.fs0{font-size:91.813333pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:40.000000pt;}
.ybb{bottom:112.870667pt;}
.y93{bottom:116.390667pt;}
.y5c{bottom:117.620000pt;}
.ye4{bottom:119.126667pt;}
.y33{bottom:123.497333pt;}
.yba{bottom:127.481333pt;}
.y5b{bottom:132.232000pt;}
.y92{bottom:133.409333pt;}
.ye3{bottom:133.738667pt;}
.y32{bottom:134.124000pt;}
.y10b{bottom:137.312000pt;}
.yd7{bottom:137.518667pt;}
.y140{bottom:140.765333pt;}
.yb9{bottom:142.093333pt;}
.y31{bottom:144.750667pt;}
.y5a{bottom:146.844000pt;}
.y91{bottom:148.021333pt;}
.ye2{bottom:148.350667pt;}
.y13f{bottom:151.392000pt;}
.y10a{bottom:151.924000pt;}
.yd6{bottom:152.130667pt;}
.y30{bottom:155.377333pt;}
.yb8{bottom:156.705333pt;}
.y59{bottom:161.456000pt;}
.y13e{bottom:162.018667pt;}
.y90{bottom:162.633333pt;}
.ye1{bottom:162.962667pt;}
.y2f{bottom:166.004000pt;}
.y109{bottom:166.536000pt;}
.yd5{bottom:166.742667pt;}
.yb7{bottom:171.317333pt;}
.y13d{bottom:172.645333pt;}
.y58{bottom:176.068000pt;}
.y2e{bottom:176.630667pt;}
.y8f{bottom:177.245333pt;}
.ye0{bottom:177.574667pt;}
.y108{bottom:181.148000pt;}
.yd4{bottom:181.354667pt;}
.y13c{bottom:183.273333pt;}
.yb6{bottom:185.929333pt;}
.y2d{bottom:187.257333pt;}
.y57{bottom:190.680000pt;}
.y8e{bottom:191.856000pt;}
.ydf{bottom:192.186667pt;}
.y13b{bottom:193.900000pt;}
.y107{bottom:195.758667pt;}
.yd3{bottom:195.966667pt;}
.yb5{bottom:200.541333pt;}
.y2c{bottom:201.982667pt;}
.y13a{bottom:204.526667pt;}
.y56{bottom:205.290667pt;}
.y8d{bottom:206.468000pt;}
.yde{bottom:206.798667pt;}
.y106{bottom:210.370667pt;}
.yd2{bottom:210.578667pt;}
.yb4{bottom:215.153333pt;}
.y55{bottom:219.902667pt;}
.y8c{bottom:221.080000pt;}
.ydd{bottom:221.410667pt;}
.y2b{bottom:221.798667pt;}
.y105{bottom:224.982667pt;}
.yd1{bottom:225.190667pt;}
.y139{bottom:225.780000pt;}
.yb3{bottom:233.545333pt;}
.y54{bottom:234.514667pt;}
.ydc{bottom:236.022667pt;}
.y138{bottom:236.406667pt;}
.y2a{bottom:236.409333pt;}
.y8b{bottom:239.345333pt;}
.y104{bottom:239.594667pt;}
.yd0{bottom:239.802667pt;}
.y137{bottom:247.033333pt;}
.yb2{bottom:248.156000pt;}
.y53{bottom:249.126667pt;}
.ydb{bottom:250.634667pt;}
.y29{bottom:251.021333pt;}
.y103{bottom:254.206667pt;}
.ycf{bottom:254.413333pt;}
.y136{bottom:257.660000pt;}
.yb1{bottom:262.768000pt;}
.y52{bottom:263.738667pt;}
.yda{bottom:265.246667pt;}
.y28{bottom:265.633333pt;}
.y8a{bottom:267.644000pt;}
.y135{bottom:268.286667pt;}
.yce{bottom:269.025333pt;}
.y102{bottom:272.472000pt;}
.yb0{bottom:277.380000pt;}
.y51{bottom:278.350667pt;}
.y134{bottom:278.914667pt;}
.yd9{bottom:279.857333pt;}
.y27{bottom:280.245333pt;}
.y89{bottom:282.256000pt;}
.ycd{bottom:283.637333pt;}
.y133{bottom:289.541333pt;}
.yaf{bottom:291.992000pt;}
.y50{bottom:292.962667pt;}
.yd8{bottom:294.469333pt;}
.y26{bottom:294.857333pt;}
.y88{bottom:296.868000pt;}
.ycc{bottom:298.249333pt;}
.y132{bottom:300.168000pt;}
.y101{bottom:300.433333pt;}
.y4f{bottom:307.574667pt;}
.y25{bottom:309.469333pt;}
.yae{bottom:310.257333pt;}
.y131{bottom:310.794667pt;}
.y87{bottom:311.480000pt;}
.ycb{bottom:312.861333pt;}
.y100{bottom:315.045333pt;}
.y130{bottom:321.421333pt;}
.y4e{bottom:322.186667pt;}
.y86{bottom:326.092000pt;}
.yca{bottom:327.473333pt;}
.y24{bottom:327.734667pt;}
.yff{bottom:329.657333pt;}
.y12f{bottom:332.048000pt;}
.y4d{bottom:336.798667pt;}
.yad{bottom:340.120000pt;}
.y85{bottom:340.702667pt;}
.yc9{bottom:342.085333pt;}
.y12e{bottom:342.674667pt;}
.yfe{bottom:344.269333pt;}
.y4c{bottom:351.409333pt;}
.yac{bottom:354.732000pt;}
.y84{bottom:355.314667pt;}
.y23{bottom:356.542667pt;}
.yc8{bottom:356.697333pt;}
.y12d{bottom:356.954667pt;}
.yfd{bottom:358.881333pt;}
.y4b{bottom:366.021333pt;}
.yab{bottom:369.344000pt;}
.y83{bottom:369.926667pt;}
.y22{bottom:371.154667pt;}
.yc7{bottom:371.309333pt;}
.yfc{bottom:373.493333pt;}
.y4a{bottom:380.633333pt;}
.y21{bottom:384.438667pt;}
.y82{bottom:384.538667pt;}
.y12c{bottom:385.182667pt;}
.yc6{bottom:385.921333pt;}
.yaa{bottom:387.609333pt;}
.yfb{bottom:388.104000pt;}
.y49{bottom:395.245333pt;}
.y20{bottom:397.722667pt;}
.y81{bottom:399.150667pt;}
.y12b{bottom:399.794667pt;}
.yc5{bottom:400.532000pt;}
.yfa{bottom:402.716000pt;}
.y48{bottom:409.857333pt;}
.y1f{bottom:411.005333pt;}
.y80{bottom:413.762667pt;}
.y12a{bottom:414.405333pt;}
.yc4{bottom:415.144000pt;}
.yf9{bottom:417.328000pt;}
.ya9{bottom:417.473333pt;}
.y1e{bottom:424.289333pt;}
.y47{bottom:424.469333pt;}
.y7f{bottom:428.374667pt;}
.y129{bottom:429.017333pt;}
.yc3{bottom:429.756000pt;}
.yf8{bottom:431.940000pt;}
.ya8{bottom:432.085333pt;}
.y46{bottom:439.081333pt;}
.y7e{bottom:442.986667pt;}
.yc2{bottom:444.368000pt;}
.yf7{bottom:446.552000pt;}
.ya7{bottom:446.696000pt;}
.y128{bottom:447.282667pt;}
.y1d{bottom:450.040000pt;}
.y45{bottom:453.693333pt;}
.y7d{bottom:457.598667pt;}
.yc1{bottom:458.980000pt;}
.yf6{bottom:461.164000pt;}
.ya6{bottom:461.308000pt;}
.y1c{bottom:464.652000pt;}
.y44{bottom:468.305333pt;}
.y7c{bottom:472.210667pt;}
.yc0{bottom:473.592000pt;}
.y127{bottom:475.510667pt;}
.yf5{bottom:475.776000pt;}
.ya5{bottom:475.920000pt;}
.y1b{bottom:479.264000pt;}
.y43{bottom:482.917333pt;}
.y7b{bottom:486.821333pt;}
.ybf{bottom:488.204000pt;}
.y126{bottom:490.122667pt;}
.yf4{bottom:490.388000pt;}
.ya4{bottom:490.532000pt;}
.y1a{bottom:493.876000pt;}
.y42{bottom:497.529333pt;}
.y7a{bottom:501.433333pt;}
.ybe{bottom:502.816000pt;}
.y125{bottom:504.733333pt;}
.yf3{bottom:505.000000pt;}
.ya3{bottom:505.144000pt;}
.y19{bottom:508.488000pt;}
.y41{bottom:512.140000pt;}
.y79{bottom:516.045333pt;}
.y124{bottom:519.345333pt;}
.yf2{bottom:519.612000pt;}
.ya2{bottom:519.756000pt;}
.y18{bottom:523.100000pt;}
.y40{bottom:526.752000pt;}
.y77{bottom:530.657333pt;}
.y123{bottom:533.957333pt;}
.yf1{bottom:534.222667pt;}
.ya1{bottom:534.368000pt;}
.y78{bottom:534.997333pt;}
.y17{bottom:537.710667pt;}
.ybd{bottom:540.408000pt;}
.y3f{bottom:541.364000pt;}
.y122{bottom:548.569333pt;}
.yf0{bottom:548.834667pt;}
.ya0{bottom:548.980000pt;}
.y76{bottom:549.424000pt;}
.y16{bottom:552.322667pt;}
.ybc{bottom:555.020000pt;}
.y3e{bottom:555.976000pt;}
.y121{bottom:563.181333pt;}
.yef{bottom:563.446667pt;}
.y9f{bottom:563.592000pt;}
.y15{bottom:566.934667pt;}
.y3d{bottom:570.588000pt;}
.y75{bottom:577.722667pt;}
.y120{bottom:577.793333pt;}
.yee{bottom:578.058667pt;}
.y9e{bottom:578.204000pt;}
.y14{bottom:581.546667pt;}
.y3c{bottom:585.200000pt;}
.y74{bottom:592.333333pt;}
.y11f{bottom:592.405333pt;}
.yed{bottom:592.670667pt;}
.y9d{bottom:592.814667pt;}
.y13{bottom:596.158667pt;}
.y3b{bottom:599.812000pt;}
.y73{bottom:606.945333pt;}
.y11e{bottom:607.017333pt;}
.yec{bottom:607.282667pt;}
.y9c{bottom:607.426667pt;}
.y12{bottom:610.770667pt;}
.y3a{bottom:614.424000pt;}
.y11d{bottom:621.629333pt;}
.yeb{bottom:621.894667pt;}
.y9b{bottom:622.038667pt;}
.y72{bottom:625.210667pt;}
.y11{bottom:625.382667pt;}
.y39{bottom:629.036000pt;}
.y11c{bottom:636.241333pt;}
.yea{bottom:636.506667pt;}
.y9a{bottom:636.650667pt;}
.y10{bottom:639.994667pt;}
.y38{bottom:643.648000pt;}
.y11b{bottom:650.852000pt;}
.ye9{bottom:651.118667pt;}
.y99{bottom:651.262667pt;}
.y71{bottom:653.509333pt;}
.yf{bottom:654.606667pt;}
.y37{bottom:658.258667pt;}
.y11a{bottom:665.464000pt;}
.ye8{bottom:665.730667pt;}
.y98{bottom:665.874667pt;}
.y70{bottom:668.121333pt;}
.ye{bottom:669.218667pt;}
.y36{bottom:672.870667pt;}
.y119{bottom:680.076000pt;}
.ye7{bottom:680.342667pt;}
.y97{bottom:680.486667pt;}
.y6f{bottom:682.733333pt;}
.yd{bottom:683.830667pt;}
.y35{bottom:687.482667pt;}
.y118{bottom:694.688000pt;}
.ye6{bottom:694.953333pt;}
.y96{bottom:695.098667pt;}
.y6e{bottom:697.345333pt;}
.yc{bottom:698.441333pt;}
.y34{bottom:702.094667pt;}
.y117{bottom:709.300000pt;}
.y95{bottom:709.710667pt;}
.y6d{bottom:711.957333pt;}
.ye5{bottom:713.218667pt;}
.yb{bottom:716.706667pt;}
.y116{bottom:723.912000pt;}
.y6c{bottom:726.569333pt;}
.y115{bottom:738.524000pt;}
.ya{bottom:740.372000pt;}
.y6b{bottom:741.180000pt;}
.y114{bottom:753.136000pt;}
.y94{bottom:753.846667pt;}
.y6a{bottom:755.792000pt;}
.y9{bottom:756.312000pt;}
.y113{bottom:767.748000pt;}
.y69{bottom:770.404000pt;}
.y8{bottom:772.252000pt;}
.y112{bottom:782.360000pt;}
.y68{bottom:785.016000pt;}
.y111{bottom:796.972000pt;}
.y7{bottom:799.296000pt;}
.y67{bottom:799.628000pt;}
.y110{bottom:811.582667pt;}
.y66{bottom:814.240000pt;}
.y6{bottom:815.236000pt;}
.y10f{bottom:826.194667pt;}
.y65{bottom:828.852000pt;}
.y5{bottom:831.176000pt;}
.y10e{bottom:840.806667pt;}
.y64{bottom:843.464000pt;}
.y10d{bottom:855.418667pt;}
.y63{bottom:858.076000pt;}
.y4{bottom:861.202667pt;}
.y62{bottom:872.688000pt;}
.y10c{bottom:873.684000pt;}
.y3{bottom:877.142667pt;}
.y61{bottom:887.298667pt;}
.y2{bottom:893.082667pt;}
.y60{bottom:901.910667pt;}
.y5f{bottom:916.522667pt;}
.y1{bottom:928.500000pt;}
.y5e{bottom:931.134667pt;}
.h9{height:20.692480pt;}
.hd{height:24.865707pt;}
.ha{height:26.333824pt;}
.hc{height:27.462848pt;}
.h8{height:30.094720pt;}
.h7{height:30.477280pt;}
.h6{height:33.855616pt;}
.he{height:34.285984pt;}
.h3{height:37.620288pt;}
.hb{height:37.813333pt;}
.h5{height:41.716016pt;}
.h2{height:45.142080pt;}
.h4{height:56.250859pt;}
.h1{height:64.085707pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x19{left:71.730667pt;}
.x26{left:85.014667pt;}
.x2{left:121.502667pt;}
.xb{left:123.134667pt;}
.x3{left:132.014667pt;}
.xa{left:135.710667pt;}
.x30{left:157.069333pt;}
.x4{left:162.840000pt;}
.x31{left:166.358667pt;}
.xc{left:175.053333pt;}
.x2b{left:192.785333pt;}
.x2c{left:200.942667pt;}
.x1{left:228.684000pt;}
.x14{left:245.181333pt;}
.x13{left:253.392000pt;}
.x2d{left:266.302667pt;}
.x15{left:271.608000pt;}
.x2e{left:295.226667pt;}
.x2f{left:305.897333pt;}
.xe{left:331.753333pt;}
.xd{left:343.681333pt;}
.x6{left:345.628000pt;}
.x32{left:348.432000pt;}
.x27{left:355.136000pt;}
.x28{left:360.694667pt;}
.x5{left:362.145333pt;}
.x29{left:380.984000pt;}
.x7{left:383.166667pt;}
.x2a{left:386.544000pt;}
.xf{left:393.920000pt;}
.x1a{left:423.940000pt;}
.x33{left:436.141333pt;}
.x1b{left:437.224000pt;}
.x36{left:441.526667pt;}
.x17{left:445.562667pt;}
.x18{left:463.077333pt;}
.x16{left:474.410667pt;}
.x22{left:478.385333pt;}
.x23{left:483.945333pt;}
.x1e{left:500.225333pt;}
.x1f{left:505.785333pt;}
.x10{left:538.948000pt;}
.x8{left:548.362667pt;}
.x11{left:555.746667pt;}
.x12{left:572.509333pt;}
.x9{left:595.537333pt;}
.x20{left:622.896000pt;}
.x21{left:628.454667pt;}
.x24{left:671.244000pt;}
.x1c{left:674.801333pt;}
.x25{left:676.804000pt;}
.x1d{left:680.361333pt;}
.x34{left:714.493333pt;}
.x35{left:720.052000pt;}
}


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