
/* 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_1619d7cd7c34.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_2550b54100e0.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_580462e098a1.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_1ffe3512d8d5.woff")format("woff");}.ff4{font-family:ff4;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:ff5;src:url("fonts/font_0004_8d10f41ee6a9.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_23a97af8be73.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_e1ee99bfb993.woff")format("woff");}.ff7{font-family:ff7;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:ff8;src:url("fonts/font_0007_02908390212e.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_98d390ad7923.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_a55cd3483bc0.woff")format("woff");}.ffa{font-family:ffa;line-height:0.727539;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_d988d04f0ddc.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_31e82f1313d9.woff")format("woff");}.ffd{font-family:ffd;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:ffe;src:url("fonts/font_0013_e1ee99bfb993.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_a55cd3483bc0.woff")format("woff");}.fff{font-family:fff;line-height:0.727539;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_a76a266c573e.woff")format("woff");}.ff10{font-family:ff10;line-height:0.740234;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_8d10f41ee6a9.woff")format("woff");}.ff11{font-family:ff11;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:ff12;src:url("fonts/font_0017_7e405890ce4a.woff")format("woff");}.ff12{font-family:ff12;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:ff13;src:url("fonts/font_0018_848d47f61d0f.woff")format("woff");}.ff13{font-family:ff13;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:ff14;src:url("fonts/font_0019_e1ee99bfb993.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_9774d5445974.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_332f1352b958.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_8e1f9fa1aa73.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_f38ed95917b5.woff")format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url("fonts/font_0026_e3a64b5de7b3.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_7a04237dfefb.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;}
@font-face{font-family:ff1d;src:url("fonts/font_0028_556f91df38c5.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.740000;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:ff1e;src:url("fonts/font_0029_8d10f41ee6a9.woff")format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url("fonts/font_0030_857b374f7afd.woff")format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url("fonts/font_0031_17b0c1a467bd.woff")format("woff");}.ff20{font-family:ff20;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:ff21;src:url("fonts/font_0032_7a04237dfefb.woff")format("woff");}.ff21{font-family:ff21;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;}
.m3{transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242497,0.000000,0.000000,0.250000,0,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);}
.m4{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;}
.v3{vertical-align:24.481704px;}
.v1{vertical-align:27.971400px;}
.v2{vertical-align:30.231504px;}
.ls30{letter-spacing:-0.021600px;}
.ls31{letter-spacing:-0.014400px;}
.ls38{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.012000px;}
.ls5{letter-spacing:0.050544px;}
.ls7{letter-spacing:0.066096px;}
.ls40{letter-spacing:0.138528px;}
.ls26{letter-spacing:0.218592px;}
.ls2e{letter-spacing:0.237600px;}
.ls3{letter-spacing:0.258912px;}
.ls22{letter-spacing:0.259776px;}
.ls32{letter-spacing:0.271584px;}
.ls44{letter-spacing:0.277056px;}
.ls37{letter-spacing:0.277488px;}
.ls25{letter-spacing:0.278880px;}
.ls33{letter-spacing:0.289296px;}
.ls43{letter-spacing:0.293040px;}
.ls46{letter-spacing:0.298368px;}
.ls49{letter-spacing:0.303696px;}
.ls41{letter-spacing:0.309024px;}
.ls48{letter-spacing:0.314352px;}
.ls3a{letter-spacing:0.318816px;}
.ls42{letter-spacing:0.319680px;}
.lsa{letter-spacing:0.325008px;}
.ls9{letter-spacing:0.330336px;}
.ls45{letter-spacing:0.335664px;}
.ls2f{letter-spacing:0.340992px;}
.ls34{letter-spacing:0.342432px;}
.ls1d{letter-spacing:0.346320px;}
.ls2b{letter-spacing:0.348336px;}
.ls39{letter-spacing:0.351648px;}
.ls3c{letter-spacing:0.356976px;}
.ls35{letter-spacing:0.362304px;}
.ls47{letter-spacing:0.367632px;}
.ls3e{letter-spacing:0.371952px;}
.ls20{letter-spacing:0.372960px;}
.ls18{letter-spacing:0.377856px;}
.ls36{letter-spacing:0.383616px;}
.ls15{letter-spacing:0.383760px;}
.ls3d{letter-spacing:0.389664px;}
.ls24{letter-spacing:0.395568px;}
.ls2d{letter-spacing:0.400320px;}
.ls23{letter-spacing:0.401472px;}
.ls2{letter-spacing:0.406320px;}
.ls19{letter-spacing:0.407376px;}
.ls11{letter-spacing:0.413280px;}
.ls8{letter-spacing:0.419184px;}
.ls12{letter-spacing:0.425088px;}
.ls6{letter-spacing:0.430992px;}
.ls1c{letter-spacing:0.436896px;}
.ls17{letter-spacing:0.442800px;}
.ls13{letter-spacing:0.448704px;}
.ls16{letter-spacing:0.454608px;}
.ls1a{letter-spacing:0.460512px;}
.lse{letter-spacing:0.466416px;}
.ls10{letter-spacing:0.472320px;}
.ls1b{letter-spacing:0.478224px;}
.lsf{letter-spacing:0.484128px;}
.ls28{letter-spacing:0.490032px;}
.lsc{letter-spacing:0.495936px;}
.lsd{letter-spacing:0.501840px;}
.ls1e{letter-spacing:0.507744px;}
.ls2a{letter-spacing:0.513648px;}
.ls1f{letter-spacing:0.519552px;}
.ls2c{letter-spacing:0.525456px;}
.ls14{letter-spacing:0.531360px;}
.ls29{letter-spacing:0.537264px;}
.ls27{letter-spacing:0.543168px;}
.ls3b{letter-spacing:0.549072px;}
.ls3f{letter-spacing:0.578592px;}
.ls4{letter-spacing:0.584496px;}
.lsb{letter-spacing:0.590400px;}
.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;}
}
.ws6{word-spacing:-17.003520px;}
.ws7{word-spacing:-16.914960px;}
.wsf6{word-spacing:-15.088896px;}
.ws2{word-spacing:-12.835200px;}
.ws5{word-spacing:-10.874736px;}
.ws4{word-spacing:-10.859184px;}
.ws3{word-spacing:-10.008000px;}
.ws56{word-spacing:-8.406720px;}
.wsb{word-spacing:-0.330624px;}
.wsf{word-spacing:-0.236160px;}
.ws9b{word-spacing:-0.206640px;}
.ws1b{word-spacing:-0.200736px;}
.ws1a{word-spacing:-0.194832px;}
.wscb{word-spacing:-0.186480px;}
.ws29{word-spacing:-0.177120px;}
.ws44{word-spacing:-0.171216px;}
.wsed{word-spacing:-0.165312px;}
.ws5e{word-spacing:-0.165168px;}
.wsf7{word-spacing:-0.159840px;}
.wsc9{word-spacing:-0.159408px;}
.ws45{word-spacing:-0.154512px;}
.ws8{word-spacing:-0.149184px;}
.wsc{word-spacing:-0.147600px;}
.wsca{word-spacing:-0.143856px;}
.wsd{word-spacing:-0.141696px;}
.wsd0{word-spacing:-0.138528px;}
.ws85{word-spacing:-0.135792px;}
.wsd4{word-spacing:-0.133200px;}
.ws114{word-spacing:-0.129888px;}
.ws9{word-spacing:-0.127872px;}
.ws5d{word-spacing:-0.123984px;}
.wsec{word-spacing:-0.117216px;}
.ws10f{word-spacing:-0.112176px;}
.wse{word-spacing:-0.106560px;}
.ws15a{word-spacing:-0.101232px;}
.ws132{word-spacing:-0.095904px;}
.ws58{word-spacing:-0.095040px;}
.wsaf{word-spacing:-0.088560px;}
.ws57{word-spacing:-0.085536px;}
.wsa8{word-spacing:-0.082656px;}
.wsa{word-spacing:-0.075168px;}
.ws0{word-spacing:-0.072000px;}
.ws59{word-spacing:-0.066528px;}
.wsf1{word-spacing:-0.005904px;}
.ws1{word-spacing:0.000000px;}
.ws1c{word-spacing:0.007200px;}
.ws74{word-spacing:0.014400px;}
.wseb{word-spacing:0.029520px;}
.wsbc{word-spacing:0.047232px;}
.ws14{word-spacing:0.059040px;}
.wsb8{word-spacing:0.165312px;}
.ws15{word-spacing:0.206640px;}
.ws47{word-spacing:0.218448px;}
.wsb9{word-spacing:0.265680px;}
.wsc2{word-spacing:0.289296px;}
.ws43{word-spacing:0.330624px;}
.wscc{word-spacing:0.442800px;}
.ws4f{word-spacing:0.808848px;}
.wsea{word-spacing:0.962352px;}
.wsf9{word-spacing:1.062720px;}
.wsf2{word-spacing:1.157184px;}
.ws150{word-spacing:1.300032px;}
.wsc5{word-spacing:1.387440px;}
.ws93{word-spacing:1.428768px;}
.ws31{word-spacing:1.529136px;}
.ws23{word-spacing:1.812528px;}
.wsc3{word-spacing:2.019168px;}
.ws14a{word-spacing:2.141856px;}
.ws11{word-spacing:2.332080px;}
.ws10{word-spacing:2.349792px;}
.wsc8{word-spacing:2.385216px;}
.ws13f{word-spacing:2.498832px;}
.ws42{word-spacing:2.591856px;}
.ws155{word-spacing:2.616048px;}
.ws14b{word-spacing:2.664000px;}
.ws84{word-spacing:2.686320px;}
.wse9{word-spacing:2.692224px;}
.ws12f{word-spacing:2.978352px;}
.ws130{word-spacing:3.004992px;}
.wsc0{word-spacing:3.022848px;}
.wsbd{word-spacing:3.064176px;}
.wsd8{word-spacing:3.075984px;}
.ws11c{word-spacing:3.087792px;}
.ws3e{word-spacing:3.093696px;}
.ws14e{word-spacing:3.527136px;}
.ws16{word-spacing:3.548304px;}
.ws34{word-spacing:3.554208px;}
.wsa9{word-spacing:3.566016px;}
.ws24{word-spacing:3.607344px;}
.wsc6{word-spacing:3.778560px;}
.wsfc{word-spacing:3.819888px;}
.ws126{word-spacing:3.973392px;}
.wse5{word-spacing:4.002912px;}
.wsab{word-spacing:4.085568px;}
.wsfd{word-spacing:4.185936px;}
.wsbe{word-spacing:4.339440px;}
.ws103{word-spacing:4.345344px;}
.ws100{word-spacing:4.363056px;}
.wsad{word-spacing:4.433904px;}
.wsb6{word-spacing:4.551984px;}
.ws5f{word-spacing:4.563792px;}
.ws37{word-spacing:4.693680px;}
.ws22{word-spacing:4.746816px;}
.ws13{word-spacing:4.782240px;}
.ws12{word-spacing:4.799952px;}
.wse0{word-spacing:4.811760px;}
.wsf5{word-spacing:4.994784px;}
.wsb3{word-spacing:5.030208px;}
.wse8{word-spacing:5.047920px;}
.ws32{word-spacing:5.053824px;}
.ws110{word-spacing:5.254560px;}
.ws13e{word-spacing:5.567760px;}
.wsdf{word-spacing:5.626512px;}
.ws159{word-spacing:5.732928px;}
.ws92{word-spacing:5.738688px;}
.ws19{word-spacing:5.980752px;}
.wsf3{word-spacing:5.998464px;}
.ws12d{word-spacing:6.121872px;}
.ws151{word-spacing:6.297696px;}
.ws9a{word-spacing:6.334992px;}
.ws6d{word-spacing:6.388128px;}
.wsc7{word-spacing:6.399936px;}
.ws10b{word-spacing:6.405840px;}
.ws2a{word-spacing:6.423552px;}
.wsfb{word-spacing:6.435360px;}
.ws65{word-spacing:6.458976px;}
.ws83{word-spacing:6.476688px;}
.wsba{word-spacing:6.482592px;}
.ws18{word-spacing:6.494400px;}
.ws12a{word-spacing:6.582960px;}
.ws154{word-spacing:6.766560px;}
.wse2{word-spacing:6.860448px;}
.ws6a{word-spacing:6.937200px;}
.wsee{word-spacing:6.996240px;}
.ws112{word-spacing:7.173360px;}
.ws131{word-spacing:7.283376px;}
.ws152{word-spacing:7.320672px;}
.ws4d{word-spacing:7.545312px;}
.ws136{word-spacing:7.677648px;}
.wsd5{word-spacing:7.870032px;}
.ws118{word-spacing:8.301024px;}
.ws86{word-spacing:8.360064px;}
.ws33{word-spacing:8.460432px;}
.wse1{word-spacing:8.489952px;}
.ws39{word-spacing:8.495856px;}
.ws13a{word-spacing:8.668656px;}
.ws72{word-spacing:8.684784px;}
.ws156{word-spacing:8.844480px;}
.ws134{word-spacing:8.860464px;}
.wsff{word-spacing:8.861904px;}
.ws10c{word-spacing:8.915040px;}
.ws41{word-spacing:9.050832px;}
.ws64{word-spacing:9.098064px;}
.ws3f{word-spacing:9.145296px;}
.ws61{word-spacing:9.245664px;}
.ws6e{word-spacing:9.275184px;}
.ws129{word-spacing:9.286992px;}
.wsa4{word-spacing:9.298800px;}
.wsfe{word-spacing:9.316512px;}
.ws140{word-spacing:9.329328px;}
.wsbf{word-spacing:9.712080px;}
.ws78{word-spacing:9.717984px;}
.wsa2{word-spacing:9.824256px;}
.ws40{word-spacing:9.836064px;}
.ws14f{word-spacing:9.979344px;}
.ws17{word-spacing:10.054512px;}
.wsa3{word-spacing:10.101744px;}
.ws6f{word-spacing:10.267056px;}
.ws52{word-spacing:10.290672px;}
.wsae{word-spacing:10.296576px;}
.ws51{word-spacing:10.332000px;}
.ws1f{word-spacing:10.349712px;}
.ws71{word-spacing:10.373328px;}
.ws70{word-spacing:10.391040px;}
.ws76{word-spacing:10.479600px;}
.wse3{word-spacing:10.762992px;}
.ws111{word-spacing:11.058192px;}
.ws4b{word-spacing:11.099520px;}
.ws5b{word-spacing:11.111328px;}
.ws4c{word-spacing:11.140848px;}
.ws135{word-spacing:11.247408px;}
.ws7d{word-spacing:11.495088px;}
.wsf8{word-spacing:11.719440px;}
.ws14c{word-spacing:11.780208px;}
.wsd3{word-spacing:12.222432px;}
.ws8d{word-spacing:12.268512px;}
.ws12c{word-spacing:12.467520px;}
.ws1d{word-spacing:13.089168px;}
.wsd7{word-spacing:13.112784px;}
.ws69{word-spacing:13.549680px;}
.wsf4{word-spacing:13.614624px;}
.ws68{word-spacing:13.697280px;}
.ws11d{word-spacing:13.992480px;}
.ws35{word-spacing:14.205024px;}
.ws143{word-spacing:14.241744px;}
.ws6c{word-spacing:14.252256px;}
.ws53{word-spacing:14.706864px;}
.ws138{word-spacing:14.737248px;}
.ws91{word-spacing:14.742288px;}
.wsa1{word-spacing:14.765904px;}
.ws12e{word-spacing:14.817168px;}
.ws109{word-spacing:14.996160px;}
.ws60{word-spacing:15.250032px;}
.wsce{word-spacing:15.255936px;}
.wsc4{word-spacing:15.303168px;}
.ws13b{word-spacing:15.493824px;}
.ws62{word-spacing:15.592464px;}
.wsde{word-spacing:15.716448px;}
.wsdd{word-spacing:15.734160px;}
.wsd1{word-spacing:16.064784px;}
.ws1e{word-spacing:16.348176px;}
.ws48{word-spacing:16.371792px;}
.wsd6{word-spacing:16.413120px;}
.ws12b{word-spacing:16.548912px;}
.ws7e{word-spacing:16.979904px;}
.ws27{word-spacing:17.771040px;}
.ws97{word-spacing:18.751104px;}
.ws124{word-spacing:19.217520px;}
.ws9e{word-spacing:19.276560px;}
.ws55{word-spacing:19.288368px;}
.ws3d{word-spacing:19.294272px;}
.wsfa{word-spacing:19.382832px;}
.ws158{word-spacing:19.601712px;}
.ws147{word-spacing:19.724256px;}
.ws11b{word-spacing:19.790208px;}
.ws88{word-spacing:19.807920px;}
.ws2b{word-spacing:19.837440px;}
.ws15b{word-spacing:19.995984px;}
.wse7{word-spacing:20.233008px;}
.ws82{word-spacing:20.392416px;}
.ws73{word-spacing:20.852928px;}
.ws102{word-spacing:20.941488px;}
.ws127{word-spacing:21.000528px;}
.wscf{word-spacing:21.035952px;}
.ws8c{word-spacing:21.112704px;}
.ws9d{word-spacing:21.378384px;}
.ws3c{word-spacing:21.407904px;}
.ws6b{word-spacing:21.466944px;}
.ws146{word-spacing:21.658320px;}
.ws46{word-spacing:21.956976px;}
.ws20{word-spacing:21.986496px;}
.ws21{word-spacing:22.080960px;}
.ws11a{word-spacing:23.125968px;}
.wsc1{word-spacing:23.497920px;}
.ws113{word-spacing:23.822640px;}
.ws11f{word-spacing:23.852160px;}
.ws133{word-spacing:24.029280px;}
.wsef{word-spacing:24.962112px;}
.ws99{word-spacing:25.021152px;}
.ws77{word-spacing:25.080192px;}
.ws9c{word-spacing:25.369488px;}
.ws89{word-spacing:25.381296px;}
.ws36{word-spacing:25.463952px;}
.ws54{word-spacing:25.871328px;}
.ws148{word-spacing:26.219088px;}
.wse4{word-spacing:26.390880px;}
.ws67{word-spacing:26.479440px;}
.ws66{word-spacing:26.508960px;}
.ws96{word-spacing:26.632944px;}
.ws2c{word-spacing:27.548064px;}
.ws2e{word-spacing:27.607104px;}
.ws2d{word-spacing:27.630720px;}
.ws5a{word-spacing:27.784224px;}
.ws153{word-spacing:28.270368px;}
.ws157{word-spacing:28.281024px;}
.ws75{word-spacing:28.604880px;}
.wsb4{word-spacing:28.817424px;}
.ws10e{word-spacing:28.982736px;}
.ws4e{word-spacing:29.012256px;}
.wsd9{word-spacing:29.041776px;}
.ws28{word-spacing:29.130336px;}
.ws90{word-spacing:29.207088px;}
.ws63{word-spacing:29.254320px;}
.wsdb{word-spacing:29.708928px;}
.ws120{word-spacing:29.714832px;}
.ws80{word-spacing:29.720736px;}
.ws4a{word-spacing:29.732544px;}
.wsda{word-spacing:30.334752px;}
.ws79{word-spacing:30.340656px;}
.ws7a{word-spacing:30.346560px;}
.wsa0{word-spacing:30.364272px;}
.wsd2{word-spacing:30.576816px;}
.ws106{word-spacing:31.285296px;}
.ws98{word-spacing:31.728096px;}
.ws108{word-spacing:31.804848px;}
.wsb2{word-spacing:32.052816px;}
.ws115{word-spacing:32.129568px;}
.ws144{word-spacing:32.719248px;}
.ws142{word-spacing:33.028272px;}
.wsbb{word-spacing:33.074208px;}
.ws7c{word-spacing:33.227712px;}
.ws26{word-spacing:33.788592px;}
.ws107{word-spacing:34.095600px;}
.ws5c{word-spacing:34.497072px;}
.ws125{word-spacing:34.674192px;}
.ws7f{word-spacing:34.821792px;}
.ws13c{word-spacing:35.207424px;}
.ws123{word-spacing:35.813664px;}
.wsb7{word-spacing:36.380448px;}
.ws81{word-spacing:36.404064px;}
.ws8a{word-spacing:36.923616px;}
.ws145{word-spacing:37.285344px;}
.wsa7{word-spacing:37.431360px;}
.wsaa{word-spacing:37.685232px;}
.ws95{word-spacing:37.803312px;}
.ws25{word-spacing:38.057184px;}
.ws9f{word-spacing:38.092608px;}
.ws3a{word-spacing:38.440944px;}
.wsf0{word-spacing:38.517696px;}
.ws3b{word-spacing:39.639456px;}
.ws94{word-spacing:39.751632px;}
.ws30{word-spacing:40.950144px;}
.ws2f{word-spacing:40.973760px;}
.wsb0{word-spacing:41.044608px;}
.ws101{word-spacing:43.093296px;}
.ws8b{word-spacing:43.116912px;}
.ws121{word-spacing:43.128720px;}
.ws10d{word-spacing:43.370784px;}
.wscd{word-spacing:43.908048px;}
.wse6{word-spacing:45.726480px;}
.ws117{word-spacing:47.491776px;}
.ws11e{word-spacing:47.798784px;}
.ws104{word-spacing:48.046752px;}
.ws105{word-spacing:48.483648px;}
.ws149{word-spacing:49.539744px;}
.ws50{word-spacing:50.526432px;}
.ws7b{word-spacing:51.435648px;}
.ws49{word-spacing:51.949296px;}
.ws116{word-spacing:52.994304px;}
.ws8f{word-spacing:53.041536px;}
.ws119{word-spacing:53.761824px;}
.ws87{word-spacing:54.434880px;}
.wsb1{word-spacing:55.237824px;}
.ws8e{word-spacing:57.451824px;}
.wsa5{word-spacing:58.662144px;}
.ws122{word-spacing:61.442928px;}
.ws38{word-spacing:63.031104px;}
.ws137{word-spacing:63.509760px;}
.ws128{word-spacing:64.973520px;}
.wsb5{word-spacing:65.628864px;}
.wsac{word-spacing:90.543744px;}
.ws10a{word-spacing:91.872144px;}
.ws14d{word-spacing:94.657248px;}
.ws139{word-spacing:96.388848px;}
.wsdc{word-spacing:106.342848px;}
.ws141{word-spacing:143.456400px;}
.wsa6{word-spacing:161.433072px;}
.ws13d{word-spacing:189.767376px;}
._13{margin-left:-47.768256px;}
._4{margin-left:-20.016000px;}
._9{margin-left:-17.978400px;}
._8{margin-left:-11.008800px;}
._2{margin-left:-9.307200px;}
._7{margin-left:-8.085600px;}
._0{margin-left:-6.239016px;}
._6{margin-left:-3.974400px;}
._3{margin-left:-1.512000px;}
._5{width:1.033416px;}
._b{width:10.308384px;}
._e{width:11.613168px;}
._1{width:12.835200px;}
._12{width:19.607184px;}
._c{width:26.420400px;}
._10{width:32.324400px;}
._11{width:36.221040px;}
._d{width:39.013632px;}
._a{width:40.406976px;}
._f{width:56.034864px;}
.fc4{color:transparent;}
.fc3{color:rgb(64,108,108);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(16,17,17);}
.fc0{color:rgb(28,28,27);}
.fsa{font-size:28.800000px;}
.fs7{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.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;}
.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;}
.y6c{bottom:77.266500px;}
.y1a2{bottom:114.680472px;}
.ya3{bottom:115.072404px;}
.y166{bottom:115.812708px;}
.y4e{bottom:120.147150px;}
.y66{bottom:121.197624px;}
.y6{bottom:127.151250px;}
.y13a{bottom:128.746500px;}
.y1a1{bottom:130.160976px;}
.ydb{bottom:130.563678px;}
.ya2{bottom:132.351936px;}
.y165{bottom:133.090764px;}
.y4d{bottom:137.425206px;}
.y65{bottom:138.477156px;}
.y1a0{bottom:145.642812px;}
.y139{bottom:146.033958px;}
.yda{bottom:147.841734px;}
.ya1{bottom:149.631468px;}
.y164{bottom:150.368820px;}
.y4c{bottom:154.344594px;}
.y64{bottom:155.756688px;}
.y19f{bottom:161.123316px;}
.y138{bottom:163.313490px;}
.yd9{bottom:165.119790px;}
.ya0{bottom:166.549380px;}
.y163{bottom:167.648352px;}
.y4b{bottom:171.622650px;}
.y63{bottom:173.036220px;}
.y19e{bottom:176.603820px;}
.y137{bottom:180.593022px;}
.yd8{bottom:182.397846px;}
.y9f{bottom:183.828912px;}
.y162{bottom:184.927884px;}
.y4a{bottom:188.900706px;}
.y62{bottom:190.315752px;}
.y19d{bottom:192.085656px;}
.y136{bottom:197.872554px;}
.yd7{bottom:199.675902px;}
.y9e{bottom:201.108444px;}
.y161{bottom:202.205940px;}
.y126{bottom:204.708594px;}
.y49{bottom:206.178762px;}
.y61{bottom:207.233664px;}
.y19c{bottom:207.566160px;}
.y135{bottom:215.152086px;}
.yd6{bottom:216.953958px;}
.y9d{bottom:218.386500px;}
.y160{bottom:219.485472px;}
.y125{bottom:221.986650px;}
.y19b{bottom:223.046664px;}
.y48{bottom:223.456818px;}
.y60{bottom:224.513196px;}
.y134{bottom:232.431618px;}
.yd5{bottom:234.233490px;}
.y9c{bottom:236.386500px;}
.y15f{bottom:236.765004px;}
.y19a{bottom:238.528500px;}
.y124{bottom:238.545996px;}
.y47{bottom:240.734874px;}
.y5f{bottom:241.792728px;}
.y133{bottom:249.349530px;}
.yd4{bottom:251.513022px;}
.y10f{bottom:253.666650px;}
.y123{bottom:254.026500px;}
.y15e{bottom:254.044536px;}
.y199{bottom:254.368644px;}
.y9b{bottom:256.567560px;}
.y46{bottom:258.014406px;}
.y5e{bottom:259.070784px;}
.y122{bottom:266.626650px;}
.y132{bottom:266.629062px;}
.yd3{bottom:268.791078px;}
.y198{bottom:269.849148px;}
.y10e{bottom:270.963132px;}
.y15d{bottom:271.322592px;}
.y9a{bottom:273.845616px;}
.yf7{bottom:275.269992px;}
.y45{bottom:275.293938px;}
.y5d{bottom:276.350316px;}
.y131{bottom:283.908594px;}
.y197{bottom:285.329652px;}
.yd2{bottom:286.070610px;}
.y10d{bottom:287.881044px;}
.y15c{bottom:288.241980px;}
.y99{bottom:290.765004px;}
.yf6{bottom:292.549524px;}
.y44{bottom:292.571994px;}
.y5c{bottom:293.629848px;}
.y196{bottom:300.811488px;}
.y130{bottom:301.186650px;}
.yd1{bottom:303.350142px;}
.y10c{bottom:305.159100px;}
.y15b{bottom:305.520036px;}
.y98{bottom:308.044536px;}
.yf5{bottom:309.829056px;}
.y43{bottom:309.851526px;}
.y5b{bottom:310.909380px;}
.y195{bottom:316.291992px;}
.y12f{bottom:318.466650px;}
.yd0{bottom:320.268054px;}
.y10b{bottom:322.437156px;}
.y15a{bottom:322.799568px;}
.y97{bottom:325.322592px;}
.yf4{bottom:326.748444px;}
.y42{bottom:327.131058px;}
.y5a{bottom:328.188912px;}
.y194{bottom:331.772496px;}
.y12e{bottom:335.026500px;}
.ycf{bottom:337.547586px;}
.y10a{bottom:339.715212px;}
.y159{bottom:340.079100px;}
.y96{bottom:342.602124px;}
.yf3{bottom:344.026500px;}
.y41{bottom:344.410590px;}
.y59{bottom:345.468444px;}
.y193{bottom:347.254332px;}
.y12d{bottom:347.626650px;}
.yce{bottom:354.827118px;}
.y109{bottom:356.993268px;}
.y158{bottom:357.358632px;}
.y95{bottom:359.880180px;}
.y40{bottom:361.328502px;}
.yf2{bottom:362.026500px;}
.y192{bottom:362.734836px;}
.y58{bottom:362.746500px;}
.y10{bottom:366.475500px;}
.ycd{bottom:372.106650px;}
.y108{bottom:374.271324px;}
.y157{bottom:374.636688px;}
.y94{bottom:377.158236px;}
.y191{bottom:378.574980px;}
.y3f{bottom:378.608034px;}
.y57{bottom:380.026500px;}
.yf1{bottom:382.188594px;}
.yf{bottom:388.075500px;}
.ycc{bottom:390.106650px;}
.y107{bottom:391.549380px;}
.y156{bottom:391.916220px;}
.y190{bottom:394.055484px;}
.y93{bottom:394.436292px;}
.y3e{bottom:395.886090px;}
.y56{bottom:396.586500px;}
.yf0{bottom:399.466650px;}
.y106{bottom:408.828912px;}
.y55{bottom:409.186500px;}
.y155{bottom:409.195752px;}
.y18f{bottom:409.537320px;}
.ye{bottom:409.675500px;}
.ycb{bottom:410.289432px;}
.y92{bottom:411.714348px;}
.y3d{bottom:413.165622px;}
.yef{bottom:416.026500px;}
.y18e{bottom:425.017824px;}
.y105{bottom:426.108444px;}
.y154{bottom:426.473808px;}
.yca{bottom:427.568964px;}
.y91{bottom:428.992404px;}
.y3c{bottom:430.445154px;}
.yee{bottom:432.226500px;}
.y18d{bottom:440.499660px;}
.y104{bottom:443.386500px;}
.y153{bottom:443.753340px;}
.yc9{bottom:444.486876px;}
.y90{bottom:446.271936px;}
.y3b{bottom:447.724686px;}
.y18c{bottom:455.980164px;}
.y103{bottom:460.666650px;}
.y152{bottom:461.032872px;}
.yc8{bottom:461.766408px;}
.y8f{bottom:463.551468px;}
.y3a{bottom:465.002742px;}
.yd{bottom:469.579500px;}
.y18b{bottom:471.460668px;}
.y102{bottom:477.225996px;}
.y151{bottom:477.950784px;}
.yc7{bottom:479.044464px;}
.y8e{bottom:480.469380px;}
.y39{bottom:482.282274px;}
.y18a{bottom:486.942504px;}
.yc{bottom:491.179500px;}
.y101{bottom:492.706500px;}
.y150{bottom:495.230316px;}
.yc6{bottom:496.323996px;}
.y8d{bottom:497.748912px;}
.y38{bottom:499.561806px;}
.y189{bottom:502.782648px;}
.y100{bottom:505.306500px;}
.y14f{bottom:512.509848px;}
.yb{bottom:512.779500px;}
.yc5{bottom:513.603528px;}
.y8c{bottom:515.028444px;}
.y37{bottom:516.841338px;}
.y188{bottom:518.263152px;}
.y14e{bottom:529.789380px;}
.yc4{bottom:530.883060px;}
.y8b{bottom:532.306500px;}
.y187{bottom:533.743656px;}
.y36{bottom:534.120870px;}
.ya{bottom:534.379500px;}
.y14d{bottom:547.068912px;}
.y121{bottom:548.146500px;}
.yc3{bottom:548.162592px;}
.y186{bottom:549.225492px;}
.y8a{bottom:550.306500px;}
.y35{bottom:551.040258px;}
.y9{bottom:555.979500px;}
.y14c{bottom:564.348444px;}
.y185{bottom:564.705996px;}
.y120{bottom:565.441584px;}
.yc2{bottom:565.442124px;}
.y34{bottom:568.318314px;}
.y89{bottom:570.492066px;}
.y8{bottom:577.579500px;}
.y184{bottom:580.186500px;}
.y14b{bottom:581.626500px;}
.y11f{bottom:582.721116px;}
.yc1{bottom:582.721656px;}
.y33{bottom:585.596370px;}
.y88{bottom:587.771598px;}
.y12c{bottom:588.826758px;}
.y183{bottom:597.106500px;}
.y14a{bottom:598.923600px;}
.y7{bottom:599.179500px;}
.y11e{bottom:600.000648px;}
.yc0{bottom:600.001188px;}
.y32{bottom:602.874426px;}
.y12b{bottom:604.308594px;}
.y87{bottom:604.690986px;}
.y54{bottom:606.466500px;}
.yff{bottom:611.868840px;}
.y149{bottom:616.203132px;}
.y12a{bottom:616.906650px;}
.y182{bottom:617.274030px;}
.y11d{bottom:617.280180px;}
.ybf{bottom:617.280720px;}
.y31{bottom:620.152482px;}
.y86{bottom:621.969042px;}
.y53{bottom:623.790822px;}
.yed{bottom:626.266500px;}
.yfe{bottom:629.148372px;}
.y148{bottom:633.481188px;}
.y181{bottom:634.193418px;}
.y11c{bottom:634.198092px;}
.ybe{bottom:634.200108px;}
.y30{bottom:637.430538px;}
.y85{bottom:639.248574px;}
.y52{bottom:641.070354px;}
.yec{bottom:642.826650px;}
.yfd{bottom:646.427904px;}
.y147{bottom:650.760720px;}
.y180{bottom:651.472950px;}
.y11b{bottom:651.476148px;}
.ybd{bottom:651.478164px;}
.y2f{bottom:654.708594px;}
.yeb{bottom:655.426500px;}
.y84{bottom:656.528106px;}
.y51{bottom:658.349886px;}
.yfc{bottom:663.707436px;}
.y146{bottom:668.040252px;}
.y17f{bottom:668.751006px;}
.y11a{bottom:668.754204px;}
.ybc{bottom:668.756220px;}
.y2e{bottom:671.986650px;}
.y83{bottom:673.806162px;}
.y50{bottom:675.267798px;}
.yfb{bottom:680.986968px;}
.y145{bottom:684.958164px;}
.y17e{bottom:686.030538px;}
.y119{bottom:686.033736px;}
.ybb{bottom:686.034276px;}
.y5{bottom:689.592150px;}
.y2d{bottom:689.626500px;}
.y82{bottom:691.085694px;}
.y4f{bottom:692.547330px;}
.yfa{bottom:698.266500px;}
.y144{bottom:702.236220px;}
.y17d{bottom:703.308594px;}
.yba{bottom:703.312332px;}
.y118{bottom:703.313268px;}
.y81{bottom:708.365226px;}
.y2c{bottom:709.788594px;}
.yf9{bottom:714.826650px;}
.y143{bottom:719.514276px;}
.y4{bottom:719.592750px;}
.y17c{bottom:720.586650px;}
.yb9{bottom:720.590388px;}
.y117{bottom:720.591324px;}
.y80{bottom:725.643282px;}
.y2b{bottom:727.066650px;}
.yf8{bottom:727.426500px;}
.y142{bottom:736.792332px;}
.yb8{bottom:737.868444px;}
.y116{bottom:737.869380px;}
.y17b{bottom:738.586650px;}
.y7f{bottom:742.922814px;}
.y2a{bottom:744.354966px;}
.y141{bottom:754.070388px;}
.yb7{bottom:755.146500px;}
.y115{bottom:755.148912px;}
.y17a{bottom:758.386500px;}
.y7e{bottom:760.200870px;}
.y29{bottom:761.633022px;}
.y140{bottom:771.348444px;}
.y114{bottom:772.428444px;}
.yb6{bottom:772.786500px;}
.y179{bottom:775.714596px;}
.y7d{bottom:777.478926px;}
.y28{bottom:778.912554px;}
.y3{bottom:781.284450px;}
.y13f{bottom:788.626500px;}
.y113{bottom:789.706500px;}
.yb5{bottom:792.977064px;}
.y178{bottom:792.994128px;}
.y7c{bottom:794.398314px;}
.y27{bottom:796.192086px;}
.y13e{bottom:806.266500px;}
.y112{bottom:806.986500px;}
.yb4{bottom:810.255120px;}
.y177{bottom:810.273660px;}
.y2{bottom:811.285050px;}
.y7b{bottom:811.676370px;}
.y26{bottom:813.471618px;}
.y1c6{bottom:823.517340px;}
.y1b4{bottom:823.531992px;}
.y111{bottom:823.546500px;}
.y13d{bottom:826.426500px;}
.yb3{bottom:827.533176px;}
.y176{bottom:827.551716px;}
.y7a{bottom:828.954426px;}
.y25{bottom:830.749674px;}
.y110{bottom:836.146500px;}
.y1c5{bottom:838.999176px;}
.y1b3{bottom:839.013828px;}
.yea{bottom:841.186500px;}
.y1{bottom:841.285650px;}
.y13c{bottom:842.986650px;}
.yb2{bottom:844.811232px;}
.y175{bottom:844.831248px;}
.y79{bottom:846.232482px;}
.y24{bottom:848.029206px;}
.y1c4{bottom:854.479680px;}
.y1b2{bottom:854.494332px;}
.y13b{bottom:855.946500px;}
.ye9{bottom:858.485544px;}
.y129{bottom:860.625786px;}
.yb1{bottom:862.089288px;}
.y174{bottom:862.110780px;}
.y78{bottom:863.510538px;}
.y23{bottom:864.948594px;}
.y1c3{bottom:869.960184px;}
.y1b1{bottom:869.974836px;}
.ye8{bottom:875.763600px;}
.y128{bottom:876.106290px;}
.yb0{bottom:879.367344px;}
.y173{bottom:879.390312px;}
.y77{bottom:880.788594px;}
.y22{bottom:882.226650px;}
.y1c2{bottom:885.442020px;}
.y1b0{bottom:885.456672px;}
.y127{bottom:889.066650px;}
.ye7{bottom:893.041656px;}
.yaf{bottom:896.645400px;}
.y172{bottom:896.668368px;}
.y76{bottom:898.066650px;}
.y1c1{bottom:900.922524px;}
.y1af{bottom:900.937176px;}
.ye6{bottom:910.319712px;}
.yae{bottom:913.923456px;}
.y171{bottom:913.947900px;}
.y75{bottom:915.346500px;}
.y1c0{bottom:916.403028px;}
.y1ae{bottom:916.417680px;}
.y21{bottom:917.506500px;}
.ye5{bottom:927.597768px;}
.yad{bottom:931.201512px;}
.y170{bottom:931.227432px;}
.y74{bottom:931.906146px;}
.y1bf{bottom:932.243172px;}
.y1ad{bottom:932.257824px;}
.y20{bottom:934.066002px;}
.ye4{bottom:944.875824px;}
.y73{bottom:947.386650px;}
.y1be{bottom:947.725008px;}
.y1ac{bottom:947.739660px;}
.yac{bottom:948.122376px;}
.y16f{bottom:948.146820px;}
.y1f{bottom:949.906146px;}
.y72{bottom:959.986500px;}
.ye3{bottom:962.155356px;}
.y1bd{bottom:963.205512px;}
.y1ab{bottom:963.220164px;}
.y1e{bottom:965.386650px;}
.yab{bottom:965.400432px;}
.y16e{bottom:965.424876px;}
.y1bc{bottom:978.686016px;}
.y1aa{bottom:978.700668px;}
.ye2{bottom:979.434888px;}
.y1d{bottom:981.588624px;}
.yaa{bottom:982.678488px;}
.y16d{bottom:982.702932px;}
.y1bb{bottom:994.167852px;}
.y1a9{bottom:994.182504px;}
.ye1{bottom:996.712944px;}
.y1c{bottom:998.866680px;}
.ya9{bottom:999.958020px;}
.y16c{bottom:999.980988px;}
.y1ba{bottom:1009.648356px;}
.y1a8{bottom:1009.663008px;}
.ye0{bottom:1013.991000px;}
.y1b{bottom:1016.866500px;}
.y71{bottom:1017.226500px;}
.ya8{bottom:1017.237552px;}
.y16b{bottom:1017.259044px;}
.y1b9{bottom:1025.128860px;}
.y1a7{bottom:1025.143512px;}
.ydf{bottom:1030.910388px;}
.y70{bottom:1034.512332px;}
.ya7{bottom:1034.515608px;}
.y16a{bottom:1034.537100px;}
.y1b8{bottom:1040.610696px;}
.y1a6{bottom:1040.625348px;}
.y1a{bottom:1040.626650px;}
.yde{bottom:1048.188444px;}
.y6f{bottom:1051.790388px;}
.ya6{bottom:1051.795140px;}
.y169{bottom:1051.815156px;}
.y1b7{bottom:1056.450840px;}
.y1a5{bottom:1056.465492px;}
.y19{bottom:1061.506650px;}
.ydd{bottom:1065.466500px;}
.y6e{bottom:1069.068444px;}
.ya5{bottom:1069.074672px;}
.y168{bottom:1069.093212px;}
.y1b6{bottom:1071.931344px;}
.y1a4{bottom:1071.945996px;}
.y18{bottom:1082.386650px;}
.ydc{bottom:1083.466500px;}
.y6d{bottom:1086.346500px;}
.ya4{bottom:1086.354204px;}
.y167{bottom:1086.372744px;}
.y1b5{bottom:1087.411848px;}
.y1a3{bottom:1087.426500px;}
.y6b{bottom:1103.986500px;}
.y15{bottom:1106.866770px;}
.y6a{bottom:1123.426626px;}
.y14{bottom:1126.666950px;}
.y69{bottom:1137.106446px;}
.y68{bottom:1155.826524px;}
.y13{bottom:1160.866950px;}
.y67{bottom:1175.986884px;}
.y12{bottom:1197.587100px;}
.h10{height:34.595859px;}
.h11{height:34.619062px;}
.h6{height:35.640000px;}
.h9{height:38.789297px;}
.h14{height:38.815312px;}
.ha{height:39.350391px;}
.h7{height:42.982734px;}
.h12{height:43.011562px;}
.h13{height:45.448891px;}
.hf{height:45.462954px;}
.hb{height:47.988281px;}
.h5{height:52.148438px;}
.he{height:52.417969px;}
.h8{height:53.568984px;}
.hd{height:58.537207px;}
.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;}
.x1b{left:116.921997px;}
.x8{left:131.095728px;}
.x17{left:135.447450px;}
.x3{left:161.575500px;}
.x7{left:204.891000px;}
.x12{left:264.409500px;}
.x2{left:284.883000px;}
.x1{left:286.476000px;}
.x16{left:364.647000px;}
.x6{left:374.247000px;}
.x11{left:379.998000px;}
.x13{left:391.822500px;}
.xe{left:421.414500px;}
.xd{left:423.072000px;}
.x4{left:433.944000px;}
.x9{left:446.922000px;}
.x1c{left:465.013211px;}
.xa{left:473.488525px;}
.x1a{left:481.961592px;}
.x18{left:500.488375px;}
.x19{left:527.488371px;}
.xc{left:629.449500px;}
.x15{left:741.124500px;}
.x14{left:744.097500px;}
.xb{left:780.996150px;}
.x10{left:785.391000px;}
.xf{left:787.176000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.761515pt;}
.v1{vertical-align:24.863467pt;}
.v2{vertical-align:26.872448pt;}
.ls30{letter-spacing:-0.019200pt;}
.ls31{letter-spacing:-0.012800pt;}
.ls38{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.010667pt;}
.ls5{letter-spacing:0.044928pt;}
.ls7{letter-spacing:0.058752pt;}
.ls40{letter-spacing:0.123136pt;}
.ls26{letter-spacing:0.194304pt;}
.ls2e{letter-spacing:0.211200pt;}
.ls3{letter-spacing:0.230144pt;}
.ls22{letter-spacing:0.230912pt;}
.ls32{letter-spacing:0.241408pt;}
.ls44{letter-spacing:0.246272pt;}
.ls37{letter-spacing:0.246656pt;}
.ls25{letter-spacing:0.247893pt;}
.ls33{letter-spacing:0.257152pt;}
.ls43{letter-spacing:0.260480pt;}
.ls46{letter-spacing:0.265216pt;}
.ls49{letter-spacing:0.269952pt;}
.ls41{letter-spacing:0.274688pt;}
.ls48{letter-spacing:0.279424pt;}
.ls3a{letter-spacing:0.283392pt;}
.ls42{letter-spacing:0.284160pt;}
.lsa{letter-spacing:0.288896pt;}
.ls9{letter-spacing:0.293632pt;}
.ls45{letter-spacing:0.298368pt;}
.ls2f{letter-spacing:0.303104pt;}
.ls34{letter-spacing:0.304384pt;}
.ls1d{letter-spacing:0.307840pt;}
.ls2b{letter-spacing:0.309632pt;}
.ls39{letter-spacing:0.312576pt;}
.ls3c{letter-spacing:0.317312pt;}
.ls35{letter-spacing:0.322048pt;}
.ls47{letter-spacing:0.326784pt;}
.ls3e{letter-spacing:0.330624pt;}
.ls20{letter-spacing:0.331520pt;}
.ls18{letter-spacing:0.335872pt;}
.ls36{letter-spacing:0.340992pt;}
.ls15{letter-spacing:0.341120pt;}
.ls3d{letter-spacing:0.346368pt;}
.ls24{letter-spacing:0.351616pt;}
.ls2d{letter-spacing:0.355840pt;}
.ls23{letter-spacing:0.356864pt;}
.ls2{letter-spacing:0.361173pt;}
.ls19{letter-spacing:0.362112pt;}
.ls11{letter-spacing:0.367360pt;}
.ls8{letter-spacing:0.372608pt;}
.ls12{letter-spacing:0.377856pt;}
.ls6{letter-spacing:0.383104pt;}
.ls1c{letter-spacing:0.388352pt;}
.ls17{letter-spacing:0.393600pt;}
.ls13{letter-spacing:0.398848pt;}
.ls16{letter-spacing:0.404096pt;}
.ls1a{letter-spacing:0.409344pt;}
.lse{letter-spacing:0.414592pt;}
.ls10{letter-spacing:0.419840pt;}
.ls1b{letter-spacing:0.425088pt;}
.lsf{letter-spacing:0.430336pt;}
.ls28{letter-spacing:0.435584pt;}
.lsc{letter-spacing:0.440832pt;}
.lsd{letter-spacing:0.446080pt;}
.ls1e{letter-spacing:0.451328pt;}
.ls2a{letter-spacing:0.456576pt;}
.ls1f{letter-spacing:0.461824pt;}
.ls2c{letter-spacing:0.467072pt;}
.ls14{letter-spacing:0.472320pt;}
.ls29{letter-spacing:0.477568pt;}
.ls27{letter-spacing:0.482816pt;}
.ls3b{letter-spacing:0.488064pt;}
.ls3f{letter-spacing:0.514304pt;}
.ls4{letter-spacing:0.519552pt;}
.lsb{letter-spacing:0.524800pt;}
.ws6{word-spacing:-15.114240pt;}
.ws7{word-spacing:-15.035520pt;}
.wsf6{word-spacing:-13.412352pt;}
.ws2{word-spacing:-11.409067pt;}
.ws5{word-spacing:-9.666432pt;}
.ws4{word-spacing:-9.652608pt;}
.ws3{word-spacing:-8.896000pt;}
.ws56{word-spacing:-7.472640pt;}
.wsb{word-spacing:-0.293888pt;}
.wsf{word-spacing:-0.209920pt;}
.ws9b{word-spacing:-0.183680pt;}
.ws1b{word-spacing:-0.178432pt;}
.ws1a{word-spacing:-0.173184pt;}
.wscb{word-spacing:-0.165760pt;}
.ws29{word-spacing:-0.157440pt;}
.ws44{word-spacing:-0.152192pt;}
.wsed{word-spacing:-0.146944pt;}
.ws5e{word-spacing:-0.146816pt;}
.wsf7{word-spacing:-0.142080pt;}
.wsc9{word-spacing:-0.141696pt;}
.ws45{word-spacing:-0.137344pt;}
.ws8{word-spacing:-0.132608pt;}
.wsc{word-spacing:-0.131200pt;}
.wsca{word-spacing:-0.127872pt;}
.wsd{word-spacing:-0.125952pt;}
.wsd0{word-spacing:-0.123136pt;}
.ws85{word-spacing:-0.120704pt;}
.wsd4{word-spacing:-0.118400pt;}
.ws114{word-spacing:-0.115456pt;}
.ws9{word-spacing:-0.113664pt;}
.ws5d{word-spacing:-0.110208pt;}
.wsec{word-spacing:-0.104192pt;}
.ws10f{word-spacing:-0.099712pt;}
.wse{word-spacing:-0.094720pt;}
.ws15a{word-spacing:-0.089984pt;}
.ws132{word-spacing:-0.085248pt;}
.ws58{word-spacing:-0.084480pt;}
.wsaf{word-spacing:-0.078720pt;}
.ws57{word-spacing:-0.076032pt;}
.wsa8{word-spacing:-0.073472pt;}
.wsa{word-spacing:-0.066816pt;}
.ws0{word-spacing:-0.064000pt;}
.ws59{word-spacing:-0.059136pt;}
.wsf1{word-spacing:-0.005248pt;}
.ws1{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.006400pt;}
.ws74{word-spacing:0.012800pt;}
.wseb{word-spacing:0.026240pt;}
.wsbc{word-spacing:0.041984pt;}
.ws14{word-spacing:0.052480pt;}
.wsb8{word-spacing:0.146944pt;}
.ws15{word-spacing:0.183680pt;}
.ws47{word-spacing:0.194176pt;}
.wsb9{word-spacing:0.236160pt;}
.wsc2{word-spacing:0.257152pt;}
.ws43{word-spacing:0.293888pt;}
.wscc{word-spacing:0.393600pt;}
.ws4f{word-spacing:0.718976pt;}
.wsea{word-spacing:0.855424pt;}
.wsf9{word-spacing:0.944640pt;}
.wsf2{word-spacing:1.028608pt;}
.ws150{word-spacing:1.155584pt;}
.wsc5{word-spacing:1.233280pt;}
.ws93{word-spacing:1.270016pt;}
.ws31{word-spacing:1.359232pt;}
.ws23{word-spacing:1.611136pt;}
.wsc3{word-spacing:1.794816pt;}
.ws14a{word-spacing:1.903872pt;}
.ws11{word-spacing:2.072960pt;}
.ws10{word-spacing:2.088704pt;}
.wsc8{word-spacing:2.120192pt;}
.ws13f{word-spacing:2.221184pt;}
.ws42{word-spacing:2.303872pt;}
.ws155{word-spacing:2.325376pt;}
.ws14b{word-spacing:2.368000pt;}
.ws84{word-spacing:2.387840pt;}
.wse9{word-spacing:2.393088pt;}
.ws12f{word-spacing:2.647424pt;}
.ws130{word-spacing:2.671104pt;}
.wsc0{word-spacing:2.686976pt;}
.wsbd{word-spacing:2.723712pt;}
.wsd8{word-spacing:2.734208pt;}
.ws11c{word-spacing:2.744704pt;}
.ws3e{word-spacing:2.749952pt;}
.ws14e{word-spacing:3.135232pt;}
.ws16{word-spacing:3.154048pt;}
.ws34{word-spacing:3.159296pt;}
.wsa9{word-spacing:3.169792pt;}
.ws24{word-spacing:3.206528pt;}
.wsc6{word-spacing:3.358720pt;}
.wsfc{word-spacing:3.395456pt;}
.ws126{word-spacing:3.531904pt;}
.wse5{word-spacing:3.558144pt;}
.wsab{word-spacing:3.631616pt;}
.wsfd{word-spacing:3.720832pt;}
.wsbe{word-spacing:3.857280pt;}
.ws103{word-spacing:3.862528pt;}
.ws100{word-spacing:3.878272pt;}
.wsad{word-spacing:3.941248pt;}
.wsb6{word-spacing:4.046208pt;}
.ws5f{word-spacing:4.056704pt;}
.ws37{word-spacing:4.172160pt;}
.ws22{word-spacing:4.219392pt;}
.ws13{word-spacing:4.250880pt;}
.ws12{word-spacing:4.266624pt;}
.wse0{word-spacing:4.277120pt;}
.wsf5{word-spacing:4.439808pt;}
.wsb3{word-spacing:4.471296pt;}
.wse8{word-spacing:4.487040pt;}
.ws32{word-spacing:4.492288pt;}
.ws110{word-spacing:4.670720pt;}
.ws13e{word-spacing:4.949120pt;}
.wsdf{word-spacing:5.001344pt;}
.ws159{word-spacing:5.095936pt;}
.ws92{word-spacing:5.101056pt;}
.ws19{word-spacing:5.316224pt;}
.wsf3{word-spacing:5.331968pt;}
.ws12d{word-spacing:5.441664pt;}
.ws151{word-spacing:5.597952pt;}
.ws9a{word-spacing:5.631104pt;}
.ws6d{word-spacing:5.678336pt;}
.wsc7{word-spacing:5.688832pt;}
.ws10b{word-spacing:5.694080pt;}
.ws2a{word-spacing:5.709824pt;}
.wsfb{word-spacing:5.720320pt;}
.ws65{word-spacing:5.741312pt;}
.ws83{word-spacing:5.757056pt;}
.wsba{word-spacing:5.762304pt;}
.ws18{word-spacing:5.772800pt;}
.ws12a{word-spacing:5.851520pt;}
.ws154{word-spacing:6.014720pt;}
.wse2{word-spacing:6.098176pt;}
.ws6a{word-spacing:6.166400pt;}
.wsee{word-spacing:6.218880pt;}
.ws112{word-spacing:6.376320pt;}
.ws131{word-spacing:6.474112pt;}
.ws152{word-spacing:6.507264pt;}
.ws4d{word-spacing:6.706944pt;}
.ws136{word-spacing:6.824576pt;}
.wsd5{word-spacing:6.995584pt;}
.ws118{word-spacing:7.378688pt;}
.ws86{word-spacing:7.431168pt;}
.ws33{word-spacing:7.520384pt;}
.wse1{word-spacing:7.546624pt;}
.ws39{word-spacing:7.551872pt;}
.ws13a{word-spacing:7.705472pt;}
.ws72{word-spacing:7.719808pt;}
.ws156{word-spacing:7.861760pt;}
.ws134{word-spacing:7.875968pt;}
.wsff{word-spacing:7.877248pt;}
.ws10c{word-spacing:7.924480pt;}
.ws41{word-spacing:8.045184pt;}
.ws64{word-spacing:8.087168pt;}
.ws3f{word-spacing:8.129152pt;}
.ws61{word-spacing:8.218368pt;}
.ws6e{word-spacing:8.244608pt;}
.ws129{word-spacing:8.255104pt;}
.wsa4{word-spacing:8.265600pt;}
.wsfe{word-spacing:8.281344pt;}
.ws140{word-spacing:8.292736pt;}
.wsbf{word-spacing:8.632960pt;}
.ws78{word-spacing:8.638208pt;}
.wsa2{word-spacing:8.732672pt;}
.ws40{word-spacing:8.743168pt;}
.ws14f{word-spacing:8.870528pt;}
.ws17{word-spacing:8.937344pt;}
.wsa3{word-spacing:8.979328pt;}
.ws6f{word-spacing:9.126272pt;}
.ws52{word-spacing:9.147264pt;}
.wsae{word-spacing:9.152512pt;}
.ws51{word-spacing:9.184000pt;}
.ws1f{word-spacing:9.199744pt;}
.ws71{word-spacing:9.220736pt;}
.ws70{word-spacing:9.236480pt;}
.ws76{word-spacing:9.315200pt;}
.wse3{word-spacing:9.567104pt;}
.ws111{word-spacing:9.829504pt;}
.ws4b{word-spacing:9.866240pt;}
.ws5b{word-spacing:9.876736pt;}
.ws4c{word-spacing:9.902976pt;}
.ws135{word-spacing:9.997696pt;}
.ws7d{word-spacing:10.217856pt;}
.wsf8{word-spacing:10.417280pt;}
.ws14c{word-spacing:10.471296pt;}
.wsd3{word-spacing:10.864384pt;}
.ws8d{word-spacing:10.905344pt;}
.ws12c{word-spacing:11.082240pt;}
.ws1d{word-spacing:11.634816pt;}
.wsd7{word-spacing:11.655808pt;}
.ws69{word-spacing:12.044160pt;}
.wsf4{word-spacing:12.101888pt;}
.ws68{word-spacing:12.175360pt;}
.ws11d{word-spacing:12.437760pt;}
.ws35{word-spacing:12.626688pt;}
.ws143{word-spacing:12.659328pt;}
.ws6c{word-spacing:12.668672pt;}
.ws53{word-spacing:13.072768pt;}
.ws138{word-spacing:13.099776pt;}
.ws91{word-spacing:13.104256pt;}
.wsa1{word-spacing:13.125248pt;}
.ws12e{word-spacing:13.170816pt;}
.ws109{word-spacing:13.329920pt;}
.ws60{word-spacing:13.555584pt;}
.wsce{word-spacing:13.560832pt;}
.wsc4{word-spacing:13.602816pt;}
.ws13b{word-spacing:13.772288pt;}
.ws62{word-spacing:13.859968pt;}
.wsde{word-spacing:13.970176pt;}
.wsdd{word-spacing:13.985920pt;}
.wsd1{word-spacing:14.279808pt;}
.ws1e{word-spacing:14.531712pt;}
.ws48{word-spacing:14.552704pt;}
.wsd6{word-spacing:14.589440pt;}
.ws12b{word-spacing:14.710144pt;}
.ws7e{word-spacing:15.093248pt;}
.ws27{word-spacing:15.796480pt;}
.ws97{word-spacing:16.667648pt;}
.ws124{word-spacing:17.082240pt;}
.ws9e{word-spacing:17.134720pt;}
.ws55{word-spacing:17.145216pt;}
.ws3d{word-spacing:17.150464pt;}
.wsfa{word-spacing:17.229184pt;}
.ws158{word-spacing:17.423744pt;}
.ws147{word-spacing:17.532672pt;}
.ws11b{word-spacing:17.591296pt;}
.ws88{word-spacing:17.607040pt;}
.ws2b{word-spacing:17.633280pt;}
.ws15b{word-spacing:17.774208pt;}
.wse7{word-spacing:17.984896pt;}
.ws82{word-spacing:18.126592pt;}
.ws73{word-spacing:18.535936pt;}
.ws102{word-spacing:18.614656pt;}
.ws127{word-spacing:18.667136pt;}
.wscf{word-spacing:18.698624pt;}
.ws8c{word-spacing:18.766848pt;}
.ws9d{word-spacing:19.003008pt;}
.ws3c{word-spacing:19.029248pt;}
.ws6b{word-spacing:19.081728pt;}
.ws146{word-spacing:19.251840pt;}
.ws46{word-spacing:19.517312pt;}
.ws20{word-spacing:19.543552pt;}
.ws21{word-spacing:19.627520pt;}
.ws11a{word-spacing:20.556416pt;}
.wsc1{word-spacing:20.887040pt;}
.ws113{word-spacing:21.175680pt;}
.ws11f{word-spacing:21.201920pt;}
.ws133{word-spacing:21.359360pt;}
.wsef{word-spacing:22.188544pt;}
.ws99{word-spacing:22.241024pt;}
.ws77{word-spacing:22.293504pt;}
.ws9c{word-spacing:22.550656pt;}
.ws89{word-spacing:22.561152pt;}
.ws36{word-spacing:22.634624pt;}
.ws54{word-spacing:22.996736pt;}
.ws148{word-spacing:23.305856pt;}
.wse4{word-spacing:23.458560pt;}
.ws67{word-spacing:23.537280pt;}
.ws66{word-spacing:23.563520pt;}
.ws96{word-spacing:23.673728pt;}
.ws2c{word-spacing:24.487168pt;}
.ws2e{word-spacing:24.539648pt;}
.ws2d{word-spacing:24.560640pt;}
.ws5a{word-spacing:24.697088pt;}
.ws153{word-spacing:25.129216pt;}
.ws157{word-spacing:25.138688pt;}
.ws75{word-spacing:25.426560pt;}
.wsb4{word-spacing:25.615488pt;}
.ws10e{word-spacing:25.762432pt;}
.ws4e{word-spacing:25.788672pt;}
.wsd9{word-spacing:25.814912pt;}
.ws28{word-spacing:25.893632pt;}
.ws90{word-spacing:25.961856pt;}
.ws63{word-spacing:26.003840pt;}
.wsdb{word-spacing:26.407936pt;}
.ws120{word-spacing:26.413184pt;}
.ws80{word-spacing:26.418432pt;}
.ws4a{word-spacing:26.428928pt;}
.wsda{word-spacing:26.964224pt;}
.ws79{word-spacing:26.969472pt;}
.ws7a{word-spacing:26.974720pt;}
.wsa0{word-spacing:26.990464pt;}
.wsd2{word-spacing:27.179392pt;}
.ws106{word-spacing:27.809152pt;}
.ws98{word-spacing:28.202752pt;}
.ws108{word-spacing:28.270976pt;}
.wsb2{word-spacing:28.491392pt;}
.ws115{word-spacing:28.559616pt;}
.ws144{word-spacing:29.083776pt;}
.ws142{word-spacing:29.358464pt;}
.wsbb{word-spacing:29.399296pt;}
.ws7c{word-spacing:29.535744pt;}
.ws26{word-spacing:30.034304pt;}
.ws107{word-spacing:30.307200pt;}
.ws5c{word-spacing:30.664064pt;}
.ws125{word-spacing:30.821504pt;}
.ws7f{word-spacing:30.952704pt;}
.ws13c{word-spacing:31.295488pt;}
.ws123{word-spacing:31.834368pt;}
.wsb7{word-spacing:32.338176pt;}
.ws81{word-spacing:32.359168pt;}
.ws8a{word-spacing:32.820992pt;}
.ws145{word-spacing:33.142528pt;}
.wsa7{word-spacing:33.272320pt;}
.wsaa{word-spacing:33.497984pt;}
.ws95{word-spacing:33.602944pt;}
.ws25{word-spacing:33.828608pt;}
.ws9f{word-spacing:33.860096pt;}
.ws3a{word-spacing:34.169728pt;}
.wsf0{word-spacing:34.237952pt;}
.ws3b{word-spacing:35.235072pt;}
.ws94{word-spacing:35.334784pt;}
.ws30{word-spacing:36.400128pt;}
.ws2f{word-spacing:36.421120pt;}
.wsb0{word-spacing:36.484096pt;}
.ws101{word-spacing:38.305152pt;}
.ws8b{word-spacing:38.326144pt;}
.ws121{word-spacing:38.336640pt;}
.ws10d{word-spacing:38.551808pt;}
.wscd{word-spacing:39.029376pt;}
.wse6{word-spacing:40.645760pt;}
.ws117{word-spacing:42.214912pt;}
.ws11e{word-spacing:42.487808pt;}
.ws104{word-spacing:42.708224pt;}
.ws105{word-spacing:43.096576pt;}
.ws149{word-spacing:44.035328pt;}
.ws50{word-spacing:44.912384pt;}
.ws7b{word-spacing:45.720576pt;}
.ws49{word-spacing:46.177152pt;}
.ws116{word-spacing:47.106048pt;}
.ws8f{word-spacing:47.148032pt;}
.ws119{word-spacing:47.788288pt;}
.ws87{word-spacing:48.386560pt;}
.wsb1{word-spacing:49.100288pt;}
.ws8e{word-spacing:51.068288pt;}
.wsa5{word-spacing:52.144128pt;}
.ws122{word-spacing:54.615936pt;}
.ws38{word-spacing:56.027648pt;}
.ws137{word-spacing:56.453120pt;}
.ws128{word-spacing:57.754240pt;}
.wsb5{word-spacing:58.336768pt;}
.wsac{word-spacing:80.483328pt;}
.ws10a{word-spacing:81.664128pt;}
.ws14d{word-spacing:84.139776pt;}
.ws139{word-spacing:85.678976pt;}
.wsdc{word-spacing:94.526976pt;}
.ws141{word-spacing:127.516800pt;}
.wsa6{word-spacing:143.496064pt;}
.ws13d{word-spacing:168.682112pt;}
._13{margin-left:-42.460672pt;}
._4{margin-left:-17.792000pt;}
._9{margin-left:-15.980800pt;}
._8{margin-left:-9.785600pt;}
._2{margin-left:-8.273067pt;}
._7{margin-left:-7.187200pt;}
._0{margin-left:-5.545792pt;}
._6{margin-left:-3.532800pt;}
._3{margin-left:-1.344000pt;}
._5{width:0.918592pt;}
._b{width:9.163008pt;}
._e{width:10.322816pt;}
._1{width:11.409067pt;}
._12{width:17.428608pt;}
._c{width:23.484800pt;}
._10{width:28.732800pt;}
._11{width:32.196480pt;}
._d{width:34.678784pt;}
._a{width:35.917312pt;}
._f{width:49.808768pt;}
.fsa{font-size:25.600000pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.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;}
.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;}
.y6c{bottom:68.681333pt;}
.y1a2{bottom:101.938197pt;}
.ya3{bottom:102.286581pt;}
.y166{bottom:102.944629pt;}
.y4e{bottom:106.797467pt;}
.y66{bottom:107.731221pt;}
.y6{bottom:113.023333pt;}
.y13a{bottom:114.441333pt;}
.y1a1{bottom:115.698645pt;}
.ydb{bottom:116.056603pt;}
.ya2{bottom:117.646165pt;}
.y165{bottom:118.302901pt;}
.y4d{bottom:122.155739pt;}
.y65{bottom:123.090805pt;}
.y1a0{bottom:129.460277pt;}
.y139{bottom:129.807963pt;}
.yda{bottom:131.414875pt;}
.ya1{bottom:133.005749pt;}
.y164{bottom:133.661173pt;}
.y4c{bottom:137.195195pt;}
.y64{bottom:138.450389pt;}
.y19f{bottom:143.220725pt;}
.y138{bottom:145.167547pt;}
.yd9{bottom:146.773147pt;}
.ya0{bottom:148.043893pt;}
.y163{bottom:149.020757pt;}
.y4b{bottom:152.553467pt;}
.y63{bottom:153.809973pt;}
.y19e{bottom:156.981173pt;}
.y137{bottom:160.527131pt;}
.yd8{bottom:162.131419pt;}
.y9f{bottom:163.403477pt;}
.y162{bottom:164.380341pt;}
.y4a{bottom:167.911739pt;}
.y62{bottom:169.169557pt;}
.y19d{bottom:170.742805pt;}
.y136{bottom:175.886715pt;}
.yd7{bottom:177.489691pt;}
.y9e{bottom:178.763061pt;}
.y161{bottom:179.738613pt;}
.y126{bottom:181.963195pt;}
.y49{bottom:183.270011pt;}
.y61{bottom:184.207701pt;}
.y19c{bottom:184.503253pt;}
.y135{bottom:191.246299pt;}
.yd6{bottom:192.847963pt;}
.y9d{bottom:194.121333pt;}
.y160{bottom:195.098197pt;}
.y125{bottom:197.321467pt;}
.y19b{bottom:198.263701pt;}
.y48{bottom:198.628283pt;}
.y60{bottom:199.567285pt;}
.y134{bottom:206.605883pt;}
.yd5{bottom:208.207547pt;}
.y9c{bottom:210.121333pt;}
.y15f{bottom:210.457781pt;}
.y19a{bottom:212.025333pt;}
.y124{bottom:212.040885pt;}
.y47{bottom:213.986555pt;}
.y5f{bottom:214.926869pt;}
.y133{bottom:221.644027pt;}
.yd4{bottom:223.567131pt;}
.y10f{bottom:225.481467pt;}
.y123{bottom:225.801333pt;}
.y15e{bottom:225.817365pt;}
.y199{bottom:226.105461pt;}
.y9b{bottom:228.060053pt;}
.y46{bottom:229.346139pt;}
.y5e{bottom:230.285141pt;}
.y122{bottom:237.001467pt;}
.y132{bottom:237.003611pt;}
.yd3{bottom:238.925403pt;}
.y198{bottom:239.865909pt;}
.y10e{bottom:240.856117pt;}
.y15d{bottom:241.175637pt;}
.y9a{bottom:243.418325pt;}
.yf7{bottom:244.684437pt;}
.y45{bottom:244.705723pt;}
.y5d{bottom:245.644725pt;}
.y131{bottom:252.363195pt;}
.y197{bottom:253.626357pt;}
.yd2{bottom:254.284987pt;}
.y10d{bottom:255.894261pt;}
.y15c{bottom:256.215093pt;}
.y99{bottom:258.457781pt;}
.yf6{bottom:260.044021pt;}
.y44{bottom:260.063995pt;}
.y5c{bottom:261.004309pt;}
.y196{bottom:267.387989pt;}
.y130{bottom:267.721467pt;}
.yd1{bottom:269.644571pt;}
.y10c{bottom:271.252533pt;}
.y15b{bottom:271.573365pt;}
.y98{bottom:273.817365pt;}
.yf5{bottom:275.403605pt;}
.y43{bottom:275.423579pt;}
.y5b{bottom:276.363893pt;}
.y195{bottom:281.148437pt;}
.y12f{bottom:283.081467pt;}
.yd0{bottom:284.682715pt;}
.y10b{bottom:286.610805pt;}
.y15a{bottom:286.932949pt;}
.y97{bottom:289.175637pt;}
.yf4{bottom:290.443061pt;}
.y42{bottom:290.783163pt;}
.y5a{bottom:291.723477pt;}
.y194{bottom:294.908885pt;}
.y12e{bottom:297.801333pt;}
.ycf{bottom:300.042299pt;}
.y10a{bottom:301.969077pt;}
.y159{bottom:302.292533pt;}
.y96{bottom:304.535221pt;}
.yf3{bottom:305.801333pt;}
.y41{bottom:306.142747pt;}
.y59{bottom:307.083061pt;}
.y193{bottom:308.670517pt;}
.y12d{bottom:309.001467pt;}
.yce{bottom:315.401883pt;}
.y109{bottom:317.327349pt;}
.y158{bottom:317.652117pt;}
.y95{bottom:319.893493pt;}
.y40{bottom:321.180891pt;}
.yf2{bottom:321.801333pt;}
.y192{bottom:322.430965pt;}
.y58{bottom:322.441333pt;}
.y10{bottom:325.756000pt;}
.ycd{bottom:330.761467pt;}
.y108{bottom:332.685621pt;}
.y157{bottom:333.010389pt;}
.y94{bottom:335.251765pt;}
.y191{bottom:336.511093pt;}
.y3f{bottom:336.540475pt;}
.y57{bottom:337.801333pt;}
.yf1{bottom:339.723195pt;}
.yf{bottom:344.956000pt;}
.ycc{bottom:346.761467pt;}
.y107{bottom:348.043893pt;}
.y156{bottom:348.369973pt;}
.y190{bottom:350.271541pt;}
.y93{bottom:350.610037pt;}
.y3e{bottom:351.898747pt;}
.y56{bottom:352.521333pt;}
.yf0{bottom:355.081467pt;}
.y106{bottom:363.403477pt;}
.y55{bottom:363.721333pt;}
.y155{bottom:363.729557pt;}
.y18f{bottom:364.033173pt;}
.ye{bottom:364.156000pt;}
.ycb{bottom:364.701717pt;}
.y92{bottom:365.968309pt;}
.y3d{bottom:367.258331pt;}
.yef{bottom:369.801333pt;}
.y18e{bottom:377.793621pt;}
.y105{bottom:378.763061pt;}
.y154{bottom:379.087829pt;}
.yca{bottom:380.061301pt;}
.y91{bottom:381.326581pt;}
.y3c{bottom:382.617915pt;}
.yee{bottom:384.201333pt;}
.y18d{bottom:391.555253pt;}
.y104{bottom:394.121333pt;}
.y153{bottom:394.447413pt;}
.yc9{bottom:395.099445pt;}
.y90{bottom:396.686165pt;}
.y3b{bottom:397.977499pt;}
.y18c{bottom:405.315701pt;}
.y103{bottom:409.481467pt;}
.y152{bottom:409.806997pt;}
.yc8{bottom:410.459029pt;}
.y8f{bottom:412.045749pt;}
.y3a{bottom:413.335771pt;}
.yd{bottom:417.404000pt;}
.y18b{bottom:419.076149pt;}
.y102{bottom:424.200885pt;}
.y151{bottom:424.845141pt;}
.yc7{bottom:425.817301pt;}
.y8e{bottom:427.083893pt;}
.y39{bottom:428.695355pt;}
.y18a{bottom:432.837781pt;}
.yc{bottom:436.604000pt;}
.y101{bottom:437.961333pt;}
.y150{bottom:440.204725pt;}
.yc6{bottom:441.176885pt;}
.y8d{bottom:442.443477pt;}
.y38{bottom:444.054939pt;}
.y189{bottom:446.917909pt;}
.y100{bottom:449.161333pt;}
.y14f{bottom:455.564309pt;}
.yb{bottom:455.804000pt;}
.yc5{bottom:456.536469pt;}
.y8c{bottom:457.803061pt;}
.y37{bottom:459.414523pt;}
.y188{bottom:460.678357pt;}
.y14e{bottom:470.923893pt;}
.yc4{bottom:471.896053pt;}
.y8b{bottom:473.161333pt;}
.y187{bottom:474.438805pt;}
.y36{bottom:474.774107pt;}
.ya{bottom:475.004000pt;}
.y14d{bottom:486.283477pt;}
.y121{bottom:487.241333pt;}
.yc3{bottom:487.255637pt;}
.y186{bottom:488.200437pt;}
.y8a{bottom:489.161333pt;}
.y35{bottom:489.813563pt;}
.y9{bottom:494.204000pt;}
.y14c{bottom:501.643061pt;}
.y185{bottom:501.960885pt;}
.y120{bottom:502.614741pt;}
.yc2{bottom:502.615221pt;}
.y34{bottom:505.171835pt;}
.y89{bottom:507.104059pt;}
.y8{bottom:513.404000pt;}
.y184{bottom:515.721333pt;}
.y14b{bottom:517.001333pt;}
.y11f{bottom:517.974325pt;}
.yc1{bottom:517.974805pt;}
.y33{bottom:520.530107pt;}
.y88{bottom:522.463643pt;}
.y12c{bottom:523.401563pt;}
.y183{bottom:530.761333pt;}
.y14a{bottom:532.376533pt;}
.y7{bottom:532.604000pt;}
.y11e{bottom:533.333909pt;}
.yc0{bottom:533.334389pt;}
.y32{bottom:535.888379pt;}
.y12b{bottom:537.163195pt;}
.y87{bottom:537.503099pt;}
.y54{bottom:539.081333pt;}
.yff{bottom:543.883413pt;}
.y149{bottom:547.736117pt;}
.y12a{bottom:548.361467pt;}
.y182{bottom:548.688027pt;}
.y11d{bottom:548.693493pt;}
.ybf{bottom:548.693973pt;}
.y31{bottom:551.246651pt;}
.y86{bottom:552.861371pt;}
.y53{bottom:554.480731pt;}
.yed{bottom:556.681333pt;}
.yfe{bottom:559.242997pt;}
.y148{bottom:563.094389pt;}
.y181{bottom:563.727483pt;}
.y11c{bottom:563.731637pt;}
.ybe{bottom:563.733429pt;}
.y30{bottom:566.604923pt;}
.y85{bottom:568.220955pt;}
.y52{bottom:569.840315pt;}
.yec{bottom:571.401467pt;}
.yfd{bottom:574.602581pt;}
.y147{bottom:578.453973pt;}
.y180{bottom:579.087067pt;}
.y11b{bottom:579.089909pt;}
.ybd{bottom:579.091701pt;}
.y2f{bottom:581.963195pt;}
.yeb{bottom:582.601333pt;}
.y84{bottom:583.580539pt;}
.y51{bottom:585.199899pt;}
.yfc{bottom:589.962165pt;}
.y146{bottom:593.813557pt;}
.y17f{bottom:594.445339pt;}
.y11a{bottom:594.448181pt;}
.ybc{bottom:594.449973pt;}
.y2e{bottom:597.321467pt;}
.y83{bottom:598.938811pt;}
.y50{bottom:600.238043pt;}
.yfb{bottom:605.321749pt;}
.y145{bottom:608.851701pt;}
.y17e{bottom:609.804923pt;}
.y119{bottom:609.807765pt;}
.ybb{bottom:609.808245pt;}
.y5{bottom:612.970800pt;}
.y2d{bottom:613.001333pt;}
.y82{bottom:614.298395pt;}
.y4f{bottom:615.597627pt;}
.yfa{bottom:620.681333pt;}
.y144{bottom:624.209973pt;}
.y17d{bottom:625.163195pt;}
.yba{bottom:625.166517pt;}
.y118{bottom:625.167349pt;}
.y81{bottom:629.657979pt;}
.y2c{bottom:630.923195pt;}
.yf9{bottom:635.401467pt;}
.y143{bottom:639.568245pt;}
.y4{bottom:639.638000pt;}
.y17c{bottom:640.521467pt;}
.yb9{bottom:640.524789pt;}
.y117{bottom:640.525621pt;}
.y80{bottom:645.016251pt;}
.y2b{bottom:646.281467pt;}
.yf8{bottom:646.601333pt;}
.y142{bottom:654.926517pt;}
.yb8{bottom:655.883061pt;}
.y116{bottom:655.883893pt;}
.y17b{bottom:656.521467pt;}
.y7f{bottom:660.375835pt;}
.y2a{bottom:661.648859pt;}
.y141{bottom:670.284789pt;}
.yb7{bottom:671.241333pt;}
.y115{bottom:671.243477pt;}
.y17a{bottom:674.121333pt;}
.y7e{bottom:675.734107pt;}
.y29{bottom:677.007131pt;}
.y140{bottom:685.643061pt;}
.y114{bottom:686.603061pt;}
.yb6{bottom:686.921333pt;}
.y179{bottom:689.524085pt;}
.y7d{bottom:691.092379pt;}
.y28{bottom:692.366715pt;}
.y3{bottom:694.475067pt;}
.y13f{bottom:701.001333pt;}
.y113{bottom:701.961333pt;}
.yb5{bottom:704.868501pt;}
.y178{bottom:704.883669pt;}
.y7c{bottom:706.131835pt;}
.y27{bottom:707.726299pt;}
.y13e{bottom:716.681333pt;}
.y112{bottom:717.321333pt;}
.yb4{bottom:720.226773pt;}
.y177{bottom:720.243253pt;}
.y2{bottom:721.142267pt;}
.y7b{bottom:721.490107pt;}
.y26{bottom:723.085883pt;}
.y1c6{bottom:732.015413pt;}
.y1b4{bottom:732.028437pt;}
.y111{bottom:732.041333pt;}
.y13d{bottom:734.601333pt;}
.yb3{bottom:735.585045pt;}
.y176{bottom:735.601525pt;}
.y7a{bottom:736.848379pt;}
.y25{bottom:738.444155pt;}
.y110{bottom:743.241333pt;}
.y1c5{bottom:745.777045pt;}
.y1b3{bottom:745.790069pt;}
.yea{bottom:747.721333pt;}
.y1{bottom:747.809467pt;}
.y13c{bottom:749.321467pt;}
.yb2{bottom:750.943317pt;}
.y175{bottom:750.961109pt;}
.y79{bottom:752.206651pt;}
.y24{bottom:753.803739pt;}
.y1c4{bottom:759.537493pt;}
.y1b2{bottom:759.550517pt;}
.y13b{bottom:760.841333pt;}
.ye9{bottom:763.098261pt;}
.y129{bottom:765.000699pt;}
.yb1{bottom:766.301589pt;}
.y174{bottom:766.320693pt;}
.y78{bottom:767.564923pt;}
.y23{bottom:768.843195pt;}
.y1c3{bottom:773.297941pt;}
.y1b1{bottom:773.310965pt;}
.ye8{bottom:778.456533pt;}
.y128{bottom:778.761147pt;}
.yb0{bottom:781.659861pt;}
.y173{bottom:781.680277pt;}
.y77{bottom:782.923195pt;}
.y22{bottom:784.201467pt;}
.y1c2{bottom:787.059573pt;}
.y1b0{bottom:787.072597pt;}
.y127{bottom:790.281467pt;}
.ye7{bottom:793.814805pt;}
.yaf{bottom:797.018133pt;}
.y172{bottom:797.038549pt;}
.y76{bottom:798.281467pt;}
.y1c1{bottom:800.820021pt;}
.y1af{bottom:800.833045pt;}
.ye6{bottom:809.173077pt;}
.yae{bottom:812.376405pt;}
.y171{bottom:812.398133pt;}
.y75{bottom:813.641333pt;}
.y1c0{bottom:814.580469pt;}
.y1ae{bottom:814.593493pt;}
.y21{bottom:815.561333pt;}
.ye5{bottom:824.531349pt;}
.yad{bottom:827.734677pt;}
.y170{bottom:827.757717pt;}
.y74{bottom:828.361019pt;}
.y1bf{bottom:828.660597pt;}
.y1ad{bottom:828.673621pt;}
.y20{bottom:830.280891pt;}
.ye4{bottom:839.889621pt;}
.y73{bottom:842.121467pt;}
.y1be{bottom:842.422229pt;}
.y1ac{bottom:842.435253pt;}
.yac{bottom:842.775445pt;}
.y16f{bottom:842.797173pt;}
.y1f{bottom:844.361019pt;}
.y72{bottom:853.321333pt;}
.ye3{bottom:855.249205pt;}
.y1bd{bottom:856.182677pt;}
.y1ab{bottom:856.195701pt;}
.y1e{bottom:858.121467pt;}
.yab{bottom:858.133717pt;}
.y16e{bottom:858.155445pt;}
.y1bc{bottom:869.943125pt;}
.y1aa{bottom:869.956149pt;}
.ye2{bottom:870.608789pt;}
.y1d{bottom:872.523221pt;}
.yaa{bottom:873.491989pt;}
.y16d{bottom:873.513717pt;}
.y1bb{bottom:883.704757pt;}
.y1a9{bottom:883.717781pt;}
.ye1{bottom:885.967061pt;}
.y1c{bottom:887.881493pt;}
.ya9{bottom:888.851573pt;}
.y16c{bottom:888.871989pt;}
.y1ba{bottom:897.465205pt;}
.y1a8{bottom:897.478229pt;}
.ye0{bottom:901.325333pt;}
.y1b{bottom:903.881333pt;}
.y71{bottom:904.201333pt;}
.ya8{bottom:904.211157pt;}
.y16b{bottom:904.230261pt;}
.y1b9{bottom:911.225653pt;}
.y1a7{bottom:911.238677pt;}
.ydf{bottom:916.364789pt;}
.y70{bottom:919.566517pt;}
.ya7{bottom:919.569429pt;}
.y16a{bottom:919.588533pt;}
.y1b8{bottom:924.987285pt;}
.y1a6{bottom:925.000309pt;}
.y1a{bottom:925.001467pt;}
.yde{bottom:931.723061pt;}
.y6f{bottom:934.924789pt;}
.ya6{bottom:934.929013pt;}
.y169{bottom:934.946805pt;}
.y1b7{bottom:939.067413pt;}
.y1a5{bottom:939.080437pt;}
.y19{bottom:943.561467pt;}
.ydd{bottom:947.081333pt;}
.y6e{bottom:950.283061pt;}
.ya5{bottom:950.288597pt;}
.y168{bottom:950.305077pt;}
.y1b6{bottom:952.827861pt;}
.y1a4{bottom:952.840885pt;}
.y18{bottom:962.121467pt;}
.ydc{bottom:963.081333pt;}
.y6d{bottom:965.641333pt;}
.ya4{bottom:965.648181pt;}
.y167{bottom:965.664661pt;}
.y1b5{bottom:966.588309pt;}
.y1a3{bottom:966.601333pt;}
.y6b{bottom:981.321333pt;}
.y15{bottom:983.881573pt;}
.y6a{bottom:998.601445pt;}
.y14{bottom:1001.481733pt;}
.y69{bottom:1010.761285pt;}
.y68{bottom:1027.401355pt;}
.y13{bottom:1031.881733pt;}
.y67{bottom:1045.321675pt;}
.y12{bottom:1064.521867pt;}
.h10{height:30.751875pt;}
.h11{height:30.772500pt;}
.h6{height:31.680000pt;}
.h9{height:34.479375pt;}
.h14{height:34.502500pt;}
.ha{height:34.978125pt;}
.h7{height:38.206875pt;}
.h12{height:38.232500pt;}
.h13{height:40.399015pt;}
.hf{height:40.411515pt;}
.hb{height:42.656250pt;}
.h5{height:46.354167pt;}
.he{height:46.593750pt;}
.h8{height:47.616875pt;}
.hd{height:52.033073pt;}
.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;}
.x1b{left:103.930664pt;}
.x8{left:116.529536pt;}
.x17{left:120.397733pt;}
.x3{left:143.622667pt;}
.x7{left:182.125333pt;}
.x12{left:235.030667pt;}
.x2{left:253.229333pt;}
.x1{left:254.645333pt;}
.x16{left:324.130667pt;}
.x6{left:332.664000pt;}
.x11{left:337.776000pt;}
.x13{left:348.286667pt;}
.xe{left:374.590667pt;}
.xd{left:376.064000pt;}
.x4{left:385.728000pt;}
.x9{left:397.264000pt;}
.x1c{left:413.345076pt;}
.xa{left:420.878689pt;}
.x1a{left:428.410304pt;}
.x18{left:444.878556pt;}
.x19{left:468.878552pt;}
.xc{left:559.510667pt;}
.x15{left:658.777333pt;}
.x14{left:661.420000pt;}
.xb{left:694.218800pt;}
.x10{left:698.125333pt;}
.xf{left:699.712000pt;}
}


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