
/* 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_6637acb59b6f.woff")format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_aa95b9f67884.woff")format("woff");}.ff2{font-family:ff2;line-height:1.079590;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_b5417e12fdbc.woff")format("woff");}.ff3{font-family:ff3;line-height:0.728027;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_580462e098a1.woff")format("woff");}.ff4{font-family:ff4;line-height:0.728027;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_6e570f824144.woff")format("woff");}.ff5{font-family:ff5;line-height:1.079590;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_8d10f41ee6a9.woff")format("woff");}.ff6{font-family:ff6;line-height:0.750000;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_8d9d3973623e.woff")format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_d9318e72047d.woff")format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_da6772419982.woff")format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_98d390ad7923.woff")format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_8d10f41ee6a9.woff")format("woff");}.ffb{font-family:ffb;line-height:0.750000;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_1ac5d71b608a.woff")format("woff");}.ffc{font-family:ffc;line-height:0.938965;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_f8bb8ff787e8.woff")format("woff");}.ffd{font-family:ffd;line-height:0.926270;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:ffe;src:url("fonts/font_0013_d9318e72047d.woff")format("woff");}.ffe{font-family:ffe;line-height:0.666504;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:fff;src:url("fonts/font_0014_8d10f41ee6a9.woff")format("woff");}.fff{font-family:fff;line-height:0.750000;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:ff10;src:url("fonts/font_0015_8aff92ae5dc1.woff")format("woff");}.ff10{font-family:ff10;line-height:0.938477;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:ff11;src:url("fonts/font_0016_360321f259ad.woff")format("woff");}.ff11{font-family:ff11;line-height:0.938477;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:ff12;src:url("fonts/font_0017_722cd8ad6c87.woff")format("woff");}.ff12{font-family:ff12;line-height:0.666504;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:ff13;src:url("fonts/font_0018_c73d0e4f2f51.woff")format("woff");}.ff13{font-family:ff13;line-height:0.739746;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:ff14;src:url("fonts/font_0019_10925fc77892.woff")format("woff");}.ff14{font-family:ff14;line-height:0.666504;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:ff15;src:url("fonts/font_0020_8d10f41ee6a9.woff")format("woff");}.ff15{font-family:ff15;line-height:0.750000;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:ff16;src:url("fonts/font_0021_73a4a417cd2a.woff")format("woff");}.ff16{font-family:ff16;line-height:0.938965;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:ff17;src:url("fonts/font_0022_5ee9edd342ac.woff")format("woff");}.ff17{font-family:ff17;line-height:0.938477;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:ff18;src:url("fonts/font_0023_7a949d3bf769.woff")format("woff");}.ff18{font-family:ff18;line-height:0.666504;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:ff19;src:url("fonts/font_0024_8d10f41ee6a9.woff")format("woff");}.ff19{font-family:ff19;line-height:0.750000;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:ff1a;src:url("fonts/font_0025_3b7f4cbfef4b.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.938477;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:ff1b;src:url("fonts/font_0026_e819d436dc64.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.938477;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:ff1c;src:url("fonts/font_0027_7a949d3bf769.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.666504;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.244998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.482160px;}
.v1{vertical-align:27.971400px;}
.ls2a{letter-spacing:-0.014400px;}
.ls2e{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.012000px;}
.ls23{letter-spacing:0.213840px;}
.ls28{letter-spacing:0.232848px;}
.ls1e{letter-spacing:0.233856px;}
.ls22{letter-spacing:0.242352px;}
.ls3{letter-spacing:0.258912px;}
.ls38{letter-spacing:0.277056px;}
.ls21{letter-spacing:0.278880px;}
.ls3f{letter-spacing:0.298368px;}
.ls3b{letter-spacing:0.303696px;}
.ls39{letter-spacing:0.309024px;}
.ls33{letter-spacing:0.314352px;}
.ls5{letter-spacing:0.319680px;}
.ls32{letter-spacing:0.325008px;}
.ls30{letter-spacing:0.330336px;}
.ls2f{letter-spacing:0.335664px;}
.ls35{letter-spacing:0.340992px;}
.ls1d{letter-spacing:0.346320px;}
.ls37{letter-spacing:0.348336px;}
.ls31{letter-spacing:0.351648px;}
.ls29{letter-spacing:0.354240px;}
.ls34{letter-spacing:0.356976px;}
.ls3c{letter-spacing:0.362304px;}
.ls2b{letter-spacing:0.366048px;}
.ls3e{letter-spacing:0.367632px;}
.ls1c{letter-spacing:0.372960px;}
.ls20{letter-spacing:0.377856px;}
.ls3d{letter-spacing:0.378288px;}
.lsb{letter-spacing:0.383760px;}
.ls3a{letter-spacing:0.388944px;}
.ls1b{letter-spacing:0.389664px;}
.ls18{letter-spacing:0.395568px;}
.ls27{letter-spacing:0.400320px;}
.ls7{letter-spacing:0.401472px;}
.ls2{letter-spacing:0.406320px;}
.ls16{letter-spacing:0.407376px;}
.lsf{letter-spacing:0.413280px;}
.ls11{letter-spacing:0.419184px;}
.ls12{letter-spacing:0.425088px;}
.ls1a{letter-spacing:0.430992px;}
.ls10{letter-spacing:0.436896px;}
.ls26{letter-spacing:0.442800px;}
.ls24{letter-spacing:0.448704px;}
.lsc{letter-spacing:0.454608px;}
.lsa{letter-spacing:0.460512px;}
.ls15{letter-spacing:0.466416px;}
.lsd{letter-spacing:0.472320px;}
.ls9{letter-spacing:0.478224px;}
.ls14{letter-spacing:0.484128px;}
.ls17{letter-spacing:0.490032px;}
.lse{letter-spacing:0.495936px;}
.ls8{letter-spacing:0.501840px;}
.ls2c{letter-spacing:0.505440px;}
.ls36{letter-spacing:0.507744px;}
.ls13{letter-spacing:0.513648px;}
.ls25{letter-spacing:0.525456px;}
.ls19{letter-spacing:0.537264px;}
.ls2d{letter-spacing:0.583200px;}
.ls6{letter-spacing:0.590400px;}
.ls4{letter-spacing:0.661248px;}
.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;}
}
.ws11c{word-spacing:-20.008800px;}
.ws4{word-spacing:-17.003520px;}
.ws5{word-spacing:-16.914960px;}
.ws11d{word-spacing:-15.136848px;}
.wsdb{word-spacing:-15.126192px;}
.ws2{word-spacing:-12.835200px;}
.ws3{word-spacing:-10.008000px;}
.ws57{word-spacing:-8.406720px;}
.wsa{word-spacing:-0.377856px;}
.ws92{word-spacing:-0.307008px;}
.ws154{word-spacing:-0.250416px;}
.ws1b{word-spacing:-0.236160px;}
.wsd2{word-spacing:-0.213840px;}
.ws15a{word-spacing:-0.197136px;}
.wsad{word-spacing:-0.188928px;}
.ws8b{word-spacing:-0.177120px;}
.ws14{word-spacing:-0.165312px;}
.wsba{word-spacing:-0.159408px;}
.ws11e{word-spacing:-0.154512px;}
.wsd1{word-spacing:-0.153504px;}
.ws6{word-spacing:-0.149184px;}
.wsc3{word-spacing:-0.147600px;}
.ws22{word-spacing:-0.141696px;}
.ws100{word-spacing:-0.138528px;}
.wsaf{word-spacing:-0.136080px;}
.wse2{word-spacing:-0.135792px;}
.wsf4{word-spacing:-0.133200px;}
.wsa7{word-spacing:-0.129888px;}
.ws7{word-spacing:-0.127872px;}
.ws10a{word-spacing:-0.123984px;}
.wsd3{word-spacing:-0.122544px;}
.wsc{word-spacing:-0.118080px;}
.wsee{word-spacing:-0.117216px;}
.wsec{word-spacing:-0.111888px;}
.ws9{word-spacing:-0.108576px;}
.wsb{word-spacing:-0.106560px;}
.ws73{word-spacing:-0.106272px;}
.ws59{word-spacing:-0.104544px;}
.ws168{word-spacing:-0.101232px;}
.ws11b{word-spacing:-0.100368px;}
.ws157{word-spacing:-0.095904px;}
.ws149{word-spacing:-0.090576px;}
.ws5e{word-spacing:-0.088560px;}
.ws58{word-spacing:-0.085536px;}
.ws150{word-spacing:-0.085248px;}
.ws116{word-spacing:-0.082656px;}
.ws8{word-spacing:-0.075168px;}
.ws0{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.ws23{word-spacing:0.007200px;}
.wsae{word-spacing:0.021600px;}
.wsb0{word-spacing:0.147600px;}
.ws6b{word-spacing:0.159408px;}
.wsc5{word-spacing:0.177120px;}
.ws36{word-spacing:0.218448px;}
.ws97{word-spacing:0.236160px;}
.ws13d{word-spacing:0.242064px;}
.ws53{word-spacing:0.259776px;}
.ws115{word-spacing:0.342432px;}
.ws159{word-spacing:0.383616px;}
.wse7{word-spacing:0.501840px;}
.ws117{word-spacing:0.537264px;}
.ws171{word-spacing:0.580752px;}
.wsfe{word-spacing:0.596304px;}
.ws101{word-spacing:0.608112px;}
.ws18{word-spacing:0.649440px;}
.wsfa{word-spacing:0.726192px;}
.ws114{word-spacing:0.808848px;}
.wsd6{word-spacing:0.938736px;}
.wsd5{word-spacing:0.980064px;}
.ws91{word-spacing:1.045008px;}
.wsff{word-spacing:1.139472px;}
.wsb9{word-spacing:1.204416px;}
.ws15b{word-spacing:1.262736px;}
.ws14a{word-spacing:1.422576px;}
.ws127{word-spacing:1.452384px;}
.ws15{word-spacing:1.464192px;}
.ws52{word-spacing:1.688544px;}
.ws17{word-spacing:1.712160px;}
.wsdf{word-spacing:1.783008px;}
.wsce{word-spacing:1.883376px;}
.ws9e{word-spacing:1.906992px;}
.wsac{word-spacing:1.966032px;}
.wsb7{word-spacing:2.090016px;}
.ws119{word-spacing:2.107728px;}
.wsab{word-spacing:2.143152px;}
.ws111{word-spacing:2.267136px;}
.ws2d{word-spacing:2.580048px;}
.wsc8{word-spacing:2.621376px;}
.ws10d{word-spacing:2.633184px;}
.ws35{word-spacing:2.668608px;}
.ws103{word-spacing:2.680416px;}
.ws140{word-spacing:3.052368px;}
.ws1a{word-spacing:3.117312px;}
.ws16a{word-spacing:3.122208px;}
.ws1f{word-spacing:3.135024px;}
.ws93{word-spacing:3.140928px;}
.ws1e{word-spacing:3.152736px;}
.ws121{word-spacing:3.182256px;}
.ws156{word-spacing:3.186144px;}
.ws61{word-spacing:3.560112px;}
.wsdd{word-spacing:3.571920px;}
.ws51{word-spacing:3.577824px;}
.ws16b{word-spacing:3.655008px;}
.wsbe{word-spacing:3.719520px;}
.ws169{word-spacing:3.798864px;}
.wsca{word-spacing:3.943872px;}
.ws15f{word-spacing:3.953376px;}
.ws3a{word-spacing:3.979296px;}
.wscb{word-spacing:4.239072px;}
.wsf8{word-spacing:4.321728px;}
.wse0{word-spacing:4.374864px;}
.ws79{word-spacing:4.380768px;}
.ws6a{word-spacing:4.522464px;}
.ws78{word-spacing:4.758624px;}
.ws96{word-spacing:4.764528px;}
.wsb2{word-spacing:4.799952px;}
.ws16{word-spacing:4.805856px;}
.ws12d{word-spacing:4.959360px;}
.ws2c{word-spacing:4.988880px;}
.ws118{word-spacing:5.248656px;}
.ws3c{word-spacing:5.284080px;}
.wse5{word-spacing:5.319504px;}
.ws174{word-spacing:5.407920px;}
.ws113{word-spacing:5.473008px;}
.ws160{word-spacing:5.530464px;}
.ws74{word-spacing:5.585184px;}
.ws2a{word-spacing:5.756400px;}
.ws8a{word-spacing:5.774112px;}
.ws170{word-spacing:6.212448px;}
.ws67{word-spacing:6.458976px;}
.ws120{word-spacing:6.476688px;}
.ws12a{word-spacing:6.488496px;}
.ws13{word-spacing:6.801408px;}
.wsb4{word-spacing:7.126128px;}
.ws4a{word-spacing:7.598448px;}
.wsf6{word-spacing:7.687008px;}
.ws14c{word-spacing:7.688304px;}
.ws9c{word-spacing:7.810992px;}
.wsa3{word-spacing:7.905456px;}
.ws133{word-spacing:8.182944px;}
.ws132{word-spacing:8.212464px;}
.ws110{word-spacing:8.454528px;}
.ws7a{word-spacing:8.560800px;}
.ws102{word-spacing:8.655264px;}
.ws4d{word-spacing:8.696592px;}
.ws4e{word-spacing:8.726112px;}
.ws9d{word-spacing:9.039024px;}
.wsd0{word-spacing:9.068544px;}
.wsd{word-spacing:9.139392px;}
.ws5a{word-spacing:9.239760px;}
.wseb{word-spacing:9.322416px;}
.ws10c{word-spacing:9.410976px;}
.wse8{word-spacing:9.706176px;}
.ws161{word-spacing:9.723600px;}
.wsa2{word-spacing:9.747504px;}
.wsc7{word-spacing:9.806544px;}
.ws70{word-spacing:9.824256px;}
.wsa9{word-spacing:9.871488px;}
.ws71{word-spacing:9.906912px;}
.ws11a{word-spacing:9.965952px;}
.ws63{word-spacing:10.326096px;}
.ws62{word-spacing:10.332000px;}
.ws19{word-spacing:10.408752px;}
.ws3e{word-spacing:10.491408px;}
.ws80{word-spacing:10.644912px;}
.ws14f{word-spacing:10.693296px;}
.ws9a{word-spacing:10.757088px;}
.ws40{word-spacing:10.786608px;}
.ws3f{word-spacing:10.798416px;}
.wse6{word-spacing:10.839744px;}
.ws21{word-spacing:10.946016px;}
.ws20{word-spacing:10.969632px;}
.ws83{word-spacing:10.999152px;}
.ws7b{word-spacing:11.105424px;}
.ws9f{word-spacing:11.382912px;}
.wse9{word-spacing:11.689920px;}
.ws15e{word-spacing:11.716272px;}
.ws4c{word-spacing:11.719440px;}
.ws76{word-spacing:11.737152px;}
.ws75{word-spacing:11.772576px;}
.ws87{word-spacing:11.808000px;}
.wsc2{word-spacing:11.872944px;}
.wsc1{word-spacing:11.908368px;}
.wsaa{word-spacing:11.920176px;}
.ws1d{word-spacing:11.955600px;}
.wsf9{word-spacing:12.020544px;}
.ws86{word-spacing:12.268512px;}
.ws122{word-spacing:12.339360px;}
.ws60{word-spacing:12.481056px;}
.ws163{word-spacing:12.488832px;}
.wsc4{word-spacing:12.557808px;}
.wsd4{word-spacing:12.652272px;}
.ws155{word-spacing:12.941712px;}
.ws49{word-spacing:13.077360px;}
.ws43{word-spacing:13.083264px;}
.wsdc{word-spacing:13.089168px;}
.ws64{word-spacing:13.112784px;}
.ws8e{word-spacing:13.171824px;}
.ws8f{word-spacing:13.183632px;}
.wsfb{word-spacing:13.213152px;}
.ws158{word-spacing:13.463856px;}
.ws54{word-spacing:13.720896px;}
.ws1c{word-spacing:13.762224px;}
.ws126{word-spacing:13.886208px;}
.wsda{word-spacing:14.228640px;}
.ws12e{word-spacing:14.388048px;}
.ws37{word-spacing:14.482512px;}
.ws38{word-spacing:14.500224px;}
.ws6c{word-spacing:14.529744px;}
.wse{word-spacing:14.588784px;}
.wse1{word-spacing:14.600592px;}
.wsf{word-spacing:14.665536px;}
.ws4b{word-spacing:14.712768px;}
.ws10b{word-spacing:14.742288px;}
.ws42{word-spacing:14.765904px;}
.ws82{word-spacing:14.836752px;}
.ws27{word-spacing:15.013872px;}
.wsa6{word-spacing:15.911280px;}
.wscd{word-spacing:15.970320px;}
.ws8c{word-spacing:15.988032px;}
.ws47{word-spacing:16.005744px;}
.ws11{word-spacing:16.123824px;}
.ws10{word-spacing:16.159248px;}
.ws12{word-spacing:16.165152px;}
.ws148{word-spacing:16.303680px;}
.ws2e{word-spacing:16.371792px;}
.ws28{word-spacing:16.424928px;}
.ws6d{word-spacing:16.478064px;}
.ws11f{word-spacing:17.924544px;}
.ws50{word-spacing:18.095760px;}
.ws65{word-spacing:18.272880px;}
.ws5b{word-spacing:18.686160px;}
.wsa5{word-spacing:18.839664px;}
.wsde{word-spacing:19.258848px;}
.ws41{word-spacing:19.719360px;}
.wsd9{word-spacing:19.742976px;}
.ws30{word-spacing:19.772496px;}
.ws13e{word-spacing:19.796112px;}
.ws165{word-spacing:19.900080px;}
.wsf7{word-spacing:19.914192px;}
.ws164{word-spacing:20.187792px;}
.ws131{word-spacing:20.386512px;}
.ws16c{word-spacing:20.390256px;}
.wsd7{word-spacing:20.439648px;}
.wsbb{word-spacing:20.492784px;}
.ws2b{word-spacing:21.207168px;}
.ws134{word-spacing:21.384288px;}
.ws107{word-spacing:21.478752px;}
.ws147{word-spacing:21.573072px;}
.wsa8{word-spacing:21.626352px;}
.wsb3{word-spacing:21.968784px;}
.wsa0{word-spacing:22.110480px;}
.ws14d{word-spacing:22.564080px;}
.ws167{word-spacing:22.617360px;}
.ws16e{word-spacing:22.873104px;}
.ws109{word-spacing:23.143680px;}
.ws33{word-spacing:23.173200px;}
.ws34{word-spacing:23.196816px;}
.wse4{word-spacing:23.214528px;}
.ws112{word-spacing:23.255856px;}
.ws136{word-spacing:23.621904px;}
.ws12b{word-spacing:23.716368px;}
.ws12c{word-spacing:23.728176px;}
.wsfc{word-spacing:24.147360px;}
.ws48{word-spacing:24.300864px;}
.ws7e{word-spacing:24.460272px;}
.wsb5{word-spacing:24.820416px;}
.ws84{word-spacing:24.985728px;}
.ws81{word-spacing:25.038864px;}
.ws125{word-spacing:25.068384px;}
.ws85{word-spacing:25.074288px;}
.ws166{word-spacing:25.276032px;}
.ws13a{word-spacing:25.381296px;}
.ws46{word-spacing:25.552512px;}
.ws108{word-spacing:25.582032px;}
.ws5f{word-spacing:25.859520px;}
.ws12f{word-spacing:25.865424px;}
.wsf5{word-spacing:25.894944px;}
.ws128{word-spacing:25.989408px;}
.ws24{word-spacing:27.081648px;}
.ws5c{word-spacing:27.122976px;}
.ws13c{word-spacing:27.182016px;}
.wse3{word-spacing:27.536256px;}
.ws141{word-spacing:27.583488px;}
.wsbc{word-spacing:27.784224px;}
.wsd8{word-spacing:28.162080px;}
.ws15c{word-spacing:28.350288px;}
.ws143{word-spacing:28.480896px;}
.ws144{word-spacing:28.504512px;}
.ws4f{word-spacing:28.793808px;}
.ws88{word-spacing:29.094912px;}
.ws25{word-spacing:29.201184px;}
.ws72{word-spacing:29.212992px;}
.ws69{word-spacing:29.242512px;}
.ws14e{word-spacing:29.389248px;}
.ws15d{word-spacing:29.421216px;}
.ws10e{word-spacing:29.726640px;}
.ws99{word-spacing:31.055040px;}
.ws90{word-spacing:31.078656px;}
.ws2f{word-spacing:31.143600px;}
.ws130{word-spacing:31.149504px;}
.ws7f{word-spacing:31.308912px;}
.ws98{word-spacing:31.373856px;}
.ws14b{word-spacing:31.973328px;}
.ws16d{word-spacing:32.106528px;}
.ws13f{word-spacing:32.288976px;}
.ws66{word-spacing:32.507424px;}
.ws138{word-spacing:32.991552px;}
.ws129{word-spacing:33.145056px;}
.wscc{word-spacing:33.251328px;}
.wsa1{word-spacing:33.658704px;}
.wsb1{word-spacing:34.048368px;}
.ws8d{word-spacing:34.520688px;}
.ws55{word-spacing:34.869024px;}
.ws10f{word-spacing:34.892640px;}
.ws45{word-spacing:35.512560px;}
.ws146{word-spacing:35.788176px;}
.ws142{word-spacing:35.849088px;}
.wscf{word-spacing:35.890416px;}
.wsc6{word-spacing:36.451296px;}
.ws145{word-spacing:36.528048px;}
.ws56{word-spacing:37.218816px;}
.ws6f{word-spacing:37.832832px;}
.ws6e{word-spacing:37.838736px;}
.ws152{word-spacing:38.228400px;}
.ws26{word-spacing:38.753856px;}
.ws123{word-spacing:38.901456px;}
.ws44{word-spacing:40.282992px;}
.wsb8{word-spacing:41.221728px;}
.ws173{word-spacing:41.387904px;}
.ws31{word-spacing:41.428368px;}
.ws162{word-spacing:41.537088px;}
.ws137{word-spacing:41.794416px;}
.ws89{word-spacing:41.930208px;}
.wsa4{word-spacing:41.936112px;}
.ws104{word-spacing:41.947920px;}
.ws3d{word-spacing:43.175952px;}
.ws5d{word-spacing:44.793648px;}
.ws7c{word-spacing:45.136080px;}
.ws68{word-spacing:45.195120px;}
.wsc9{word-spacing:45.750096px;}
.ws153{word-spacing:46.358928px;}
.wsea{word-spacing:47.350080px;}
.wsb6{word-spacing:47.426832px;}
.ws29{word-spacing:48.430512px;}
.ws13b{word-spacing:48.513168px;}
.ws151{word-spacing:49.832784px;}
.ws172{word-spacing:50.429520px;}
.ws32{word-spacing:50.449680px;}
.ws139{word-spacing:51.140448px;}
.ws124{word-spacing:52.214976px;}
.wsfd{word-spacing:52.445232px;}
.ws135{word-spacing:54.989856px;}
.ws9b{word-spacing:55.710144px;}
.ws105{word-spacing:63.007488px;}
.ws7d{word-spacing:64.111536px;}
.ws3b{word-spacing:69.011856px;}
.ws39{word-spacing:73.221408px;}
.ws94{word-spacing:75.311424px;}
.wsbd{word-spacing:75.665664px;}
.ws77{word-spacing:80.908416px;}
.ws95{word-spacing:82.047888px;}
.wsbf{word-spacing:103.184208px;}
.wsc0{word-spacing:103.721472px;}
.ws106{word-spacing:154.726128px;}
.wsf1{word-spacing:193.528944px;}
.wsed{word-spacing:197.956512px;}
.wsf0{word-spacing:238.571856px;}
.wsef{word-spacing:282.032352px;}
.ws16f{word-spacing:342.675648px;}
.wsf2{word-spacing:342.894096px;}
.wsf3{word-spacing:421.657920px;}
._f{margin-left:-198.121680px;}
._13{margin-left:-78.747840px;}
._7{margin-left:-22.032000px;}
._4{margin-left:-20.016000px;}
._a{margin-left:-17.978400px;}
._9{margin-left:-10.975200px;}
._2{margin-left:-9.307200px;}
._6{margin-left:-7.768800px;}
._0{margin-left:-6.239016px;}
._b{margin-left:-3.765600px;}
._5{margin-left:-2.671200px;}
._3{margin-left:-1.512000px;}
._8{width:1.987200px;}
._1{width:12.835200px;}
._10{width:15.861456px;}
._c{width:21.810144px;}
._11{width:74.330928px;}
._12{width:134.393472px;}
._e{width:265.637685px;}
._d{width:513.606047px;}
.fc6{color:transparent;}
.fc4{color:rgb(111,184,92);}
.fc3{color:rgb(64,108,108);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(16,17,17);}
.fc7{color:rgb(56,75,131);}
.fc5{color:rgb(217,32,35);}
.fc0{color:rgb(28,28,27);}
.fs9{font-size:28.800000px;}
.fs7{font-size:36.000000px;}
.fs4{font-size:47.520000px;}
.fs1{font-size:48.972000px;}
.fs6{font-size:53.280000px;}
.fs5{font-size:59.040000px;}
.fs3{font-size:60.000000px;}
.fsa{font-size:64.800000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:83.520000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:42.520500px;}
.y17{bottom:56.746500px;}
.y16{bottom:76.906500px;}
.y1c7{bottom:111.826650px;}
.y50{bottom:114.002988px;}
.y10e{bottom:114.348912px;}
.y69{bottom:117.256740px;}
.yff{bottom:125.178396px;}
.ydc{bottom:125.893290px;}
.y6{bottom:127.151250px;}
.y4f{bottom:131.282520px;}
.y10d{bottom:131.628444px;}
.ya6{bottom:131.665776px;}
.y18a{bottom:132.347118px;}
.y68{bottom:134.534796px;}
.y137{bottom:134.878164px;}
.yfe{bottom:142.097784px;}
.ydb{bottom:143.172822px;}
.y4e{bottom:148.201908px;}
.y10c{bottom:148.906722px;}
.ya5{bottom:148.943832px;}
.y189{bottom:149.626650px;}
.y67{bottom:151.814328px;}
.y136{bottom:152.157696px;}
.yfd{bottom:159.375840px;}
.yda{bottom:160.450878px;}
.y1c6{bottom:162.177648px;}
.y4d{bottom:165.481440px;}
.ya4{bottom:166.223364px;}
.y10b{bottom:167.266686px;}
.y188{bottom:167.626650px;}
.y66{bottom:169.093860px;}
.y135{bottom:169.437228px;}
.yfc{bottom:176.655372px;}
.y1c5{bottom:177.658152px;}
.yd9{bottom:177.728934px;}
.y4c{bottom:182.760972px;}
.ya3{bottom:183.502896px;}
.y10a{bottom:185.625960px;}
.y65{bottom:186.371916px;}
.y134{bottom:186.715284px;}
.y187{bottom:187.786650px;}
.y15b{bottom:189.230142px;}
.y1c4{bottom:193.139988px;}
.yfb{bottom:193.933428px;}
.yd8{bottom:195.006990px;}
.y4b{bottom:200.040504px;}
.ya2{bottom:200.780952px;}
.y64{bottom:203.649972px;}
.y133{bottom:203.994816px;}
.y186{bottom:205.100556px;}
.y109{bottom:205.426500px;}
.y15a{bottom:206.508198px;}
.y1c3{bottom:208.620492px;}
.yfa{bottom:211.211484px;}
.yd7{bottom:212.285046px;}
.y4a{bottom:217.320036px;}
.ya1{bottom:218.060484px;}
.y63{bottom:220.929504px;}
.y132{bottom:221.274348px;}
.y185{bottom:222.380088px;}
.y159{bottom:223.427586px;}
.y1c2{bottom:224.100996px;}
.yf9{bottom:228.491016px;}
.yd6{bottom:229.563102px;}
.y49{bottom:234.598092px;}
.ya0{bottom:235.338540px;}
.y108{bottom:237.466650px;}
.y62{bottom:238.209036px;}
.y131{bottom:238.552404px;}
.y184{bottom:239.298000px;}
.y1c1{bottom:239.582832px;}
.y158{bottom:240.707118px;}
.yf8{bottom:245.770548px;}
.yd5{bottom:246.842634px;}
.y107{bottom:249.706500px;}
.y48{bottom:251.877624px;}
.y9f{bottom:252.616596px;}
.y61{bottom:255.126948px;}
.y1c0{bottom:255.422976px;}
.y130{bottom:255.471792px;}
.y183{bottom:256.577532px;}
.y157{bottom:257.986650px;}
.yf7{bottom:263.048604px;}
.yd4{bottom:264.122166px;}
.y47{bottom:269.157156px;}
.y9e{bottom:269.894652px;}
.y1bf{bottom:270.903480px;}
.y60{bottom:272.406480px;}
.y12f{bottom:272.751324px;}
.y182{bottom:273.857064px;}
.y156{bottom:275.986650px;}
.yf6{bottom:280.328136px;}
.yd3{bottom:281.401698px;}
.y1be{bottom:286.385316px;}
.y46{bottom:286.436688px;}
.y9d{bottom:287.174184px;}
.y5f{bottom:289.684536px;}
.y12e{bottom:290.029380px;}
.y181{bottom:291.136596px;}
.y155{bottom:296.156910px;}
.yf5{bottom:297.607668px;}
.yd2{bottom:298.679754px;}
.y1bd{bottom:301.865820px;}
.y45{bottom:303.716220px;}
.y9c{bottom:304.092096px;}
.y5e{bottom:306.962592px;}
.y12d{bottom:307.308912px;}
.y180{bottom:308.416128px;}
.y154{bottom:313.436442px;}
.yd1{bottom:315.599142px;}
.y1bc{bottom:317.346324px;}
.y44{bottom:320.995752px;}
.y9b{bottom:321.371628px;}
.y5d{bottom:324.240648px;}
.y12c{bottom:324.588444px;}
.y17f{bottom:325.695660px;}
.yf4{bottom:329.645724px;}
.y153{bottom:330.715974px;}
.y1bb{bottom:332.828160px;}
.yd0{bottom:332.877198px;}
.y43{bottom:337.913664px;}
.y9a{bottom:338.651160px;}
.y5c{bottom:341.518704px;}
.y12b{bottom:341.866500px;}
.y17e{bottom:342.975192px;}
.yf3{bottom:346.925256px;}
.y152{bottom:347.633886px;}
.y1ba{bottom:348.308664px;}
.ycf{bottom:350.156730px;}
.y42{bottom:355.193196px;}
.y99{bottom:355.930692px;}
.y5b{bottom:358.796760px;}
.y17d{bottom:360.253248px;}
.y1b9{bottom:363.789168px;}
.yf2{bottom:364.204788px;}
.y151{bottom:364.913418px;}
.y10{bottom:366.475500px;}
.yce{bottom:367.434786px;}
.y41{bottom:372.472728px;}
.y98{bottom:373.208748px;}
.y12a{bottom:373.908300px;}
.y5a{bottom:376.076292px;}
.y17c{bottom:377.532780px;}
.y1b8{bottom:379.271004px;}
.yf1{bottom:381.484320px;}
.y150{bottom:382.192950px;}
.ycd{bottom:384.712842px;}
.yf{bottom:388.075500px;}
.y129{bottom:389.026500px;}
.y40{bottom:389.750784px;}
.y97{bottom:390.488280px;}
.y59{bottom:393.355824px;}
.y17b{bottom:394.812312px;}
.y1b7{bottom:395.111148px;}
.yf0{bottom:398.763852px;}
.y14f{bottom:399.471006px;}
.ycc{bottom:401.992374px;}
.y3f{bottom:407.030316px;}
.y96{bottom:407.767812px;}
.y128{bottom:408.466650px;}
.ye{bottom:409.675500px;}
.y1b6{bottom:410.591652px;}
.y58{bottom:410.633880px;}
.y106{bottom:411.706500px;}
.y17a{bottom:412.090368px;}
.yef{bottom:416.043384px;}
.y14e{bottom:416.750538px;}
.ycb{bottom:419.271906px;}
.y3e{bottom:424.309848px;}
.y95{bottom:425.047344px;}
.y1b5{bottom:426.072156px;}
.y57{bottom:427.913412px;}
.y179{bottom:429.009756px;}
.y127{bottom:430.426356px;}
.yee{bottom:433.321440px;}
.y14d{bottom:434.028594px;}
.yca{bottom:436.551438px;}
.y1b4{bottom:441.553992px;}
.y3d{bottom:441.589380px;}
.y94{bottom:442.326876px;}
.y105{bottom:443.746500px;}
.y56{bottom:445.192944px;}
.y126{bottom:446.266500px;}
.y178{bottom:446.289288px;}
.yed{bottom:450.600972px;}
.y14c{bottom:451.306650px;}
.yc9{bottom:453.829494px;}
.y104{bottom:455.986650px;}
.y1b3{bottom:457.034496px;}
.y3c{bottom:458.868912px;}
.y93{bottom:459.606408px;}
.y55{bottom:462.110856px;}
.y177{bottom:463.568820px;}
.y125{bottom:468.586500px;}
.y14b{bottom:468.591468px;}
.yd{bottom:469.579500px;}
.yc8{bottom:471.109026px;}
.y1b2{bottom:472.515000px;}
.y3b{bottom:476.148444px;}
.y92{bottom:476.885940px;}
.y54{bottom:479.390388px;}
.y176{bottom:480.848352px;}
.yec{bottom:482.640504px;}
.y14a{bottom:485.869524px;}
.y1b1{bottom:487.996836px;}
.yc7{bottom:488.388558px;}
.y124{bottom:490.906500px;}
.yc{bottom:491.179500px;}
.y3a{bottom:493.426500px;}
.y91{bottom:494.165472px;}
.y53{bottom:496.668444px;}
.y175{bottom:498.127884px;}
.yeb{bottom:499.918560px;}
.yc6{bottom:502.066650px;}
.y149{bottom:503.149056px;}
.y1b0{bottom:503.477340px;}
.y39{bottom:511.066650px;}
.y90{bottom:511.084860px;}
.yb{bottom:512.779500px;}
.y123{bottom:512.866500px;}
.y52{bottom:513.946500px;}
.y51{bottom:513.965040px;}
.y174{bottom:515.407416px;}
.yea{bottom:517.198092px;}
.y1af{bottom:519.317484px;}
.y148{bottom:520.428588px;}
.yc5{bottom:523.308408px;}
.y8f{bottom:528.362916px;}
.y38{bottom:531.228594px;}
.y173{bottom:532.686948px;}
.ya{bottom:534.379500px;}
.ye9{bottom:534.477624px;}
.y1ae{bottom:534.797988px;}
.y121{bottom:535.186500px;}
.yc4{bottom:536.986500px;}
.y147{bottom:537.346500px;}
.y122{bottom:538.066284px;}
.y8e{bottom:545.642448px;}
.y37{bottom:548.506650px;}
.y172{bottom:549.966480px;}
.y1ad{bottom:550.279824px;}
.ye8{bottom:551.755680px;}
.y120{bottom:553.906428px;}
.y146{bottom:554.626500px;}
.y9{bottom:555.979500px;}
.y8d{bottom:562.920504px;}
.y1ac{bottom:565.760328px;}
.y36{bottom:565.786500px;}
.y35{bottom:565.808028px;}
.y171{bottom:567.244536px;}
.ye7{bottom:569.033736px;}
.y145{bottom:571.916616px;}
.yc3{bottom:575.148558px;}
.y8{bottom:577.579500px;}
.y8c{bottom:580.198560px;}
.y1ab{bottom:581.242164px;}
.y34{bottom:583.086084px;}
.y170{bottom:584.524068px;}
.y11f{bottom:588.466500px;}
.yc2{bottom:588.826650px;}
.y144{bottom:589.194672px;}
.y1aa{bottom:596.722668px;}
.y8b{bottom:597.478092px;}
.y7{bottom:599.179500px;}
.y33{bottom:600.365616px;}
.y11e{bottom:600.706500px;}
.ye6{bottom:601.073268px;}
.y16f{bottom:601.803600px;}
.y143{bottom:606.472728px;}
.y1a9{bottom:612.203172px;}
.y8a{bottom:614.757624px;}
.y32{bottom:617.643672px;}
.ye5{bottom:618.351324px;}
.y103{bottom:619.066650px;}
.y16e{bottom:619.081656px;}
.y142{bottom:623.750784px;}
.y1a8{bottom:627.685008px;}
.y89{bottom:632.037156px;}
.yc1{bottom:634.555356px;}
.y31{bottom:634.921728px;}
.ye4{bottom:635.629380px;}
.y16d{bottom:636.001044px;}
.y141{bottom:641.030316px;}
.y1a7{bottom:643.525152px;}
.y88{bottom:649.316688px;}
.yc0{bottom:651.833412px;}
.y30{bottom:651.841116px;}
.ye3{bottom:652.908912px;}
.y102{bottom:652.942860px;}
.y16c{bottom:653.280576px;}
.y140{bottom:658.309848px;}
.y1a6{bottom:659.005656px;}
.y87{bottom:666.596220px;}
.ybf{bottom:669.111468px;}
.y2f{bottom:669.119172px;}
.ye2{bottom:670.188444px;}
.y101{bottom:670.220916px;}
.y16b{bottom:670.558632px;}
.y1a5{bottom:674.486160px;}
.y13f{bottom:675.587904px;}
.y86{bottom:683.874276px;}
.ybe{bottom:686.389524px;}
.y2e{bottom:686.397228px;}
.ye1{bottom:687.466500px;}
.y100{bottom:687.498972px;}
.y16a{bottom:687.838164px;}
.y5{bottom:689.592150px;}
.y1a4{bottom:689.967996px;}
.y13e{bottom:692.867436px;}
.y85{bottom:700.793664px;}
.ybd{bottom:703.308912px;}
.y2d{bottom:703.675284px;}
.y169{bottom:705.117696px;}
.y1a3{bottom:705.448500px;}
.y13d{bottom:710.146968px;}
.y84{bottom:718.073196px;}
.ye0{bottom:719.505888px;}
.y4{bottom:719.592750px;}
.ybc{bottom:720.588444px;}
.y1a2{bottom:720.929004px;}
.y2c{bottom:720.953340px;}
.y168{bottom:722.395752px;}
.y13c{bottom:727.426500px;}
.y83{bottom:735.351252px;}
.y1a1{bottom:736.410840px;}
.ybb{bottom:737.925396px;}
.y2b{bottom:738.231396px;}
.y167{bottom:739.675284px;}
.ydf{bottom:746.866500px;}
.y1a0{bottom:751.891344px;}
.y82{bottom:752.630784px;}
.y2a{bottom:755.510928px;}
.y11d{bottom:756.226500px;}
.yba{bottom:756.285360px;}
.y166{bottom:756.954816px;}
.y13b{bottom:759.106500px;}
.y19f{bottom:767.731488px;}
.y81{bottom:769.910316px;}
.y13a{bottom:771.346650px;}
.y29{bottom:772.790460px;}
.y11c{bottom:773.515284px;}
.yb9{bottom:773.564892px;}
.y165{bottom:774.234348px;}
.y3{bottom:781.284450px;}
.y19e{bottom:783.211992px;}
.y80{bottom:787.189848px;}
.y28{bottom:790.069992px;}
.y11b{bottom:790.793340px;}
.yb8{bottom:790.844424px;}
.y164{bottom:791.513880px;}
.y19d{bottom:798.693828px;}
.y7f{bottom:804.469380px;}
.y27{bottom:807.349524px;}
.y11a{bottom:808.071396px;}
.yb7{bottom:808.123956px;}
.y163{bottom:808.793412px;}
.y2{bottom:811.285050px;}
.y19c{bottom:814.174332px;}
.y7e{bottom:821.748912px;}
.y26{bottom:824.629056px;}
.y119{bottom:824.990784px;}
.yb6{bottom:825.041868px;}
.y162{bottom:825.711324px;}
.y19b{bottom:829.654836px;}
.y7d{bottom:839.028444px;}
.y1{bottom:841.285650px;}
.y25{bottom:841.908588px;}
.y118{bottom:842.270316px;}
.yb5{bottom:842.321400px;}
.y161{bottom:842.990856px;}
.y19a{bottom:845.136672px;}
.y7c{bottom:856.306500px;}
.y24{bottom:858.826500px;}
.y117{bottom:859.549848px;}
.yb4{bottom:859.600932px;}
.y160{bottom:860.270388px;}
.y199{bottom:860.617176px;}
.y7b{bottom:873.946500px;}
.y198{bottom:876.097680px;}
.y23{bottom:876.108594px;}
.y116{bottom:876.829380px;}
.yb3{bottom:876.878988px;}
.y15f{bottom:877.548444px;}
.y197{bottom:891.579516px;}
.y22{bottom:893.386650px;}
.y115{bottom:894.108912px;}
.y7a{bottom:894.114744px;}
.yb2{bottom:894.158520px;}
.y15e{bottom:894.826500px;}
.y196{bottom:907.419660px;}
.y21{bottom:909.945852px;}
.y114{bottom:911.388444px;}
.y79{bottom:911.392800px;}
.yb1{bottom:911.438052px;}
.y195{bottom:922.900164px;}
.y20{bottom:925.426356px;}
.y15d{bottom:926.866500px;}
.y113{bottom:928.666500px;}
.y78{bottom:928.672332px;}
.yb0{bottom:928.716108px;}
.y194{bottom:938.380668px;}
.y15c{bottom:939.106500px;}
.y1f{bottom:941.266500px;}
.y139{bottom:944.146500px;}
.y112{bottom:945.946500px;}
.y77{bottom:945.950388px;}
.yaf{bottom:945.995640px;}
.y193{bottom:953.862504px;}
.y138{bottom:956.386650px;}
.y1e{bottom:957.468774px;}
.y76{bottom:963.228444px;}
.y111{bottom:963.237300px;}
.yae{bottom:963.273696px;}
.y192{bottom:969.343008px;}
.y1d{bottom:974.386686px;}
.y75{bottom:980.506500px;}
.y110{bottom:980.516832px;}
.yad{bottom:980.551752px;}
.y191{bottom:984.823512px;}
.y1c{bottom:992.745924px;}
.y74{bottom:997.786500px;}
.y10f{bottom:997.796364px;}
.yac{bottom:997.829808px;}
.y190{bottom:1000.305348px;}
.y73{bottom:1014.714276px;}
.yab{bottom:1014.749196px;}
.y18f{bottom:1015.785852px;}
.y1b{bottom:1016.866500px;}
.y18e{bottom:1031.625996px;}
.y72{bottom:1031.992332px;}
.yaa{bottom:1032.028728px;}
.y1a{bottom:1040.626650px;}
.y18d{bottom:1047.106500px;}
.y71{bottom:1049.270388px;}
.ya9{bottom:1049.306784px;}
.y19{bottom:1061.506650px;}
.yde{bottom:1061.866500px;}
.y18c{bottom:1063.666500px;}
.y70{bottom:1066.548444px;}
.ya8{bottom:1066.586316px;}
.ydd{bottom:1080.946500px;}
.y18{bottom:1082.386650px;}
.y6f{bottom:1083.826500px;}
.y18b{bottom:1083.826902px;}
.ya7{bottom:1083.865848px;}
.y6e{bottom:1101.466500px;}
.y15{bottom:1106.866770px;}
.y6d{bottom:1120.906842px;}
.y14{bottom:1126.666950px;}
.y6c{bottom:1134.946626px;}
.y6b{bottom:1155.466560px;}
.y13{bottom:1160.866950px;}
.y6a{bottom:1175.986884px;}
.y12{bottom:1197.587100px;}
.h14{height:34.595859px;}
.hf{height:34.619062px;}
.h16{height:35.511328px;}
.h6{height:35.640000px;}
.h9{height:38.789297px;}
.h18{height:38.815312px;}
.ha{height:39.350391px;}
.h12{height:42.262031px;}
.h7{height:42.982734px;}
.h17{height:42.985494px;}
.h10{height:43.011562px;}
.h13{height:45.449347px;}
.he{height:45.463410px;}
.h15{height:47.176172px;}
.hb{height:47.988281px;}
.h11{height:51.539062px;}
.h5{height:52.148438px;}
.hd{height:52.417969px;}
.h8{height:53.568984px;}
.hc{height:60.804844px;}
.h4{height:62.578125px;}
.h2{height:63.624355px;}
.h3{height:73.007812px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:108.447600px;}
.x18{left:117.087600px;}
.x15{left:127.603092px;}
.x8{left:131.095728px;}
.x3{left:161.575500px;}
.x7{left:204.891000px;}
.x16{left:235.677576px;}
.x19{left:260.056488px;}
.x2{left:284.883000px;}
.x1{left:286.476000px;}
.xe{left:310.497000px;}
.x17{left:333.442380px;}
.x6{left:374.247000px;}
.xa{left:401.599500px;}
.x14{left:421.552500px;}
.x4{left:433.944000px;}
.x9{left:446.922000px;}
.x1a{left:455.781000px;}
.xb{left:473.489972px;}
.x1b{left:481.962684px;}
.xc{left:526.551000px;}
.xd{left:542.751000px;}
.x10{left:753.988500px;}
.x11{left:756.988500px;}
.x12{left:785.125500px;}
.x13{left:791.118000px;}
.xf{left:792.987000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.761920pt;}
.v1{vertical-align:24.863467pt;}
.ls2a{letter-spacing:-0.012800pt;}
.ls2e{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.010667pt;}
.ls23{letter-spacing:0.190080pt;}
.ls28{letter-spacing:0.206976pt;}
.ls1e{letter-spacing:0.207872pt;}
.ls22{letter-spacing:0.215424pt;}
.ls3{letter-spacing:0.230144pt;}
.ls38{letter-spacing:0.246272pt;}
.ls21{letter-spacing:0.247893pt;}
.ls3f{letter-spacing:0.265216pt;}
.ls3b{letter-spacing:0.269952pt;}
.ls39{letter-spacing:0.274688pt;}
.ls33{letter-spacing:0.279424pt;}
.ls5{letter-spacing:0.284160pt;}
.ls32{letter-spacing:0.288896pt;}
.ls30{letter-spacing:0.293632pt;}
.ls2f{letter-spacing:0.298368pt;}
.ls35{letter-spacing:0.303104pt;}
.ls1d{letter-spacing:0.307840pt;}
.ls37{letter-spacing:0.309632pt;}
.ls31{letter-spacing:0.312576pt;}
.ls29{letter-spacing:0.314880pt;}
.ls34{letter-spacing:0.317312pt;}
.ls3c{letter-spacing:0.322048pt;}
.ls2b{letter-spacing:0.325376pt;}
.ls3e{letter-spacing:0.326784pt;}
.ls1c{letter-spacing:0.331520pt;}
.ls20{letter-spacing:0.335872pt;}
.ls3d{letter-spacing:0.336256pt;}
.lsb{letter-spacing:0.341120pt;}
.ls3a{letter-spacing:0.345728pt;}
.ls1b{letter-spacing:0.346368pt;}
.ls18{letter-spacing:0.351616pt;}
.ls27{letter-spacing:0.355840pt;}
.ls7{letter-spacing:0.356864pt;}
.ls2{letter-spacing:0.361173pt;}
.ls16{letter-spacing:0.362112pt;}
.lsf{letter-spacing:0.367360pt;}
.ls11{letter-spacing:0.372608pt;}
.ls12{letter-spacing:0.377856pt;}
.ls1a{letter-spacing:0.383104pt;}
.ls10{letter-spacing:0.388352pt;}
.ls26{letter-spacing:0.393600pt;}
.ls24{letter-spacing:0.398848pt;}
.lsc{letter-spacing:0.404096pt;}
.lsa{letter-spacing:0.409344pt;}
.ls15{letter-spacing:0.414592pt;}
.lsd{letter-spacing:0.419840pt;}
.ls9{letter-spacing:0.425088pt;}
.ls14{letter-spacing:0.430336pt;}
.ls17{letter-spacing:0.435584pt;}
.lse{letter-spacing:0.440832pt;}
.ls8{letter-spacing:0.446080pt;}
.ls2c{letter-spacing:0.449280pt;}
.ls36{letter-spacing:0.451328pt;}
.ls13{letter-spacing:0.456576pt;}
.ls25{letter-spacing:0.467072pt;}
.ls19{letter-spacing:0.477568pt;}
.ls2d{letter-spacing:0.518400pt;}
.ls6{letter-spacing:0.524800pt;}
.ls4{letter-spacing:0.587776pt;}
.ws11c{word-spacing:-17.785600pt;}
.ws4{word-spacing:-15.114240pt;}
.ws5{word-spacing:-15.035520pt;}
.ws11d{word-spacing:-13.454976pt;}
.wsdb{word-spacing:-13.445504pt;}
.ws2{word-spacing:-11.409067pt;}
.ws3{word-spacing:-8.896000pt;}
.ws57{word-spacing:-7.472640pt;}
.wsa{word-spacing:-0.335872pt;}
.ws92{word-spacing:-0.272896pt;}
.ws154{word-spacing:-0.222592pt;}
.ws1b{word-spacing:-0.209920pt;}
.wsd2{word-spacing:-0.190080pt;}
.ws15a{word-spacing:-0.175232pt;}
.wsad{word-spacing:-0.167936pt;}
.ws8b{word-spacing:-0.157440pt;}
.ws14{word-spacing:-0.146944pt;}
.wsba{word-spacing:-0.141696pt;}
.ws11e{word-spacing:-0.137344pt;}
.wsd1{word-spacing:-0.136448pt;}
.ws6{word-spacing:-0.132608pt;}
.wsc3{word-spacing:-0.131200pt;}
.ws22{word-spacing:-0.125952pt;}
.ws100{word-spacing:-0.123136pt;}
.wsaf{word-spacing:-0.120960pt;}
.wse2{word-spacing:-0.120704pt;}
.wsf4{word-spacing:-0.118400pt;}
.wsa7{word-spacing:-0.115456pt;}
.ws7{word-spacing:-0.113664pt;}
.ws10a{word-spacing:-0.110208pt;}
.wsd3{word-spacing:-0.108928pt;}
.wsc{word-spacing:-0.104960pt;}
.wsee{word-spacing:-0.104192pt;}
.wsec{word-spacing:-0.099456pt;}
.ws9{word-spacing:-0.096512pt;}
.wsb{word-spacing:-0.094720pt;}
.ws73{word-spacing:-0.094464pt;}
.ws59{word-spacing:-0.092928pt;}
.ws168{word-spacing:-0.089984pt;}
.ws11b{word-spacing:-0.089216pt;}
.ws157{word-spacing:-0.085248pt;}
.ws149{word-spacing:-0.080512pt;}
.ws5e{word-spacing:-0.078720pt;}
.ws58{word-spacing:-0.076032pt;}
.ws150{word-spacing:-0.075776pt;}
.ws116{word-spacing:-0.073472pt;}
.ws8{word-spacing:-0.066816pt;}
.ws0{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.ws23{word-spacing:0.006400pt;}
.wsae{word-spacing:0.019200pt;}
.wsb0{word-spacing:0.131200pt;}
.ws6b{word-spacing:0.141696pt;}
.wsc5{word-spacing:0.157440pt;}
.ws36{word-spacing:0.194176pt;}
.ws97{word-spacing:0.209920pt;}
.ws13d{word-spacing:0.215168pt;}
.ws53{word-spacing:0.230912pt;}
.ws115{word-spacing:0.304384pt;}
.ws159{word-spacing:0.340992pt;}
.wse7{word-spacing:0.446080pt;}
.ws117{word-spacing:0.477568pt;}
.ws171{word-spacing:0.516224pt;}
.wsfe{word-spacing:0.530048pt;}
.ws101{word-spacing:0.540544pt;}
.ws18{word-spacing:0.577280pt;}
.wsfa{word-spacing:0.645504pt;}
.ws114{word-spacing:0.718976pt;}
.wsd6{word-spacing:0.834432pt;}
.wsd5{word-spacing:0.871168pt;}
.ws91{word-spacing:0.928896pt;}
.wsff{word-spacing:1.012864pt;}
.wsb9{word-spacing:1.070592pt;}
.ws15b{word-spacing:1.122432pt;}
.ws14a{word-spacing:1.264512pt;}
.ws127{word-spacing:1.291008pt;}
.ws15{word-spacing:1.301504pt;}
.ws52{word-spacing:1.500928pt;}
.ws17{word-spacing:1.521920pt;}
.wsdf{word-spacing:1.584896pt;}
.wsce{word-spacing:1.674112pt;}
.ws9e{word-spacing:1.695104pt;}
.wsac{word-spacing:1.747584pt;}
.wsb7{word-spacing:1.857792pt;}
.ws119{word-spacing:1.873536pt;}
.wsab{word-spacing:1.905024pt;}
.ws111{word-spacing:2.015232pt;}
.ws2d{word-spacing:2.293376pt;}
.wsc8{word-spacing:2.330112pt;}
.ws10d{word-spacing:2.340608pt;}
.ws35{word-spacing:2.372096pt;}
.ws103{word-spacing:2.382592pt;}
.ws140{word-spacing:2.713216pt;}
.ws1a{word-spacing:2.770944pt;}
.ws16a{word-spacing:2.775296pt;}
.ws1f{word-spacing:2.786688pt;}
.ws93{word-spacing:2.791936pt;}
.ws1e{word-spacing:2.802432pt;}
.ws121{word-spacing:2.828672pt;}
.ws156{word-spacing:2.832128pt;}
.ws61{word-spacing:3.164544pt;}
.wsdd{word-spacing:3.175040pt;}
.ws51{word-spacing:3.180288pt;}
.ws16b{word-spacing:3.248896pt;}
.wsbe{word-spacing:3.306240pt;}
.ws169{word-spacing:3.376768pt;}
.wsca{word-spacing:3.505664pt;}
.ws15f{word-spacing:3.514112pt;}
.ws3a{word-spacing:3.537152pt;}
.wscb{word-spacing:3.768064pt;}
.wsf8{word-spacing:3.841536pt;}
.wse0{word-spacing:3.888768pt;}
.ws79{word-spacing:3.894016pt;}
.ws6a{word-spacing:4.019968pt;}
.ws78{word-spacing:4.229888pt;}
.ws96{word-spacing:4.235136pt;}
.wsb2{word-spacing:4.266624pt;}
.ws16{word-spacing:4.271872pt;}
.ws12d{word-spacing:4.408320pt;}
.ws2c{word-spacing:4.434560pt;}
.ws118{word-spacing:4.665472pt;}
.ws3c{word-spacing:4.696960pt;}
.wse5{word-spacing:4.728448pt;}
.ws174{word-spacing:4.807040pt;}
.ws113{word-spacing:4.864896pt;}
.ws160{word-spacing:4.915968pt;}
.ws74{word-spacing:4.964608pt;}
.ws2a{word-spacing:5.116800pt;}
.ws8a{word-spacing:5.132544pt;}
.ws170{word-spacing:5.522176pt;}
.ws67{word-spacing:5.741312pt;}
.ws120{word-spacing:5.757056pt;}
.ws12a{word-spacing:5.767552pt;}
.ws13{word-spacing:6.045696pt;}
.wsb4{word-spacing:6.334336pt;}
.ws4a{word-spacing:6.754176pt;}
.wsf6{word-spacing:6.832896pt;}
.ws14c{word-spacing:6.834048pt;}
.ws9c{word-spacing:6.943104pt;}
.wsa3{word-spacing:7.027072pt;}
.ws133{word-spacing:7.273728pt;}
.ws132{word-spacing:7.299968pt;}
.ws110{word-spacing:7.515136pt;}
.ws7a{word-spacing:7.609600pt;}
.ws102{word-spacing:7.693568pt;}
.ws4d{word-spacing:7.730304pt;}
.ws4e{word-spacing:7.756544pt;}
.ws9d{word-spacing:8.034688pt;}
.wsd0{word-spacing:8.060928pt;}
.wsd{word-spacing:8.123904pt;}
.ws5a{word-spacing:8.213120pt;}
.wseb{word-spacing:8.286592pt;}
.ws10c{word-spacing:8.365312pt;}
.wse8{word-spacing:8.627712pt;}
.ws161{word-spacing:8.643200pt;}
.wsa2{word-spacing:8.664448pt;}
.wsc7{word-spacing:8.716928pt;}
.ws70{word-spacing:8.732672pt;}
.wsa9{word-spacing:8.774656pt;}
.ws71{word-spacing:8.806144pt;}
.ws11a{word-spacing:8.858624pt;}
.ws63{word-spacing:9.178752pt;}
.ws62{word-spacing:9.184000pt;}
.ws19{word-spacing:9.252224pt;}
.ws3e{word-spacing:9.325696pt;}
.ws80{word-spacing:9.462144pt;}
.ws14f{word-spacing:9.505152pt;}
.ws9a{word-spacing:9.561856pt;}
.ws40{word-spacing:9.588096pt;}
.ws3f{word-spacing:9.598592pt;}
.wse6{word-spacing:9.635328pt;}
.ws21{word-spacing:9.729792pt;}
.ws20{word-spacing:9.750784pt;}
.ws83{word-spacing:9.777024pt;}
.ws7b{word-spacing:9.871488pt;}
.ws9f{word-spacing:10.118144pt;}
.wse9{word-spacing:10.391040pt;}
.ws15e{word-spacing:10.414464pt;}
.ws4c{word-spacing:10.417280pt;}
.ws76{word-spacing:10.433024pt;}
.ws75{word-spacing:10.464512pt;}
.ws87{word-spacing:10.496000pt;}
.wsc2{word-spacing:10.553728pt;}
.wsc1{word-spacing:10.585216pt;}
.wsaa{word-spacing:10.595712pt;}
.ws1d{word-spacing:10.627200pt;}
.wsf9{word-spacing:10.684928pt;}
.ws86{word-spacing:10.905344pt;}
.ws122{word-spacing:10.968320pt;}
.ws60{word-spacing:11.094272pt;}
.ws163{word-spacing:11.101184pt;}
.wsc4{word-spacing:11.162496pt;}
.wsd4{word-spacing:11.246464pt;}
.ws155{word-spacing:11.503744pt;}
.ws49{word-spacing:11.624320pt;}
.ws43{word-spacing:11.629568pt;}
.wsdc{word-spacing:11.634816pt;}
.ws64{word-spacing:11.655808pt;}
.ws8e{word-spacing:11.708288pt;}
.ws8f{word-spacing:11.718784pt;}
.wsfb{word-spacing:11.745024pt;}
.ws158{word-spacing:11.967872pt;}
.ws54{word-spacing:12.196352pt;}
.ws1c{word-spacing:12.233088pt;}
.ws126{word-spacing:12.343296pt;}
.wsda{word-spacing:12.647680pt;}
.ws12e{word-spacing:12.789376pt;}
.ws37{word-spacing:12.873344pt;}
.ws38{word-spacing:12.889088pt;}
.ws6c{word-spacing:12.915328pt;}
.wse{word-spacing:12.967808pt;}
.wse1{word-spacing:12.978304pt;}
.wsf{word-spacing:13.036032pt;}
.ws4b{word-spacing:13.078016pt;}
.ws10b{word-spacing:13.104256pt;}
.ws42{word-spacing:13.125248pt;}
.ws82{word-spacing:13.188224pt;}
.ws27{word-spacing:13.345664pt;}
.wsa6{word-spacing:14.143360pt;}
.wscd{word-spacing:14.195840pt;}
.ws8c{word-spacing:14.211584pt;}
.ws47{word-spacing:14.227328pt;}
.ws11{word-spacing:14.332288pt;}
.ws10{word-spacing:14.363776pt;}
.ws12{word-spacing:14.369024pt;}
.ws148{word-spacing:14.492160pt;}
.ws2e{word-spacing:14.552704pt;}
.ws28{word-spacing:14.599936pt;}
.ws6d{word-spacing:14.647168pt;}
.ws11f{word-spacing:15.932928pt;}
.ws50{word-spacing:16.085120pt;}
.ws65{word-spacing:16.242560pt;}
.ws5b{word-spacing:16.609920pt;}
.wsa5{word-spacing:16.746368pt;}
.wsde{word-spacing:17.118976pt;}
.ws41{word-spacing:17.528320pt;}
.wsd9{word-spacing:17.549312pt;}
.ws30{word-spacing:17.575552pt;}
.ws13e{word-spacing:17.596544pt;}
.ws165{word-spacing:17.688960pt;}
.wsf7{word-spacing:17.701504pt;}
.ws164{word-spacing:17.944704pt;}
.ws131{word-spacing:18.121344pt;}
.ws16c{word-spacing:18.124672pt;}
.wsd7{word-spacing:18.168576pt;}
.wsbb{word-spacing:18.215808pt;}
.ws2b{word-spacing:18.850816pt;}
.ws134{word-spacing:19.008256pt;}
.ws107{word-spacing:19.092224pt;}
.ws147{word-spacing:19.176064pt;}
.wsa8{word-spacing:19.223424pt;}
.wsb3{word-spacing:19.527808pt;}
.wsa0{word-spacing:19.653760pt;}
.ws14d{word-spacing:20.056960pt;}
.ws167{word-spacing:20.104320pt;}
.ws16e{word-spacing:20.331648pt;}
.ws109{word-spacing:20.572160pt;}
.ws33{word-spacing:20.598400pt;}
.ws34{word-spacing:20.619392pt;}
.wse4{word-spacing:20.635136pt;}
.ws112{word-spacing:20.671872pt;}
.ws136{word-spacing:20.997248pt;}
.ws12b{word-spacing:21.081216pt;}
.ws12c{word-spacing:21.091712pt;}
.wsfc{word-spacing:21.464320pt;}
.ws48{word-spacing:21.600768pt;}
.ws7e{word-spacing:21.742464pt;}
.wsb5{word-spacing:22.062592pt;}
.ws84{word-spacing:22.209536pt;}
.ws81{word-spacing:22.256768pt;}
.ws125{word-spacing:22.283008pt;}
.ws85{word-spacing:22.288256pt;}
.ws166{word-spacing:22.467584pt;}
.ws13a{word-spacing:22.561152pt;}
.ws46{word-spacing:22.713344pt;}
.ws108{word-spacing:22.739584pt;}
.ws5f{word-spacing:22.986240pt;}
.ws12f{word-spacing:22.991488pt;}
.wsf5{word-spacing:23.017728pt;}
.ws128{word-spacing:23.101696pt;}
.ws24{word-spacing:24.072576pt;}
.ws5c{word-spacing:24.109312pt;}
.ws13c{word-spacing:24.161792pt;}
.wse3{word-spacing:24.476672pt;}
.ws141{word-spacing:24.518656pt;}
.wsbc{word-spacing:24.697088pt;}
.wsd8{word-spacing:25.032960pt;}
.ws15c{word-spacing:25.200256pt;}
.ws143{word-spacing:25.316352pt;}
.ws144{word-spacing:25.337344pt;}
.ws4f{word-spacing:25.594496pt;}
.ws88{word-spacing:25.862144pt;}
.ws25{word-spacing:25.956608pt;}
.ws72{word-spacing:25.967104pt;}
.ws69{word-spacing:25.993344pt;}
.ws14e{word-spacing:26.123776pt;}
.ws15d{word-spacing:26.152192pt;}
.ws10e{word-spacing:26.423680pt;}
.ws99{word-spacing:27.604480pt;}
.ws90{word-spacing:27.625472pt;}
.ws2f{word-spacing:27.683200pt;}
.ws130{word-spacing:27.688448pt;}
.ws7f{word-spacing:27.830144pt;}
.ws98{word-spacing:27.887872pt;}
.ws14b{word-spacing:28.420736pt;}
.ws16d{word-spacing:28.539136pt;}
.ws13f{word-spacing:28.701312pt;}
.ws66{word-spacing:28.895488pt;}
.ws138{word-spacing:29.325824pt;}
.ws129{word-spacing:29.462272pt;}
.wscc{word-spacing:29.556736pt;}
.wsa1{word-spacing:29.918848pt;}
.wsb1{word-spacing:30.265216pt;}
.ws8d{word-spacing:30.685056pt;}
.ws55{word-spacing:30.994688pt;}
.ws10f{word-spacing:31.015680pt;}
.ws45{word-spacing:31.566720pt;}
.ws146{word-spacing:31.811712pt;}
.ws142{word-spacing:31.865856pt;}
.wscf{word-spacing:31.902592pt;}
.wsc6{word-spacing:32.401152pt;}
.ws145{word-spacing:32.469376pt;}
.ws56{word-spacing:33.083392pt;}
.ws6f{word-spacing:33.629184pt;}
.ws6e{word-spacing:33.634432pt;}
.ws152{word-spacing:33.980800pt;}
.ws26{word-spacing:34.447872pt;}
.ws123{word-spacing:34.579072pt;}
.ws44{word-spacing:35.807104pt;}
.wsb8{word-spacing:36.641536pt;}
.ws173{word-spacing:36.789248pt;}
.ws31{word-spacing:36.825216pt;}
.ws162{word-spacing:36.921856pt;}
.ws137{word-spacing:37.150592pt;}
.ws89{word-spacing:37.271296pt;}
.wsa4{word-spacing:37.276544pt;}
.ws104{word-spacing:37.287040pt;}
.ws3d{word-spacing:38.378624pt;}
.ws5d{word-spacing:39.816576pt;}
.ws7c{word-spacing:40.120960pt;}
.ws68{word-spacing:40.173440pt;}
.wsc9{word-spacing:40.666752pt;}
.ws153{word-spacing:41.207936pt;}
.wsea{word-spacing:42.088960pt;}
.wsb6{word-spacing:42.157184pt;}
.ws29{word-spacing:43.049344pt;}
.ws13b{word-spacing:43.122816pt;}
.ws151{word-spacing:44.295808pt;}
.ws172{word-spacing:44.826240pt;}
.ws32{word-spacing:44.844160pt;}
.ws139{word-spacing:45.458176pt;}
.ws124{word-spacing:46.413312pt;}
.wsfd{word-spacing:46.617984pt;}
.ws135{word-spacing:48.879872pt;}
.ws9b{word-spacing:49.520128pt;}
.ws105{word-spacing:56.006656pt;}
.ws7d{word-spacing:56.988032pt;}
.ws3b{word-spacing:61.343872pt;}
.ws39{word-spacing:65.085696pt;}
.ws94{word-spacing:66.943488pt;}
.wsbd{word-spacing:67.258368pt;}
.ws77{word-spacing:71.918592pt;}
.ws95{word-spacing:72.931456pt;}
.wsbf{word-spacing:91.719296pt;}
.wsc0{word-spacing:92.196864pt;}
.ws106{word-spacing:137.534336pt;}
.wsf1{word-spacing:172.025728pt;}
.wsed{word-spacing:175.961344pt;}
.wsf0{word-spacing:212.063872pt;}
.wsef{word-spacing:250.695424pt;}
.ws16f{word-spacing:304.600576pt;}
.wsf2{word-spacing:304.794752pt;}
.wsf3{word-spacing:374.807040pt;}
._f{margin-left:-176.108160pt;}
._13{margin-left:-69.998080pt;}
._7{margin-left:-19.584000pt;}
._4{margin-left:-17.792000pt;}
._a{margin-left:-15.980800pt;}
._9{margin-left:-9.755733pt;}
._2{margin-left:-8.273067pt;}
._6{margin-left:-6.905600pt;}
._0{margin-left:-5.545792pt;}
._b{margin-left:-3.347200pt;}
._5{margin-left:-2.374400pt;}
._3{margin-left:-1.344000pt;}
._8{width:1.766400pt;}
._1{width:11.409067pt;}
._10{width:14.099072pt;}
._c{width:19.386795pt;}
._11{width:66.071936pt;}
._12{width:119.460864pt;}
._e{width:236.122386pt;}
._d{width:456.538708pt;}
.fs9{font-size:25.600000pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:42.240000pt;}
.fs1{font-size:43.530667pt;}
.fs6{font-size:47.360000pt;}
.fs5{font-size:52.480000pt;}
.fs3{font-size:53.333333pt;}
.fsa{font-size:57.600000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.240000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:37.796000pt;}
.y17{bottom:50.441333pt;}
.y16{bottom:68.361333pt;}
.y1c7{bottom:99.401467pt;}
.y50{bottom:101.335989pt;}
.y10e{bottom:101.643477pt;}
.y69{bottom:104.228213pt;}
.yff{bottom:111.269685pt;}
.ydc{bottom:111.905147pt;}
.y6{bottom:113.023333pt;}
.y4f{bottom:116.695573pt;}
.y10d{bottom:117.003061pt;}
.ya6{bottom:117.036245pt;}
.y18a{bottom:117.641883pt;}
.y68{bottom:119.586485pt;}
.y137{bottom:119.891701pt;}
.yfe{bottom:126.309141pt;}
.ydb{bottom:127.264731pt;}
.y4e{bottom:131.735029pt;}
.y10c{bottom:132.361531pt;}
.ya5{bottom:132.394517pt;}
.y189{bottom:133.001467pt;}
.y67{bottom:134.946069pt;}
.y136{bottom:135.251285pt;}
.yfd{bottom:141.667413pt;}
.yda{bottom:142.623003pt;}
.y1c6{bottom:144.157909pt;}
.y4d{bottom:147.094613pt;}
.ya4{bottom:147.754101pt;}
.y10b{bottom:148.681499pt;}
.y188{bottom:149.001467pt;}
.y66{bottom:150.305653pt;}
.y135{bottom:150.610869pt;}
.yfc{bottom:157.026997pt;}
.y1c5{bottom:157.918357pt;}
.yd9{bottom:157.981275pt;}
.y4c{bottom:162.454197pt;}
.ya3{bottom:163.113685pt;}
.y10a{bottom:165.000853pt;}
.y65{bottom:165.663925pt;}
.y134{bottom:165.969141pt;}
.y187{bottom:166.921467pt;}
.y15b{bottom:168.204571pt;}
.y1c4{bottom:171.679989pt;}
.yfb{bottom:172.385269pt;}
.yd8{bottom:173.339547pt;}
.y4b{bottom:177.813781pt;}
.ya2{bottom:178.471957pt;}
.y64{bottom:181.022197pt;}
.y133{bottom:181.328725pt;}
.y186{bottom:182.311605pt;}
.y109{bottom:182.601333pt;}
.y15a{bottom:183.562843pt;}
.y1c3{bottom:185.440437pt;}
.yfa{bottom:187.743541pt;}
.yd7{bottom:188.697819pt;}
.y4a{bottom:193.173365pt;}
.ya1{bottom:193.831541pt;}
.y63{bottom:196.381781pt;}
.y132{bottom:196.688309pt;}
.y185{bottom:197.671189pt;}
.y159{bottom:198.602299pt;}
.y1c2{bottom:199.200885pt;}
.yf9{bottom:203.103125pt;}
.yd6{bottom:204.056091pt;}
.y49{bottom:208.531637pt;}
.ya0{bottom:209.189813pt;}
.y108{bottom:211.081467pt;}
.y62{bottom:211.741365pt;}
.y131{bottom:212.046581pt;}
.y184{bottom:212.709333pt;}
.y1c1{bottom:212.962517pt;}
.y158{bottom:213.961883pt;}
.yf8{bottom:218.462709pt;}
.yd5{bottom:219.415675pt;}
.y107{bottom:221.961333pt;}
.y48{bottom:223.891221pt;}
.y9f{bottom:224.548085pt;}
.y61{bottom:226.779509pt;}
.y1c0{bottom:227.042645pt;}
.y130{bottom:227.086037pt;}
.y183{bottom:228.068917pt;}
.y157{bottom:229.321467pt;}
.yf7{bottom:233.820981pt;}
.yd4{bottom:234.775259pt;}
.y47{bottom:239.250805pt;}
.y9e{bottom:239.906357pt;}
.y1bf{bottom:240.803093pt;}
.y60{bottom:242.139093pt;}
.y12f{bottom:242.445621pt;}
.y182{bottom:243.428501pt;}
.y156{bottom:245.321467pt;}
.yf6{bottom:249.180565pt;}
.yd3{bottom:250.134843pt;}
.y1be{bottom:254.564725pt;}
.y46{bottom:254.610389pt;}
.y9d{bottom:255.265941pt;}
.y5f{bottom:257.497365pt;}
.y12e{bottom:257.803893pt;}
.y181{bottom:258.788085pt;}
.y155{bottom:263.250587pt;}
.yf5{bottom:264.540149pt;}
.yd2{bottom:265.493115pt;}
.y1bd{bottom:268.325173pt;}
.y45{bottom:269.969973pt;}
.y9c{bottom:270.304085pt;}
.y5e{bottom:272.855637pt;}
.y12d{bottom:273.163477pt;}
.y180{bottom:274.147669pt;}
.y154{bottom:278.610171pt;}
.yd1{bottom:280.532571pt;}
.y1bc{bottom:282.085621pt;}
.y44{bottom:285.329557pt;}
.y9b{bottom:285.663669pt;}
.y5d{bottom:288.213909pt;}
.y12c{bottom:288.523061pt;}
.y17f{bottom:289.507253pt;}
.yf4{bottom:293.018421pt;}
.y153{bottom:293.969755pt;}
.y1bb{bottom:295.847253pt;}
.yd0{bottom:295.890843pt;}
.y43{bottom:300.367701pt;}
.y9a{bottom:301.023253pt;}
.y5c{bottom:303.572181pt;}
.y12b{bottom:303.881333pt;}
.y17e{bottom:304.866837pt;}
.yf3{bottom:308.378005pt;}
.y152{bottom:309.007899pt;}
.y1ba{bottom:309.607701pt;}
.ycf{bottom:311.250427pt;}
.y42{bottom:315.727285pt;}
.y99{bottom:316.382837pt;}
.y5b{bottom:318.930453pt;}
.y17d{bottom:320.225109pt;}
.y1b9{bottom:323.368149pt;}
.yf2{bottom:323.737589pt;}
.y151{bottom:324.367483pt;}
.y10{bottom:325.756000pt;}
.yce{bottom:326.608699pt;}
.y41{bottom:331.086869pt;}
.y98{bottom:331.741109pt;}
.y12a{bottom:332.362933pt;}
.y5a{bottom:334.290037pt;}
.y17c{bottom:335.584693pt;}
.y1b8{bottom:337.129781pt;}
.yf1{bottom:339.097173pt;}
.y150{bottom:339.727067pt;}
.ycd{bottom:341.966971pt;}
.yf{bottom:344.956000pt;}
.y129{bottom:345.801333pt;}
.y40{bottom:346.445141pt;}
.y97{bottom:347.100693pt;}
.y59{bottom:349.649621pt;}
.y17b{bottom:350.944277pt;}
.y1b7{bottom:351.209909pt;}
.yf0{bottom:354.456757pt;}
.y14f{bottom:355.085339pt;}
.ycc{bottom:357.326555pt;}
.y3f{bottom:361.804725pt;}
.y96{bottom:362.460277pt;}
.y128{bottom:363.081467pt;}
.ye{bottom:364.156000pt;}
.y1b6{bottom:364.970357pt;}
.y58{bottom:365.007893pt;}
.y106{bottom:365.961333pt;}
.y17a{bottom:366.302549pt;}
.yef{bottom:369.816341pt;}
.y14e{bottom:370.444923pt;}
.ycb{bottom:372.686139pt;}
.y3e{bottom:377.164309pt;}
.y95{bottom:377.819861pt;}
.y1b5{bottom:378.730805pt;}
.y57{bottom:380.367477pt;}
.y179{bottom:381.342005pt;}
.y127{bottom:382.601205pt;}
.yee{bottom:385.174613pt;}
.y14d{bottom:385.803195pt;}
.yca{bottom:388.045723pt;}
.y1b4{bottom:392.492437pt;}
.y3d{bottom:392.523893pt;}
.y94{bottom:393.179445pt;}
.y105{bottom:394.441333pt;}
.y56{bottom:395.727061pt;}
.y126{bottom:396.681333pt;}
.y178{bottom:396.701589pt;}
.yed{bottom:400.534197pt;}
.y14c{bottom:401.161467pt;}
.yc9{bottom:403.403995pt;}
.y104{bottom:405.321467pt;}
.y1b3{bottom:406.252885pt;}
.y3c{bottom:407.883477pt;}
.y93{bottom:408.539029pt;}
.y55{bottom:410.765205pt;}
.y177{bottom:412.061173pt;}
.y125{bottom:416.521333pt;}
.y14b{bottom:416.525749pt;}
.yd{bottom:417.404000pt;}
.yc8{bottom:418.763579pt;}
.y1b2{bottom:420.013333pt;}
.y3b{bottom:423.243061pt;}
.y92{bottom:423.898613pt;}
.y54{bottom:426.124789pt;}
.y176{bottom:427.420757pt;}
.yec{bottom:429.013781pt;}
.y14a{bottom:431.884021pt;}
.y1b1{bottom:433.774965pt;}
.yc7{bottom:434.123163pt;}
.y124{bottom:436.361333pt;}
.yc{bottom:436.604000pt;}
.y3a{bottom:438.601333pt;}
.y91{bottom:439.258197pt;}
.y53{bottom:441.483061pt;}
.y175{bottom:442.780341pt;}
.yeb{bottom:444.372053pt;}
.yc6{bottom:446.281467pt;}
.y149{bottom:447.243605pt;}
.y1b0{bottom:447.535413pt;}
.y39{bottom:454.281467pt;}
.y90{bottom:454.297653pt;}
.yb{bottom:455.804000pt;}
.y123{bottom:455.881333pt;}
.y52{bottom:456.841333pt;}
.y51{bottom:456.857813pt;}
.y174{bottom:458.139925pt;}
.yea{bottom:459.731637pt;}
.y1af{bottom:461.615541pt;}
.y148{bottom:462.603189pt;}
.yc5{bottom:465.163029pt;}
.y8f{bottom:469.655925pt;}
.y38{bottom:472.203195pt;}
.y173{bottom:473.499509pt;}
.ya{bottom:475.004000pt;}
.ye9{bottom:475.091221pt;}
.y1ae{bottom:475.375989pt;}
.y121{bottom:475.721333pt;}
.yc4{bottom:477.321333pt;}
.y147{bottom:477.641333pt;}
.y122{bottom:478.281141pt;}
.y8e{bottom:485.015509pt;}
.y37{bottom:487.561467pt;}
.y172{bottom:488.859093pt;}
.y1ad{bottom:489.137621pt;}
.ye8{bottom:490.449493pt;}
.y120{bottom:492.361269pt;}
.y146{bottom:493.001333pt;}
.y9{bottom:494.204000pt;}
.y8d{bottom:500.373781pt;}
.y1ac{bottom:502.898069pt;}
.y36{bottom:502.921333pt;}
.y35{bottom:502.940469pt;}
.y171{bottom:504.217365pt;}
.ye7{bottom:505.807765pt;}
.y145{bottom:508.370325pt;}
.yc3{bottom:511.243163pt;}
.y8{bottom:513.404000pt;}
.y8c{bottom:515.732053pt;}
.y1ab{bottom:516.659701pt;}
.y34{bottom:518.298741pt;}
.y170{bottom:519.576949pt;}
.y11f{bottom:523.081333pt;}
.yc2{bottom:523.401467pt;}
.y144{bottom:523.728597pt;}
.y1aa{bottom:530.420149pt;}
.y8b{bottom:531.091637pt;}
.y7{bottom:532.604000pt;}
.y33{bottom:533.658325pt;}
.y11e{bottom:533.961333pt;}
.ye6{bottom:534.287349pt;}
.y16f{bottom:534.936533pt;}
.y143{bottom:539.086869pt;}
.y1a9{bottom:544.180597pt;}
.y8a{bottom:546.451221pt;}
.y32{bottom:549.016597pt;}
.ye5{bottom:549.645621pt;}
.y103{bottom:550.281467pt;}
.y16e{bottom:550.294805pt;}
.y142{bottom:554.445141pt;}
.y1a8{bottom:557.942229pt;}
.y89{bottom:561.810805pt;}
.yc1{bottom:564.049205pt;}
.y31{bottom:564.374869pt;}
.ye4{bottom:565.003893pt;}
.y16d{bottom:565.334261pt;}
.y141{bottom:569.804725pt;}
.y1a7{bottom:572.022357pt;}
.y88{bottom:577.170389pt;}
.yc0{bottom:579.407477pt;}
.y30{bottom:579.414325pt;}
.ye3{bottom:580.363477pt;}
.y102{bottom:580.393653pt;}
.y16c{bottom:580.693845pt;}
.y140{bottom:585.164309pt;}
.y1a6{bottom:585.782805pt;}
.y87{bottom:592.529973pt;}
.ybf{bottom:594.765749pt;}
.y2f{bottom:594.772597pt;}
.ye2{bottom:595.723061pt;}
.y101{bottom:595.751925pt;}
.y16b{bottom:596.052117pt;}
.y1a5{bottom:599.543253pt;}
.y13f{bottom:600.522581pt;}
.y86{bottom:607.888245pt;}
.ybe{bottom:610.124021pt;}
.y2e{bottom:610.130869pt;}
.ye1{bottom:611.081333pt;}
.y100{bottom:611.110197pt;}
.y16a{bottom:611.411701pt;}
.y5{bottom:612.970800pt;}
.y1a4{bottom:613.304885pt;}
.y13e{bottom:615.882165pt;}
.y85{bottom:622.927701pt;}
.ybd{bottom:625.163477pt;}
.y2d{bottom:625.489141pt;}
.y169{bottom:626.771285pt;}
.y1a3{bottom:627.065333pt;}
.y13d{bottom:631.241749pt;}
.y84{bottom:638.287285pt;}
.ye0{bottom:639.560789pt;}
.y4{bottom:639.638000pt;}
.ybc{bottom:640.523061pt;}
.y1a2{bottom:640.825781pt;}
.y2c{bottom:640.847413pt;}
.y168{bottom:642.129557pt;}
.y13c{bottom:646.601333pt;}
.y83{bottom:653.645557pt;}
.y1a1{bottom:654.587413pt;}
.ybb{bottom:655.933685pt;}
.y2b{bottom:656.205685pt;}
.y167{bottom:657.489141pt;}
.ydf{bottom:663.881333pt;}
.y1a0{bottom:668.347861pt;}
.y82{bottom:669.005141pt;}
.y2a{bottom:671.565269pt;}
.y11d{bottom:672.201333pt;}
.yba{bottom:672.253653pt;}
.y166{bottom:672.848725pt;}
.y13b{bottom:674.761333pt;}
.y19f{bottom:682.427989pt;}
.y81{bottom:684.364725pt;}
.y13a{bottom:685.641467pt;}
.y29{bottom:686.924853pt;}
.y11c{bottom:687.569141pt;}
.yb9{bottom:687.613237pt;}
.y165{bottom:688.208309pt;}
.y3{bottom:694.475067pt;}
.y19e{bottom:696.188437pt;}
.y80{bottom:699.724309pt;}
.y28{bottom:702.284437pt;}
.y11b{bottom:702.927413pt;}
.yb8{bottom:702.972821pt;}
.y164{bottom:703.567893pt;}
.y19d{bottom:709.950069pt;}
.y7f{bottom:715.083893pt;}
.y27{bottom:717.644021pt;}
.y11a{bottom:718.285685pt;}
.yb7{bottom:718.332405pt;}
.y163{bottom:718.927477pt;}
.y2{bottom:721.142267pt;}
.y19c{bottom:723.710517pt;}
.y7e{bottom:730.443477pt;}
.y26{bottom:733.003605pt;}
.y119{bottom:733.325141pt;}
.yb6{bottom:733.370549pt;}
.y162{bottom:733.965621pt;}
.y19b{bottom:737.470965pt;}
.y7d{bottom:745.803061pt;}
.y1{bottom:747.809467pt;}
.y25{bottom:748.363189pt;}
.y118{bottom:748.684725pt;}
.yb5{bottom:748.730133pt;}
.y161{bottom:749.325205pt;}
.y19a{bottom:751.232597pt;}
.y7c{bottom:761.161333pt;}
.y24{bottom:763.401333pt;}
.y117{bottom:764.044309pt;}
.yb4{bottom:764.089717pt;}
.y160{bottom:764.684789pt;}
.y199{bottom:764.993045pt;}
.y7b{bottom:776.841333pt;}
.y198{bottom:778.753493pt;}
.y23{bottom:778.763195pt;}
.y116{bottom:779.403893pt;}
.yb3{bottom:779.447989pt;}
.y15f{bottom:780.043061pt;}
.y197{bottom:792.515125pt;}
.y22{bottom:794.121467pt;}
.y115{bottom:794.763477pt;}
.y7a{bottom:794.768661pt;}
.yb2{bottom:794.807573pt;}
.y15e{bottom:795.401333pt;}
.y196{bottom:806.595253pt;}
.y21{bottom:808.840757pt;}
.y114{bottom:810.123061pt;}
.y79{bottom:810.126933pt;}
.yb1{bottom:810.167157pt;}
.y195{bottom:820.355701pt;}
.y20{bottom:822.601205pt;}
.y15d{bottom:823.881333pt;}
.y113{bottom:825.481333pt;}
.y78{bottom:825.486517pt;}
.yb0{bottom:825.525429pt;}
.y194{bottom:834.116149pt;}
.y15c{bottom:834.761333pt;}
.y1f{bottom:836.681333pt;}
.y139{bottom:839.241333pt;}
.y112{bottom:840.841333pt;}
.y77{bottom:840.844789pt;}
.yaf{bottom:840.885013pt;}
.y193{bottom:847.877781pt;}
.y138{bottom:850.121467pt;}
.y1e{bottom:851.083355pt;}
.y76{bottom:856.203061pt;}
.y111{bottom:856.210933pt;}
.yae{bottom:856.243285pt;}
.y192{bottom:861.638229pt;}
.y1d{bottom:866.121499pt;}
.y75{bottom:871.561333pt;}
.y110{bottom:871.570517pt;}
.yad{bottom:871.601557pt;}
.y191{bottom:875.398677pt;}
.y1c{bottom:882.440821pt;}
.y74{bottom:886.921333pt;}
.y10f{bottom:886.930101pt;}
.yac{bottom:886.959829pt;}
.y190{bottom:889.160309pt;}
.y73{bottom:901.968245pt;}
.yab{bottom:901.999285pt;}
.y18f{bottom:902.920757pt;}
.y1b{bottom:903.881333pt;}
.y18e{bottom:917.000885pt;}
.y72{bottom:917.326517pt;}
.yaa{bottom:917.358869pt;}
.y1a{bottom:925.001467pt;}
.y18d{bottom:930.761333pt;}
.y71{bottom:932.684789pt;}
.ya9{bottom:932.717141pt;}
.y19{bottom:943.561467pt;}
.yde{bottom:943.881333pt;}
.y18c{bottom:945.481333pt;}
.y70{bottom:948.043061pt;}
.ya8{bottom:948.076725pt;}
.ydd{bottom:960.841333pt;}
.y18{bottom:962.121467pt;}
.y6f{bottom:963.401333pt;}
.y18b{bottom:963.401691pt;}
.ya7{bottom:963.436309pt;}
.y6e{bottom:979.081333pt;}
.y15{bottom:983.881573pt;}
.y6d{bottom:996.361637pt;}
.y14{bottom:1001.481733pt;}
.y6c{bottom:1008.841445pt;}
.y6b{bottom:1027.081387pt;}
.y13{bottom:1031.881733pt;}
.y6a{bottom:1045.321675pt;}
.y12{bottom:1064.521867pt;}
.h14{height:30.751875pt;}
.hf{height:30.772500pt;}
.h16{height:31.565625pt;}
.h6{height:31.680000pt;}
.h9{height:34.479375pt;}
.h18{height:34.502500pt;}
.ha{height:34.978125pt;}
.h12{height:37.566250pt;}
.h7{height:38.206875pt;}
.h17{height:38.209328pt;}
.h10{height:38.232500pt;}
.h13{height:40.399420pt;}
.he{height:40.411920pt;}
.h15{height:41.934375pt;}
.hb{height:42.656250pt;}
.h11{height:45.812500pt;}
.h5{height:46.354167pt;}
.hd{height:46.593750pt;}
.h8{height:47.616875pt;}
.hc{height:54.048750pt;}
.h4{height:55.625000pt;}
.h2{height:56.554982pt;}
.h3{height:64.895833pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.397867pt;}
.x18{left:104.077867pt;}
.x15{left:113.424971pt;}
.x8{left:116.529536pt;}
.x3{left:143.622667pt;}
.x7{left:182.125333pt;}
.x16{left:209.491179pt;}
.x19{left:231.161323pt;}
.x2{left:253.229333pt;}
.x1{left:254.645333pt;}
.xe{left:275.997333pt;}
.x17{left:296.393227pt;}
.x6{left:332.664000pt;}
.xa{left:356.977333pt;}
.x14{left:374.713333pt;}
.x4{left:385.728000pt;}
.x9{left:397.264000pt;}
.x1a{left:405.138667pt;}
.xb{left:420.879975pt;}
.x1b{left:428.411275pt;}
.xc{left:468.045333pt;}
.xd{left:482.445333pt;}
.x10{left:670.212000pt;}
.x11{left:672.878667pt;}
.x12{left:697.889333pt;}
.x13{left:703.216000pt;}
.xf{left:704.877333pt;}
}


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