
/* 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_768e81d7fbba.woff")format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_d6c84bfc235f.woff")format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_b6cb9229cfe3.woff")format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_b4cb142a5d54.woff")format("woff");}.ff4{font-family:ff4;line-height:0.897000;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_fa4c12cd8a09.woff")format("woff");}.ff5{font-family:ff5;line-height:0.892000;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_9a5528fa9bbf.woff")format("woff");}.ff6{font-family:ff6;line-height:0.810000;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_3a4a69a7b007.woff")format("woff");}.ff7{font-family:ff7;line-height:0.910000;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_4f1006543781.woff")format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_414ef476956c.woff")format("woff");}.ff9{font-family:ff9;line-height:0.947000;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_42a660e7e941.woff")format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_85494e10e881.woff")format("woff");}.ffb{font-family:ffb;line-height:0.999000;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_e2fca1f5c725.woff")format("woff");}.ffc{font-family:ffc;line-height:0.908000;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_2a18db4eb8d0.woff")format("woff");}.ffd{font-family:ffd;line-height:0.678000;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_06469ce4c2fc.woff")format("woff");}.ffe{font-family:ffe;line-height:0.644000;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_684539d85ed9.woff")format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_315ada885e72.woff")format("woff");}.ff10{font-family:ff10;line-height:0.653000;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_111453c089e1.woff")format("woff");}.ff11{font-family:ff11;line-height:0.708000;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;}
.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);}
.vb{vertical-align:-62.766000px;}
.vc{vertical-align:-44.832000px;}
.v2{vertical-align:-21.696000px;}
.v7{vertical-align:-16.878000px;}
.v5{vertical-align:-14.940000px;}
.v4{vertical-align:-8.970000px;}
.vd{vertical-align:-3.828000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:8.964000px;}
.v3{vertical-align:21.696000px;}
.v1{vertical-align:23.754000px;}
.v9{vertical-align:33.774000px;}
.va{vertical-align:51.708000px;}
.v8{vertical-align:96.540000px;}
.ls7{letter-spacing:0.000000px;}
.ls7a{letter-spacing:0.000017px;}
.ls39{letter-spacing:0.000065px;}
.ls2b{letter-spacing:0.000093px;}
.ls15{letter-spacing:0.000479px;}
.lse{letter-spacing:0.000538px;}
.ls43{letter-spacing:0.002108px;}
.ls61{letter-spacing:0.002234px;}
.ls30{letter-spacing:0.002338px;}
.ls45{letter-spacing:0.002446px;}
.ls68{letter-spacing:0.002877px;}
.ls8a{letter-spacing:0.003056px;}
.ls3d{letter-spacing:0.003269px;}
.ls5d{letter-spacing:0.003413px;}
.ls3b{letter-spacing:0.004188px;}
.ls18{letter-spacing:0.004200px;}
.ls41{letter-spacing:0.005306px;}
.ls6d{letter-spacing:1.170961px;}
.ls6b{letter-spacing:1.176961px;}
.ls89{letter-spacing:1.191056px;}
.ls88{letter-spacing:1.195613px;}
.ls31{letter-spacing:1.661781px;}
.ls59{letter-spacing:2.148767px;}
.ls81{letter-spacing:2.371909px;}
.lsf{letter-spacing:2.385527px;}
.ls87{letter-spacing:2.389613px;}
.ls86{letter-spacing:2.391030px;}
.ls85{letter-spacing:2.395613px;}
.ls6{letter-spacing:2.964877px;}
.ls20{letter-spacing:2.984525px;}
.ls4{letter-spacing:2.984915px;}
.ls8e{letter-spacing:2.987675px;}
.ls8{letter-spacing:2.988017px;}
.ls36{letter-spacing:2.988600px;}
.lsc{letter-spacing:2.988780px;}
.ls1b{letter-spacing:2.989140px;}
.ls58{letter-spacing:2.989200px;}
.ls12{letter-spacing:2.990525px;}
.ls5{letter-spacing:2.991113px;}
.ls13{letter-spacing:2.991954px;}
.ls2d{letter-spacing:3.443602px;}
.ls5c{letter-spacing:4.486454px;}
.ls62{letter-spacing:4.691376px;}
.ls1{letter-spacing:5.492482px;}
.ls19{letter-spacing:5.981870px;}
.ls5f{letter-spacing:6.432479px;}
.ls4e{letter-spacing:6.433866px;}
.ls3e{letter-spacing:6.517690px;}
.ls3c{letter-spacing:6.523690px;}
.ls50{letter-spacing:8.297139px;}
.ls6f{letter-spacing:8.303139px;}
.ls2f{letter-spacing:8.304312px;}
.ls5e{letter-spacing:12.951014px;}
.ls63{letter-spacing:12.953374px;}
.ls6c{letter-spacing:12.957014px;}
.ls6a{letter-spacing:13.280338px;}
.ls69{letter-spacing:13.281269px;}
.ls75{letter-spacing:13.288200px;}
.ls80{letter-spacing:14.348850px;}
.ls32{letter-spacing:14.420338px;}
.ls57{letter-spacing:14.727269px;}
.ls52{letter-spacing:14.793269px;}
.ls74{letter-spacing:14.890648px;}
.ls7d{letter-spacing:14.990446px;}
.ls7c{letter-spacing:15.584685px;}
.ls56{letter-spacing:16.601607px;}
.ls7e{letter-spacing:16.604685px;}
.ls1e{letter-spacing:17.091199px;}
.ls24{letter-spacing:17.093607px;}
.ls21{letter-spacing:17.095822px;}
.ls1f{letter-spacing:17.100538px;}
.ls64{letter-spacing:17.434454px;}
.ls60{letter-spacing:17.440454px;}
.ls82{letter-spacing:18.078538px;}
.ls78{letter-spacing:18.214648px;}
.ls2e{letter-spacing:18.275781px;}
.ls47{letter-spacing:18.389607px;}
.ls46{letter-spacing:18.393199px;}
.ls8d{letter-spacing:18.710685px;}
.ls54{letter-spacing:18.921199px;}
.ls44{letter-spacing:19.053954px;}
.ls37{letter-spacing:19.475023px;}
.ls6e{letter-spacing:19.893269px;}
.ls23{letter-spacing:20.089140px;}
.lsa{letter-spacing:20.118538px;}
.ls5b{letter-spacing:20.918446px;}
.ls5a{letter-spacing:20.919199px;}
.ls38{letter-spacing:20.921023px;}
.ls7b{letter-spacing:20.922538px;}
.ls66{letter-spacing:20.997269px;}
.ls67{letter-spacing:21.002245px;}
.ls53{letter-spacing:21.066767px;}
.ls1d{letter-spacing:21.191023px;}
.ls2c{letter-spacing:21.501954px;}
.ls4f{letter-spacing:21.861269px;}
.ls29{letter-spacing:22.104538px;}
.ls9{letter-spacing:22.258172px;}
.ls8c{letter-spacing:22.326538px;}
.lsb{letter-spacing:22.822896px;}
.ls71{letter-spacing:22.856245px;}
.ls22{letter-spacing:24.177954px;}
.ls73{letter-spacing:24.254446px;}
.ls4a{letter-spacing:24.359607px;}
.ls77{letter-spacing:24.832648px;}
.ls70{letter-spacing:24.866245px;}
.ls55{letter-spacing:24.905139px;}
.ls8b{letter-spacing:24.990538px;}
.ls51{letter-spacing:24.993199px;}
.ls4b{letter-spacing:25.106446px;}
.ls48{letter-spacing:25.337602px;}
.ls27{letter-spacing:26.201602px;}
.ls72{letter-spacing:26.400767px;}
.ls35{letter-spacing:27.078312px;}
.ls25{letter-spacing:27.161870px;}
.ls28{letter-spacing:27.231954px;}
.ls26{letter-spacing:27.731306px;}
.ls34{letter-spacing:27.930312px;}
.ls2a{letter-spacing:29.946538px;}
.ls49{letter-spacing:30.877690px;}
.ls1a{letter-spacing:31.192200px;}
.ls42{letter-spacing:31.397602px;}
.ls83{letter-spacing:31.538100px;}
.ls4d{letter-spacing:31.627690px;}
.ls1c{letter-spacing:31.905954px;}
.ls33{letter-spacing:31.950312px;}
.ls4c{letter-spacing:32.663139px;}
.ls79{letter-spacing:33.282305px;}
.ls84{letter-spacing:34.525140px;}
.ls3f{letter-spacing:35.049269px;}
.lsd{letter-spacing:35.334538px;}
.ls17{letter-spacing:35.622538px;}
.ls14{letter-spacing:36.928200px;}
.ls76{letter-spacing:38.505269px;}
.ls3a{letter-spacing:40.129690px;}
.ls40{letter-spacing:40.423690px;}
.ls16{letter-spacing:41.603870px;}
.ls7f{letter-spacing:43.490685px;}
.ls11{letter-spacing:46.242538px;}
.ls10{letter-spacing:61.442208px;}
.ls0{letter-spacing:83.408915px;}
.ls2{letter-spacing:83.409113px;}
.ls65{letter-spacing:311.650200px;}
.ls3{letter-spacing:2021.457113px;}
.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;}
}
.wsae{word-spacing:-76.871422px;}
.wsa5{word-spacing:-59.775600px;}
.ws13a{word-spacing:-50.809387px;}
.ws71{word-spacing:-38.937826px;}
.wsb4{word-spacing:-37.001096px;}
.wsf4{word-spacing:-30.663675px;}
.ws105{word-spacing:-30.658629px;}
.wsf1{word-spacing:-30.657675px;}
.ws103{word-spacing:-30.652629px;}
.wsf8{word-spacing:-30.644051px;}
.wsf9{word-spacing:-29.015076px;}
.wsa6{word-spacing:-28.955301px;}
.wsb2{word-spacing:-14.943900px;}
.ws19{word-spacing:-14.920027px;}
.ws53{word-spacing:-11.955150px;}
.ws115{word-spacing:-7.471950px;}
.ws136{word-spacing:-2.392130px;}
.ws34{word-spacing:-1.195512px;}
.wsc3{word-spacing:-0.537980px;}
.wsde{word-spacing:-0.478205px;}
.wsf7{word-spacing:-0.239102px;}
.wsfa{word-spacing:-0.207866px;}
.wsf3{word-spacing:-0.179327px;}
.ws6c{word-spacing:-0.119551px;}
.ws35{word-spacing:-0.102220px;}
.ws166{word-spacing:-0.095641px;}
.ws44{word-spacing:-0.059776px;}
.ws6{word-spacing:-0.053798px;}
.wsa8{word-spacing:-0.041843px;}
.ws51{word-spacing:0.000000px;}
.ws77{word-spacing:0.059776px;}
.ws78{word-spacing:0.087139px;}
.ws15c{word-spacing:0.119551px;}
.ws7b{word-spacing:0.179327px;}
.ws55{word-spacing:0.239102px;}
.ws189{word-spacing:0.334744px;}
.ws36{word-spacing:0.358654px;}
.ws9d{word-spacing:0.478205px;}
.ws183{word-spacing:0.526027px;}
.ws17d{word-spacing:0.573847px;}
.wsc9{word-spacing:0.597756px;}
.ws17e{word-spacing:0.621668px;}
.ws113{word-spacing:0.657532px;}
.ws17f{word-spacing:0.717309px;}
.ws180{word-spacing:0.765130px;}
.ws149{word-spacing:0.777083px;}
.ws112{word-spacing:0.836858px;}
.ws74{word-spacing:0.896634px;}
.ws157{word-spacing:1.075961px;}
.wse9{word-spacing:1.135736px;}
.ws177{word-spacing:1.153877px;}
.ws178{word-spacing:1.195515px;}
.ws8f{word-spacing:1.255288px;}
.ws161{word-spacing:1.434618px;}
.ws181{word-spacing:1.625900px;}
.wsc1{word-spacing:1.673717px;}
.ws13f{word-spacing:1.793268px;}
.ws25{word-spacing:1.853044px;}
.ws18c{word-spacing:1.912824px;}
.ws6a{word-spacing:2.032370px;}
.wsb{word-spacing:2.044339px;}
.ws4c{word-spacing:2.092146px;}
.ws5e{word-spacing:2.151922px;}
.ws9c{word-spacing:2.211697px;}
.ws2e{word-spacing:2.331248px;}
.ws129{word-spacing:2.387220px;}
.ws75{word-spacing:2.391024px;}
.ws16f{word-spacing:2.391030px;}
.wsf2{word-spacing:2.510575px;}
.wsd{word-spacing:2.528525px;}
.ws4b{word-spacing:2.630126px;}
.wsd1{word-spacing:2.689902px;}
.ws18f{word-spacing:2.725774px;}
.ws31{word-spacing:2.749678px;}
.wse{word-spacing:2.797517px;}
.ws6b{word-spacing:2.809453px;}
.wsfb{word-spacing:2.869236px;}
.ws14d{word-spacing:2.988780px;}
.ws12c{word-spacing:3.108331px;}
.ws1f{word-spacing:3.168107px;}
.ws179{word-spacing:3.251801px;}
.wsc8{word-spacing:3.407209px;}
.ws1a{word-spacing:3.466985px;}
.ws33{word-spacing:3.586536px;}
.ws14{word-spacing:3.604493px;}
.ws158{word-spacing:3.765863px;}
.ws8e{word-spacing:3.825638px;}
.ws5d{word-spacing:3.885414px;}
.wsf5{word-spacing:3.945190px;}
.wsf6{word-spacing:3.959662px;}
.ws163{word-spacing:3.969110px;}
.ws50{word-spacing:4.004965px;}
.ws6f{word-spacing:4.064741px;}
.ws66{word-spacing:4.124516px;}
.ws5c{word-spacing:4.184292px;}
.wsec{word-spacing:4.303843px;}
.ws16e{word-spacing:4.303854px;}
.ws3a{word-spacing:4.363619px;}
.wsbe{word-spacing:4.423394px;}
.ws8d{word-spacing:4.483170px;}
.wsca{word-spacing:4.542946px;}
.wsbc{word-spacing:4.602721px;}
.wsc7{word-spacing:4.662497px;}
.wsa1{word-spacing:4.743818px;}
.ws49{word-spacing:4.782048px;}
.wsa0{word-spacing:4.782060px;}
.ws117{word-spacing:4.841824px;}
.wse2{word-spacing:4.901599px;}
.ws104{word-spacing:4.948309px;}
.ws106{word-spacing:4.961375px;}
.ws116{word-spacing:5.021150px;}
.ws87{word-spacing:5.080926px;}
.ws18a{word-spacing:5.116804px;}
.wseb{word-spacing:5.140702px;}
.ws4a{word-spacing:5.260253px;}
.ws176{word-spacing:5.260266px;}
.ws7c{word-spacing:5.320028px;}
.ws8c{word-spacing:5.379804px;}
.ws5f{word-spacing:5.439580px;}
.ws4f{word-spacing:5.499355px;}
.ws8b{word-spacing:5.559131px;}
.ws42{word-spacing:5.678682px;}
.ws65{word-spacing:5.738458px;}
.ws26{word-spacing:5.798233px;}
.ws9e{word-spacing:5.927159px;}
.ws52{word-spacing:5.929754px;}
.wsfd{word-spacing:5.972724px;}
.ws10d{word-spacing:5.974216px;}
.ws10a{word-spacing:5.975982px;}
.ws5{word-spacing:5.976427px;}
.ws107{word-spacing:5.977297px;}
.ws4{word-spacing:5.977560px;}
.ws18e{word-spacing:5.977575px;}
.ws100{word-spacing:6.037336px;}
.wsff{word-spacing:6.052309px;}
.ws1b{word-spacing:6.097111px;}
.ws155{word-spacing:6.156887px;}
.wsad{word-spacing:6.216662px;}
.ws18d{word-spacing:6.360140px;}
.ws102{word-spacing:6.387736px;}
.wsfe{word-spacing:6.393736px;}
.wsba{word-spacing:6.395989px;}
.ws2a{word-spacing:6.455765px;}
.ws119{word-spacing:6.515540px;}
.ws3d{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.ws14c{word-spacing:6.624826px;}
.ws148{word-spacing:6.635092px;}
.ws88{word-spacing:6.694867px;}
.ws15{word-spacing:6.724800px;}
.ws3b{word-spacing:6.754643px;}
.ws9{word-spacing:6.778598px;}
.ws172{word-spacing:6.838346px;}
.ws68{word-spacing:6.874194px;}
.ws69{word-spacing:6.886242px;}
.wsef{word-spacing:6.933970px;}
.wsee{word-spacing:6.943225px;}
.ws114{word-spacing:6.975271px;}
.ws162{word-spacing:6.981808px;}
.ws190{word-spacing:7.029628px;}
.ws7f{word-spacing:7.053521px;}
.ws13{word-spacing:7.101389px;}
.ws5a{word-spacing:7.113296px;}
.wsb7{word-spacing:7.160134px;}
.ws57{word-spacing:7.173072px;}
.ws16a{word-spacing:7.220911px;}
.ws1e{word-spacing:7.232848px;}
.ws12{word-spacing:7.316582px;}
.ws99{word-spacing:7.412174px;}
.ws186{word-spacing:7.460014px;}
.ws46{word-spacing:7.531726px;}
.ws16b{word-spacing:7.555655px;}
.ws29{word-spacing:7.591501px;}
.ws4e{word-spacing:7.651277px;}
.ws174{word-spacing:7.685269px;}
.ws175{word-spacing:7.699117px;}
.wse6{word-spacing:7.770828px;}
.ws72{word-spacing:7.856130px;}
.ws70{word-spacing:7.874717px;}
.ws73{word-spacing:7.890379px;}
.wsea{word-spacing:7.950155px;}
.ws101{word-spacing:8.009930px;}
.ws60{word-spacing:8.069706px;}
.wsa{word-spacing:8.123558px;}
.wsb6{word-spacing:8.129482px;}
.wsd0{word-spacing:8.189257px;}
.ws6e{word-spacing:8.249033px;}
.ws10c{word-spacing:8.308808px;}
.ws89{word-spacing:8.368584px;}
.wscf{word-spacing:8.488135px;}
.wsc4{word-spacing:8.547911px;}
.wsc5{word-spacing:8.607686px;}
.wsc6{word-spacing:8.687670px;}
.ws62{word-spacing:8.727238px;}
.ws10e{word-spacing:8.846789px;}
.ws147{word-spacing:8.906564px;}
.ws17{word-spacing:8.984333px;}
.ws118{word-spacing:9.026116px;}
.ws127{word-spacing:9.085891px;}
.ws182{word-spacing:9.085914px;}
.ws39{word-spacing:9.145667px;}
.ws5b{word-spacing:9.265218px;}
.ws140{word-spacing:9.267271px;}
.wsb3{word-spacing:9.268732px;}
.ws141{word-spacing:9.273271px;}
.ws109{word-spacing:9.308150px;}
.ws58{word-spacing:9.324994px;}
.ws16c{word-spacing:9.325017px;}
.wse5{word-spacing:9.356134px;}
.wse3{word-spacing:9.384769px;}
.ws111{word-spacing:9.444545px;}
.ws22{word-spacing:9.564096px;}
.ws165{word-spacing:9.564120px;}
.ws67{word-spacing:9.623872px;}
.ws30{word-spacing:9.683647px;}
.ws14f{word-spacing:9.743423px;}
.wsdc{word-spacing:9.803198px;}
.wsdd{word-spacing:9.862974px;}
.wsaf{word-spacing:9.895084px;}
.ws4d{word-spacing:9.922750px;}
.wscb{word-spacing:10.042301px;}
.ws110{word-spacing:10.102076px;}
.wsf0{word-spacing:10.161852px;}
.wsbf{word-spacing:10.221628px;}
.wsc{word-spacing:10.221696px;}
.ws169{word-spacing:10.233608px;}
.ws170{word-spacing:10.258896px;}
.ws171{word-spacing:10.281429px;}
.ws124{word-spacing:10.341179px;}
.ws154{word-spacing:10.460730px;}
.ws3c{word-spacing:10.879159px;}
.ws21{word-spacing:10.998710px;}
.ws1d{word-spacing:11.058486px;}
.ws120{word-spacing:11.114311px;}
.ws43{word-spacing:11.118262px;}
.ws6d{word-spacing:11.178037px;}
.wsbb{word-spacing:11.237813px;}
.ws160{word-spacing:11.297588px;}
.wsed{word-spacing:11.357364px;}
.ws92{word-spacing:11.476915px;}
.wsc2{word-spacing:11.536691px;}
.ws38{word-spacing:11.596466px;}
.ws150{word-spacing:11.656242px;}
.wsf{word-spacing:11.728051px;}
.wse8{word-spacing:11.835569px;}
.ws28{word-spacing:11.895344px;}
.ws80{word-spacing:11.955120px;}
.wsb1{word-spacing:11.955996px;}
.wsb0{word-spacing:12.014896px;}
.ws56{word-spacing:12.074671px;}
.ws151{word-spacing:12.134447px;}
.ws7a{word-spacing:12.194222px;}
.wscd{word-spacing:12.313774px;}
.ws12d{word-spacing:12.373549px;}
.ws11e{word-spacing:12.552876px;}
.ws188{word-spacing:12.576818px;}
.ws11d{word-spacing:12.612652px;}
.ws168{word-spacing:12.624638px;}
.ws27{word-spacing:12.791978px;}
.ws13d{word-spacing:12.911530px;}
.ws187{word-spacing:12.959383px;}
.ws128{word-spacing:12.971305px;}
.ws63{word-spacing:13.031081px;}
.ws2c{word-spacing:13.329959px;}
.ws7{word-spacing:13.395802px;}
.ws15b{word-spacing:13.509286px;}
.ws86{word-spacing:13.569061px;}
.ws156{word-spacing:13.617271px;}
.ws40{word-spacing:13.688612px;}
.ws11b{word-spacing:13.748388px;}
.ws7d{word-spacing:13.808164px;}
.wsab{word-spacing:13.953935px;}
.wsaa{word-spacing:13.967020px;}
.wsac{word-spacing:13.987490px;}
.ws123{word-spacing:14.007271px;}
.ws11{word-spacing:14.041382px;}
.ws85{word-spacing:14.286368px;}
.ws96{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws137{word-spacing:14.350463px;}
.ws79{word-spacing:14.405920px;}
.ws122{word-spacing:14.465695px;}
.ws15e{word-spacing:14.525471px;}
.ws23{word-spacing:14.585246px;}
.ws159{word-spacing:14.704798px;}
.ws2b{word-spacing:14.824349px;}
.ws130{word-spacing:14.884124px;}
.ws9b{word-spacing:14.942117px;}
.ws125{word-spacing:14.943900px;}
.wsb8{word-spacing:15.003676px;}
.ws17c{word-spacing:15.111310px;}
.ws7e{word-spacing:15.167992px;}
.ws15f{word-spacing:15.242778px;}
.ws1c{word-spacing:15.362329px;}
.ws64{word-spacing:15.422105px;}
.ws164{word-spacing:15.541695px;}
.wscc{word-spacing:15.601432px;}
.ws76{word-spacing:15.661207px;}
.ws45{word-spacing:15.900310px;}
.wsd8{word-spacing:15.923982px;}
.ws2d{word-spacing:15.960085px;}
.ws132{word-spacing:16.079636px;}
.ws24{word-spacing:16.199188px;}
.wsa9{word-spacing:16.258963px;}
.ws32{word-spacing:16.318739px;}
.ws61{word-spacing:16.438290px;}
.ws15a{word-spacing:16.498066px;}
.ws173{word-spacing:16.498107px;}
.ws10b{word-spacing:16.530415px;}
.wsb5{word-spacing:16.557841px;}
.ws135{word-spacing:16.562518px;}
.ws134{word-spacing:16.592134px;}
.ws146{word-spacing:16.611271px;}
.wsa3{word-spacing:16.688939px;}
.wsa2{word-spacing:16.694939px;}
.ws8{word-spacing:16.731302px;}
.ws94{word-spacing:16.737168px;}
.ws90{word-spacing:16.796944px;}
.ws142{word-spacing:16.815271px;}
.ws37{word-spacing:16.856719px;}
.ws59{word-spacing:16.976270px;}
.ws15d{word-spacing:17.036046px;}
.ws167{word-spacing:17.119775px;}
.ws10{word-spacing:17.269286px;}
.ws152{word-spacing:17.334924px;}
.ws20{word-spacing:17.394700px;}
.ws18b{word-spacing:17.502340px;}
.ws8a{word-spacing:17.693578px;}
.wsbd{word-spacing:17.872904px;}
.ws18{word-spacing:17.932680px;}
.ws17a{word-spacing:17.932725px;}
.ws3e{word-spacing:17.992456px;}
.ws17b{word-spacing:18.028366px;}
.ws48{word-spacing:18.052231px;}
.ws184{word-spacing:18.219649px;}
.ws47{word-spacing:18.291334px;}
.ws83{word-spacing:18.351109px;}
.wsfc{word-spacing:18.410885px;}
.wsd6{word-spacing:18.649987px;}
.ws84{word-spacing:18.948865px;}
.wse0{word-spacing:18.952500px;}
.ws133{word-spacing:19.068416px;}
.ws41{word-spacing:19.307519px;}
.ws9f{word-spacing:19.546621px;}
.wsd4{word-spacing:19.781568px;}
.wsd2{word-spacing:19.783483px;}
.wsce{word-spacing:19.785271px;}
.wsd5{word-spacing:19.785724px;}
.wsd3{word-spacing:19.790134px;}
.ws12e{word-spacing:19.869271px;}
.wsdb{word-spacing:20.084602px;}
.wsda{word-spacing:20.101510px;}
.ws13e{word-spacing:20.355271px;}
.ws9a{word-spacing:20.383480px;}
.ws2f{word-spacing:20.503031px;}
.ws54{word-spacing:20.622582px;}
.ws14a{word-spacing:20.682358px;}
.ws95{word-spacing:20.742133px;}
.ws108{word-spacing:20.862763px;}
.ws185{word-spacing:21.088885px;}
.wsc0{word-spacing:21.399665px;}
.ws82{word-spacing:21.698543px;}
.ws3f{word-spacing:21.937645px;}
.wsa4{word-spacing:21.979225px;}
.wsa7{word-spacing:21.997421px;}
.ws98{word-spacing:22.271984px;}
.ws12f{word-spacing:22.347271px;}
.ws16{word-spacing:22.380134px;}
.wsdf{word-spacing:22.572340px;}
.ws153{word-spacing:22.834279px;}
.ws11a{word-spacing:22.953830px;}
.ws81{word-spacing:23.192933px;}
.ws14b{word-spacing:24.155984px;}
.ws11f{word-spacing:25.151934px;}
.ws131{word-spacing:25.809271px;}
.wse7{word-spacing:25.857199px;}
.ws10f{word-spacing:26.335694px;}
.ws91{word-spacing:26.389649px;}
.wse4{word-spacing:27.471199px;}
.ws11c{word-spacing:28.619984px;}
.ws97{word-spacing:29.231984px;}
.wsd7{word-spacing:29.436340px;}
.ws121{word-spacing:30.512250px;}
.ws16d{word-spacing:31.752878px;}
.ws3{word-spacing:32.578140px;}
.ws2{word-spacing:32.619763px;}
.ws93{word-spacing:33.409733px;}
.wsd9{word-spacing:33.834340px;}
.ws14e{word-spacing:34.943984px;}
.ws126{word-spacing:35.410302px;}
.wse1{word-spacing:36.846340px;}
.wsb9{word-spacing:44.894117px;}
.ws139{word-spacing:62.162550px;}
.ws144{word-spacing:62.168550px;}
.ws12a{word-spacing:66.651271px;}
.ws12b{word-spacing:74.613271px;}
.ws143{word-spacing:77.345737px;}
.ws138{word-spacing:77.351737px;}
.ws13b{word-spacing:84.405158px;}
.ws145{word-spacing:89.709158px;}
.ws13c{word-spacing:89.715158px;}
._15{margin-left:-16.525849px;}
._0{margin-left:-11.476944px;}
._f{margin-left:-6.694867px;}
._8{margin-left:-5.559174px;}
._3{margin-left:-3.586545px;}
._1{margin-left:-2.582312px;}
._2{margin-left:-1.434618px;}
._4{width:1.971267px;}
._5{width:3.963134px;}
._6{width:4.978625px;}
._18{width:10.609997px;}
._19{width:14.585246px;}
._b{width:15.960085px;}
._17{width:18.530440px;}
._21{width:20.255322px;}
._a{width:21.997424px;}
._9{width:23.085343px;}
._c{width:25.105752px;}
._16{width:27.735878px;}
._7{width:29.158733px;}
._10{width:30.306238px;}
._d{width:34.264045px;}
._e{width:35.706690px;}
._1a{width:44.148290px;}
._20{width:47.961928px;}
._23{width:50.805366px;}
._22{width:55.621680px;}
._11{width:75.031469px;}
._1f{width:88.466620px;}
._1e{width:100.759045px;}
._1d{width:103.508603px;}
._1c{width:108.483536px;}
._1b{width:122.996027px;}
._14{width:270.668984px;}
._12{width:277.717469px;}
._13{width:432.701400px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.887800px;}
.fs8{font-size:35.865600px;}
.fs5{font-size:38.256600px;}
.fs6{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y31{bottom:113.332500px;}
.y1c7{bottom:126.783000px;}
.y10f{bottom:131.001000px;}
.y30{bottom:131.265000px;}
.yb4{bottom:131.266500px;}
.y1c6{bottom:140.475000px;}
.y51{bottom:149.197500px;}
.y2f{bottom:149.199000px;}
.yb3{bottom:153.748500px;}
.y1c5{bottom:153.925500px;}
.y10e{bottom:160.264500px;}
.y2e{bottom:167.131500px;}
.y1c4{bottom:167.374500px;}
.y10d{bottom:178.197000px;}
.yb2{bottom:180.828000px;}
.y1c3{bottom:181.066500px;}
.y2d{bottom:185.064000px;}
.y161{bottom:189.837000px;}
.y1c2{bottom:194.517000px;}
.y10c{bottom:196.129500px;}
.yb1{bottom:198.760500px;}
.y2c{bottom:202.996500px;}
.y1c1{bottom:207.966000px;}
.y10b{bottom:214.063500px;}
.yb0{bottom:216.693000px;}
.y50{bottom:220.929000px;}
.y1c0{bottom:221.659500px;}
.y2b{bottom:221.773500px;}
.y10a{bottom:231.996000px;}
.yaf{bottom:234.625500px;}
.y1bf{bottom:235.108500px;}
.y4f{bottom:238.861500px;}
.y134{bottom:238.863000px;}
.y2a{bottom:239.706000px;}
.y160{bottom:243.673500px;}
.y1be{bottom:248.557500px;}
.y109{bottom:249.928500px;}
.yae{bottom:252.558000px;}
.y4e{bottom:256.794000px;}
.y7e{bottom:256.795500px;}
.y29{bottom:257.638500px;}
.y15f{bottom:257.721000px;}
.y1bd{bottom:262.008000px;}
.y108{bottom:267.861000px;}
.yad{bottom:270.492000px;}
.y15e{bottom:271.767000px;}
.y4d{bottom:274.728000px;}
.y28{bottom:275.572500px;}
.y1bc{bottom:275.700000px;}
.ydd{bottom:281.248500px;}
.y107{bottom:285.793500px;}
.y15d{bottom:285.814500px;}
.yac{bottom:288.424500px;}
.y1bb{bottom:289.150500px;}
.y4c{bottom:292.660500px;}
.y27{bottom:293.505000px;}
.y1ba{bottom:302.842500px;}
.y106{bottom:303.726000px;}
.yab{bottom:306.357000px;}
.y4b{bottom:310.593000px;}
.y26{bottom:311.437500px;}
.y7d{bottom:312.063000px;}
.y15c{bottom:312.763500px;}
.ydc{bottom:313.671000px;}
.y1b9{bottom:316.291500px;}
.y105{bottom:321.660000px;}
.yaa{bottom:324.289500px;}
.y15b{bottom:326.214000px;}
.y4a{bottom:328.525500px;}
.y25{bottom:329.370000px;}
.y133{bottom:329.598000px;}
.y1b8{bottom:329.742000px;}
.y7c{bottom:329.995500px;}
.y188{bottom:331.455000px;}
.ydb{bottom:331.603500px;}
.y104{bottom:340.788000px;}
.ya9{bottom:342.066000px;}
.y1b7{bottom:343.434000px;}
.y49{bottom:346.458000px;}
.y24{bottom:347.302500px;}
.y132{bottom:347.530500px;}
.y7b{bottom:347.928000px;}
.y187{bottom:349.387500px;}
.yda{bottom:350.055000px;}
.y1b6{bottom:356.884500px;}
.y103{bottom:358.720500px;}
.ya8{bottom:359.998500px;}
.y15a{bottom:362.674500px;}
.y48{bottom:364.390500px;}
.y23{bottom:365.235000px;}
.y131{bottom:365.463000px;}
.y7a{bottom:365.860500px;}
.y186{bottom:367.320000px;}
.yd9{bottom:367.987500px;}
.y1b5{bottom:370.333500px;}
.y102{bottom:376.653000px;}
.ya7{bottom:377.931000px;}
.y159{bottom:380.607000px;}
.y47{bottom:382.324500px;}
.y22{bottom:383.169000px;}
.y130{bottom:383.395500px;}
.y1b4{bottom:383.782500px;}
.y79{bottom:383.793000px;}
.y185{bottom:385.254000px;}
.yd8{bottom:385.920000px;}
.y101{bottom:394.585500px;}
.ya6{bottom:395.863500px;}
.y1b3{bottom:397.233000px;}
.y158{bottom:398.539500px;}
.y46{bottom:400.257000px;}
.y21{bottom:401.101500px;}
.y12f{bottom:401.328000px;}
.y78{bottom:401.727000px;}
.y184{bottom:403.186500px;}
.yd7{bottom:403.852500px;}
.y1b2{bottom:410.925000px;}
.y100{bottom:412.518000px;}
.ya5{bottom:413.796000px;}
.y157{bottom:416.472000px;}
.y45{bottom:418.189500px;}
.y20{bottom:419.034000px;}
.y12e{bottom:419.262000px;}
.y77{bottom:419.659500px;}
.y183{bottom:421.119000px;}
.yd6{bottom:421.785000px;}
.y1b1{bottom:424.375500px;}
.yff{bottom:430.450500px;}
.ya4{bottom:431.728500px;}
.y156{bottom:434.406000px;}
.y44{bottom:436.122000px;}
.y1f{bottom:436.966500px;}
.y12d{bottom:437.194500px;}
.y76{bottom:437.592000px;}
.y1b0{bottom:437.824500px;}
.yd5{bottom:439.717500px;}
.y182{bottom:441.981000px;}
.yfe{bottom:448.384500px;}
.ya3{bottom:449.662500px;}
.y1af{bottom:451.273500px;}
.y155{bottom:452.338500px;}
.y43{bottom:454.054500px;}
.y1e{bottom:454.899000px;}
.y75{bottom:455.524500px;}
.y181{bottom:459.913500px;}
.yd4{bottom:461.733000px;}
.y12c{bottom:463.584000px;}
.y1ae{bottom:464.724000px;}
.yfd{bottom:466.317000px;}
.ya2{bottom:467.595000px;}
.y154{bottom:470.271000px;}
.y42{bottom:471.988500px;}
.y1d{bottom:472.831500px;}
.y74{bottom:473.457000px;}
.y180{bottom:477.846000px;}
.y1ad{bottom:478.416000px;}
.yd3{bottom:479.665500px;}
.yfc{bottom:484.249500px;}
.ya1{bottom:485.527500px;}
.y153{bottom:488.203500px;}
.y41{bottom:489.921000px;}
.y1c{bottom:490.765500px;}
.y73{bottom:491.389500px;}
.y1ac{bottom:491.866500px;}
.y17f{bottom:495.778500px;}
.yd2{bottom:497.599500px;}
.y12b{bottom:500.709000px;}
.yfb{bottom:502.182000px;}
.ya0{bottom:503.460000px;}
.y1ab{bottom:505.315500px;}
.y152{bottom:506.136000px;}
.y40{bottom:507.853500px;}
.y72{bottom:509.323500px;}
.y17e{bottom:513.711000px;}
.yd1{bottom:515.532000px;}
.y1b{bottom:518.470500px;}
.y12a{bottom:518.643000px;}
.y1aa{bottom:518.764500px;}
.y9f{bottom:521.392500px;}
.y151{bottom:524.068500px;}
.y3f{bottom:525.786000px;}
.y71{bottom:527.256000px;}
.yfa{bottom:529.005000px;}
.y17d{bottom:531.645000px;}
.y1a9{bottom:532.458000px;}
.yd0{bottom:533.464500px;}
.y129{bottom:536.575500px;}
.y9e{bottom:539.325000px;}
.y150{bottom:542.002500px;}
.y3e{bottom:543.718500px;}
.y70{bottom:545.188500px;}
.y1a8{bottom:545.907000px;}
.y17c{bottom:549.577500px;}
.ycf{bottom:551.397000px;}
.y128{bottom:554.508000px;}
.y9d{bottom:557.259000px;}
.y1a{bottom:557.818500px;}
.y1a7{bottom:559.357500px;}
.y14f{bottom:559.935000px;}
.y3d{bottom:561.651000px;}
.y6f{bottom:563.121000px;}
.yf9{bottom:567.184500px;}
.y17b{bottom:567.510000px;}
.yce{bottom:569.329500px;}
.y127{bottom:572.440500px;}
.y19{bottom:572.763000px;}
.y1a6{bottom:572.806500px;}
.y9c{bottom:575.191500px;}
.y14e{bottom:577.867500px;}
.y3c{bottom:579.585000px;}
.y6e{bottom:581.053500px;}
.yf8{bottom:585.117000px;}
.y17a{bottom:585.442500px;}
.y1a5{bottom:586.255500px;}
.y18{bottom:588.550500px;}
.ycd{bottom:591.345000px;}
.y126{bottom:591.445500px;}
.y9b{bottom:593.124000px;}
.y3b{bottom:597.517500px;}
.y6d{bottom:598.986000px;}
.y1a4{bottom:599.949000px;}
.yf7{bottom:603.049500px;}
.y179{bottom:603.375000px;}
.y17{bottom:603.495000px;}
.ycc{bottom:609.277500px;}
.y125{bottom:609.378000px;}
.y9a{bottom:611.056500px;}
.y1a3{bottom:613.398000px;}
.y3a{bottom:615.450000px;}
.y6c{bottom:616.920000px;}
.y16{bottom:618.439500px;}
.yf6{bottom:620.983500px;}
.y178{bottom:621.307500px;}
.y14d{bottom:624.483000px;}
.y1a2{bottom:626.848500px;}
.ycb{bottom:627.210000px;}
.y124{bottom:627.310500px;}
.y99{bottom:628.989000px;}
.y15{bottom:633.382500px;}
.y6b{bottom:634.852500px;}
.y14c{bottom:638.530500px;}
.yf5{bottom:638.916000px;}
.y177{bottom:639.241500px;}
.y1a1{bottom:640.540500px;}
.y123{bottom:645.243000px;}
.y98{bottom:646.764000px;}
.y14{bottom:648.327000px;}
.y39{bottom:651.315000px;}
.yca{bottom:651.663000px;}
.y14b{bottom:652.578000px;}
.y6a{bottom:652.785000px;}
.y1a0{bottom:653.991000px;}
.y176{bottom:657.174000px;}
.yf4{bottom:658.044000px;}
.y13{bottom:663.271500px;}
.y97{bottom:664.698000px;}
.y14a{bottom:666.027000px;}
.y19f{bottom:667.440000px;}
.y38{bottom:669.247500px;}
.y69{bottom:672.187500px;}
.y175{bottom:675.106500px;}
.yf3{bottom:675.976500px;}
.y122{bottom:678.024000px;}
.y12{bottom:678.214500px;}
.y19e{bottom:681.132000px;}
.y96{bottom:682.630500px;}
.yc9{bottom:684.087000px;}
.y37{bottom:687.181500px;}
.y68{bottom:690.120000px;}
.y149{bottom:691.879500px;}
.y11{bottom:693.159000px;}
.yf2{bottom:693.909000px;}
.y19d{bottom:694.582500px;}
.y174{bottom:695.968500px;}
.y95{bottom:700.563000px;}
.yc8{bottom:702.019500px;}
.y36{bottom:705.114000px;}
.y148{bottom:705.330000px;}
.y67{bottom:708.052500px;}
.y10{bottom:708.102000px;}
.y121{bottom:710.806500px;}
.yf1{bottom:711.841500px;}
.y173{bottom:713.901000px;}
.y94{bottom:718.495500px;}
.y147{bottom:718.779000px;}
.y19c{bottom:719.400000px;}
.yc7{bottom:719.952000px;}
.yf{bottom:723.046500px;}
.y66{bottom:725.985000px;}
.y120{bottom:728.739000px;}
.yf0{bottom:729.774000px;}
.y172{bottom:731.833500px;}
.y93{bottom:736.428000px;}
.yc6{bottom:737.884500px;}
.ye{bottom:737.991000px;}
.y35{bottom:740.979000px;}
.y65{bottom:743.919000px;}
.y11f{bottom:746.671500px;}
.yef{bottom:747.708000px;}
.y171{bottom:749.766000px;}
.y19b{bottom:751.140000px;}
.y146{bottom:752.214000px;}
.yd{bottom:752.934000px;}
.y92{bottom:754.362000px;}
.yc5{bottom:755.817000px;}
.y34{bottom:758.911500px;}
.y64{bottom:761.851500px;}
.yee{bottom:765.640500px;}
.y11e{bottom:765.675000px;}
.y170{bottom:767.698500px;}
.yc{bottom:767.878500px;}
.y19a{bottom:769.074000px;}
.y145{bottom:770.146500px;}
.y91{bottom:772.294500px;}
.yc4{bottom:774.268500px;}
.y33{bottom:776.844000px;}
.y63{bottom:779.784000px;}
.yb{bottom:782.823000px;}
.yed{bottom:783.573000px;}
.y11d{bottom:783.607500px;}
.y16f{bottom:785.632500px;}
.y199{bottom:787.006500px;}
.y144{bottom:788.079000px;}
.y90{bottom:790.227000px;}
.yc3{bottom:792.201000px;}
.y32{bottom:794.778000px;}
.ya{bottom:797.766000px;}
.y62{bottom:799.186500px;}
.yec{bottom:801.505500px;}
.y11c{bottom:801.541500px;}
.y16e{bottom:803.565000px;}
.y198{bottom:804.939000px;}
.y143{bottom:806.013000px;}
.y8f{bottom:808.159500px;}
.yc2{bottom:810.133500px;}
.y9{bottom:812.710500px;}
.y61{bottom:817.119000px;}
.yeb{bottom:819.438000px;}
.y11b{bottom:819.474000px;}
.y16d{bottom:821.497500px;}
.y197{bottom:822.871500px;}
.y8e{bottom:826.092000px;}
.yc1{bottom:828.066000px;}
.y142{bottom:828.718500px;}
.y1d8{bottom:830.643000px;}
.y60{bottom:835.051500px;}
.yea{bottom:837.372000px;}
.y11a{bottom:837.406500px;}
.y16c{bottom:839.430000px;}
.y196{bottom:840.804000px;}
.y8d{bottom:844.024500px;}
.y1d7{bottom:844.093500px;}
.yc0{bottom:845.998500px;}
.y5f{bottom:852.984000px;}
.ye9{bottom:855.304500px;}
.y119{bottom:855.339000px;}
.y141{bottom:856.897500px;}
.y1d6{bottom:857.542500px;}
.y195{bottom:858.736500px;}
.y16b{bottom:860.292000px;}
.y8c{bottom:861.958500px;}
.ybf{bottom:863.932500px;}
.y5e{bottom:870.916500px;}
.y1d5{bottom:870.991500px;}
.ye8{bottom:873.237000px;}
.y118{bottom:873.271500px;}
.y140{bottom:874.830000px;}
.y194{bottom:876.670500px;}
.y16a{bottom:878.224500px;}
.y8b{bottom:879.891000px;}
.ybe{bottom:881.865000px;}
.y1d4{bottom:884.442000px;}
.y5d{bottom:888.850500px;}
.y8{bottom:891.510000px;}
.y13f{bottom:892.762500px;}
.y193{bottom:895.041000px;}
.y169{bottom:896.157000px;}
.y7{bottom:896.934000px;}
.y8a{bottom:897.823500px;}
.y1d3{bottom:897.891000px;}
.ybd{bottom:899.797500px;}
.ye7{bottom:900.060000px;}
.y116{bottom:900.813000px;}
.y117{bottom:901.770000px;}
.y5c{bottom:906.783000px;}
.y6{bottom:910.447500px;}
.y13e{bottom:910.695000px;}
.y1d2{bottom:911.340000px;}
.y192{bottom:912.973500px;}
.y168{bottom:914.089500px;}
.y89{bottom:915.756000px;}
.ybc{bottom:917.730000px;}
.y5b{bottom:924.715500px;}
.y1d1{bottom:924.790500px;}
.y13d{bottom:928.629000px;}
.y5{bottom:930.420000px;}
.y191{bottom:930.906000px;}
.y167{bottom:932.023500px;}
.y88{bottom:933.688500px;}
.ybb{bottom:935.662500px;}
.ye6{bottom:938.239500px;}
.y5a{bottom:942.648000px;}
.y115{bottom:943.032000px;}
.y13c{bottom:946.561500px;}
.y190{bottom:948.838500px;}
.y166{bottom:949.956000px;}
.y4{bottom:950.392500px;}
.y87{bottom:951.621000px;}
.y1d0{bottom:951.690000px;}
.yba{bottom:953.595000px;}
.ye5{bottom:956.172000px;}
.y59{bottom:960.580500px;}
.y114{bottom:960.964500px;}
.y13b{bottom:964.494000px;}
.y1cf{bottom:965.139000px;}
.y18f{bottom:966.771000px;}
.y86{bottom:969.555000px;}
.yb9{bottom:971.529000px;}
.ye4{bottom:974.104500px;}
.y58{bottom:978.513000px;}
.y1ce{bottom:978.588000px;}
.y113{bottom:979.968000px;}
.y13a{bottom:982.446000px;}
.y18e{bottom:984.703500px;}
.y85{bottom:987.487500px;}
.ye3{bottom:992.037000px;}
.y1cd{bottom:992.038500px;}
.y57{bottom:996.447000px;}
.y3{bottom:997.465500px;}
.y112{bottom:997.900500px;}
.y139{bottom:1000.378500px;}
.y18d{bottom:1002.637500px;}
.y84{bottom:1005.420000px;}
.y1cc{bottom:1005.487500px;}
.ye2{bottom:1009.971000px;}
.y56{bottom:1014.379500px;}
.y165{bottom:1017.094500px;}
.y138{bottom:1018.311000px;}
.y1cb{bottom:1018.936500px;}
.y18c{bottom:1020.570000px;}
.y83{bottom:1023.352500px;}
.ye1{bottom:1027.903500px;}
.y164{bottom:1031.142000px;}
.yb8{bottom:1032.237000px;}
.y55{bottom:1032.312000px;}
.y1ca{bottom:1032.387000px;}
.y137{bottom:1036.243500px;}
.y18b{bottom:1038.502500px;}
.y2{bottom:1039.309500px;}
.y110{bottom:1039.483500px;}
.y111{bottom:1040.440500px;}
.y82{bottom:1041.285000px;}
.y163{bottom:1045.188000px;}
.ye0{bottom:1045.836000px;}
.yb7{bottom:1046.284500px;}
.y54{bottom:1050.244500px;}
.y136{bottom:1054.176000px;}
.y18a{bottom:1056.435000px;}
.y81{bottom:1059.217500px;}
.y162{bottom:1059.235500px;}
.y1c9{bottom:1059.286500px;}
.yb6{bottom:1060.332000px;}
.ydf{bottom:1063.768500px;}
.y53{bottom:1068.177000px;}
.y1c8{bottom:1072.735500px;}
.y189{bottom:1074.367500px;}
.y135{bottom:1076.881500px;}
.y80{bottom:1077.151500px;}
.y1{bottom:1081.152000px;}
.yde{bottom:1081.701000px;}
.yb5{bottom:1086.184500px;}
.y7f{bottom:1099.633500px;}
.y52{bottom:1099.635000px;}
.h12{height:0.000000px;}
.hf{height:24.675533px;}
.h14{height:32.661470px;}
.h9{height:32.900573px;}
.h15{height:33.140573px;}
.h3{height:35.865450px;}
.h6{height:37.174694px;}
.h11{height:37.297613px;}
.h5{height:37.605082px;}
.hb{height:40.826735px;}
.h4{height:41.125613px;}
.ha{height:42.141798px;}
.h8{height:43.576412px;}
.h7{height:44.831700px;}
.h13{height:44.837700px;}
.hc{height:50.477846px;}
.he{height:51.147331px;}
.hd{height:51.153331px;}
.h2{height:59.619450px;}
.h10{height:96.540000px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:73.701000px;}
.x7{left:78.676500px;}
.x12{left:83.763000px;}
.x10{left:85.924500px;}
.x4{left:87.798000px;}
.x24{left:89.884500px;}
.x27{left:100.596000px;}
.x28{left:101.923500px;}
.x26{left:104.392500px;}
.x13{left:109.804500px;}
.x2{left:121.795500px;}
.x25{left:173.809500px;}
.xc{left:189.867000px;}
.x9{left:203.428500px;}
.x11{left:212.005500px;}
.x23{left:234.637500px;}
.xf{left:238.953000px;}
.x15{left:250.089000px;}
.x3{left:310.249500px;}
.x5{left:327.856500px;}
.x6{left:368.236500px;}
.x16{left:432.609000px;}
.xa{left:467.967000px;}
.x19{left:469.141500px;}
.x2a{left:473.944500px;}
.x14{left:479.922000px;}
.x22{left:481.236000px;}
.xb{left:482.910000px;}
.x20{left:484.404000px;}
.x2b{left:495.355500px;}
.x1d{left:511.128000px;}
.x1e{left:513.118500px;}
.x2c{left:537.712500px;}
.x21{left:554.449500px;}
.x1c{left:557.160000px;}
.x1b{left:561.439500px;}
.x1a{left:567.040500px;}
.x2e{left:581.113500px;}
.x2d{left:587.422500px;}
.xe{left:591.075000px;}
.x17{left:599.698500px;}
.xd{left:603.882000px;}
.x29{left:614.418000px;}
.x1f{left:629.493000px;}
.x18{left:631.483500px;}
.x2f{left:694.969500px;}
.x8{left:753.204000px;}
@media print{
.vb{vertical-align:-55.792000pt;}
.vc{vertical-align:-39.850667pt;}
.v2{vertical-align:-19.285333pt;}
.v7{vertical-align:-15.002667pt;}
.v5{vertical-align:-13.280000pt;}
.v4{vertical-align:-7.973333pt;}
.vd{vertical-align:-3.402667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:7.968000pt;}
.v3{vertical-align:19.285333pt;}
.v1{vertical-align:21.114667pt;}
.v9{vertical-align:30.021333pt;}
.va{vertical-align:45.962667pt;}
.v8{vertical-align:85.813333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls7a{letter-spacing:0.000015pt;}
.ls39{letter-spacing:0.000058pt;}
.ls2b{letter-spacing:0.000082pt;}
.ls15{letter-spacing:0.000425pt;}
.lse{letter-spacing:0.000479pt;}
.ls43{letter-spacing:0.001873pt;}
.ls61{letter-spacing:0.001986pt;}
.ls30{letter-spacing:0.002079pt;}
.ls45{letter-spacing:0.002174pt;}
.ls68{letter-spacing:0.002557pt;}
.ls8a{letter-spacing:0.002717pt;}
.ls3d{letter-spacing:0.002906pt;}
.ls5d{letter-spacing:0.003033pt;}
.ls3b{letter-spacing:0.003723pt;}
.ls18{letter-spacing:0.003733pt;}
.ls41{letter-spacing:0.004716pt;}
.ls6d{letter-spacing:1.040854pt;}
.ls6b{letter-spacing:1.046188pt;}
.ls89{letter-spacing:1.058717pt;}
.ls88{letter-spacing:1.062767pt;}
.ls31{letter-spacing:1.477138pt;}
.ls59{letter-spacing:1.910015pt;}
.ls81{letter-spacing:2.108364pt;}
.lsf{letter-spacing:2.120468pt;}
.ls87{letter-spacing:2.124101pt;}
.ls86{letter-spacing:2.125360pt;}
.ls85{letter-spacing:2.129434pt;}
.ls6{letter-spacing:2.635446pt;}
.ls20{letter-spacing:2.652911pt;}
.ls4{letter-spacing:2.653258pt;}
.ls8e{letter-spacing:2.655711pt;}
.ls8{letter-spacing:2.656015pt;}
.ls36{letter-spacing:2.656533pt;}
.lsc{letter-spacing:2.656693pt;}
.ls1b{letter-spacing:2.657014pt;}
.ls58{letter-spacing:2.657067pt;}
.ls12{letter-spacing:2.658245pt;}
.ls5{letter-spacing:2.658767pt;}
.ls13{letter-spacing:2.659514pt;}
.ls2d{letter-spacing:3.060980pt;}
.ls5c{letter-spacing:3.987959pt;}
.ls62{letter-spacing:4.170112pt;}
.ls1{letter-spacing:4.882206pt;}
.ls19{letter-spacing:5.317218pt;}
.ls5f{letter-spacing:5.717759pt;}
.ls4e{letter-spacing:5.718992pt;}
.ls3e{letter-spacing:5.793503pt;}
.ls3c{letter-spacing:5.798836pt;}
.ls50{letter-spacing:7.375235pt;}
.ls6f{letter-spacing:7.380568pt;}
.ls2f{letter-spacing:7.381610pt;}
.ls5e{letter-spacing:11.512012pt;}
.ls63{letter-spacing:11.514110pt;}
.ls6c{letter-spacing:11.517345pt;}
.ls6a{letter-spacing:11.804745pt;}
.ls69{letter-spacing:11.805573pt;}
.ls75{letter-spacing:11.811733pt;}
.ls80{letter-spacing:12.754533pt;}
.ls32{letter-spacing:12.818079pt;}
.ls57{letter-spacing:13.090906pt;}
.ls52{letter-spacing:13.149573pt;}
.ls74{letter-spacing:13.236132pt;}
.ls7d{letter-spacing:13.324841pt;}
.ls7c{letter-spacing:13.853053pt;}
.ls56{letter-spacing:14.756984pt;}
.ls7e{letter-spacing:14.759720pt;}
.ls1e{letter-spacing:15.192177pt;}
.ls24{letter-spacing:15.194318pt;}
.ls21{letter-spacing:15.196286pt;}
.ls1f{letter-spacing:15.200479pt;}
.ls64{letter-spacing:15.497292pt;}
.ls60{letter-spacing:15.502625pt;}
.ls82{letter-spacing:16.069812pt;}
.ls78{letter-spacing:16.190798pt;}
.ls2e{letter-spacing:16.245138pt;}
.ls47{letter-spacing:16.346318pt;}
.ls46{letter-spacing:16.349510pt;}
.ls8d{letter-spacing:16.631720pt;}
.ls54{letter-spacing:16.818843pt;}
.ls44{letter-spacing:16.936848pt;}
.ls37{letter-spacing:17.311132pt;}
.ls6e{letter-spacing:17.682906pt;}
.ls23{letter-spacing:17.857014pt;}
.lsa{letter-spacing:17.883145pt;}
.ls5b{letter-spacing:18.594174pt;}
.ls5a{letter-spacing:18.594843pt;}
.ls38{letter-spacing:18.596465pt;}
.ls7b{letter-spacing:18.597812pt;}
.ls66{letter-spacing:18.664239pt;}
.ls67{letter-spacing:18.668662pt;}
.ls53{letter-spacing:18.726015pt;}
.ls1d{letter-spacing:18.836465pt;}
.ls2c{letter-spacing:19.112848pt;}
.ls4f{letter-spacing:19.432239pt;}
.ls29{letter-spacing:19.648479pt;}
.ls9{letter-spacing:19.785042pt;}
.ls8c{letter-spacing:19.845812pt;}
.lsb{letter-spacing:20.287018pt;}
.ls71{letter-spacing:20.316662pt;}
.ls22{letter-spacing:21.491514pt;}
.ls73{letter-spacing:21.559507pt;}
.ls4a{letter-spacing:21.652984pt;}
.ls77{letter-spacing:22.073465pt;}
.ls70{letter-spacing:22.103329pt;}
.ls55{letter-spacing:22.137902pt;}
.ls8b{letter-spacing:22.213812pt;}
.ls51{letter-spacing:22.216177pt;}
.ls4b{letter-spacing:22.316841pt;}
.ls48{letter-spacing:22.522313pt;}
.ls27{letter-spacing:23.290313pt;}
.ls72{letter-spacing:23.467348pt;}
.ls35{letter-spacing:24.069610pt;}
.ls25{letter-spacing:24.143884pt;}
.ls28{letter-spacing:24.206181pt;}
.ls26{letter-spacing:24.650050pt;}
.ls34{letter-spacing:24.826944pt;}
.ls2a{letter-spacing:26.619145pt;}
.ls49{letter-spacing:27.446836pt;}
.ls1a{letter-spacing:27.726400pt;}
.ls42{letter-spacing:27.908980pt;}
.ls83{letter-spacing:28.033867pt;}
.ls4d{letter-spacing:28.113503pt;}
.ls1c{letter-spacing:28.360848pt;}
.ls33{letter-spacing:28.400277pt;}
.ls4c{letter-spacing:29.033902pt;}
.ls79{letter-spacing:29.584271pt;}
.ls84{letter-spacing:30.689014pt;}
.ls3f{letter-spacing:31.154906pt;}
.lsd{letter-spacing:31.408479pt;}
.ls17{letter-spacing:31.664479pt;}
.ls14{letter-spacing:32.825067pt;}
.ls76{letter-spacing:34.226906pt;}
.ls3a{letter-spacing:35.670836pt;}
.ls40{letter-spacing:35.932169pt;}
.ls16{letter-spacing:36.981218pt;}
.ls7f{letter-spacing:38.658387pt;}
.ls11{letter-spacing:41.104479pt;}
.ls10{letter-spacing:54.615296pt;}
.ls0{letter-spacing:74.141258pt;}
.ls2{letter-spacing:74.141433pt;}
.ls65{letter-spacing:277.022400pt;}
.ls3{letter-spacing:1796.850767pt;}
.wsae{word-spacing:-68.330153pt;}
.wsa5{word-spacing:-53.133867pt;}
.ws13a{word-spacing:-45.163900pt;}
.ws71{word-spacing:-34.611401pt;}
.wsb4{word-spacing:-32.889863pt;}
.wsf4{word-spacing:-27.256600pt;}
.ws105{word-spacing:-27.252114pt;}
.wsf1{word-spacing:-27.251266pt;}
.ws103{word-spacing:-27.246781pt;}
.wsf8{word-spacing:-27.239157pt;}
.wsf9{word-spacing:-25.791179pt;}
.wsa6{word-spacing:-25.738045pt;}
.wsb2{word-spacing:-13.283467pt;}
.ws19{word-spacing:-13.262246pt;}
.ws53{word-spacing:-10.626800pt;}
.ws115{word-spacing:-6.641733pt;}
.ws136{word-spacing:-2.126338pt;}
.ws34{word-spacing:-1.062677pt;}
.wsc3{word-spacing:-0.478205pt;}
.wsde{word-spacing:-0.425071pt;}
.wsf7{word-spacing:-0.212535pt;}
.wsfa{word-spacing:-0.184770pt;}
.wsf3{word-spacing:-0.159402pt;}
.ws6c{word-spacing:-0.106268pt;}
.ws35{word-spacing:-0.090862pt;}
.ws166{word-spacing:-0.085014pt;}
.ws44{word-spacing:-0.053134pt;}
.ws6{word-spacing:-0.047821pt;}
.wsa8{word-spacing:-0.037194pt;}
.ws51{word-spacing:0.000000pt;}
.ws77{word-spacing:0.053134pt;}
.ws78{word-spacing:0.077457pt;}
.ws15c{word-spacing:0.106268pt;}
.ws7b{word-spacing:0.159402pt;}
.ws55{word-spacing:0.212535pt;}
.ws189{word-spacing:0.297550pt;}
.ws36{word-spacing:0.318803pt;}
.ws9d{word-spacing:0.425071pt;}
.ws183{word-spacing:0.467579pt;}
.ws17d{word-spacing:0.510086pt;}
.wsc9{word-spacing:0.531339pt;}
.ws17e{word-spacing:0.552594pt;}
.ws113{word-spacing:0.584473pt;}
.ws17f{word-spacing:0.637608pt;}
.ws180{word-spacing:0.680115pt;}
.ws149{word-spacing:0.690740pt;}
.ws112{word-spacing:0.743874pt;}
.ws74{word-spacing:0.797008pt;}
.ws157{word-spacing:0.956410pt;}
.wse9{word-spacing:1.009543pt;}
.ws177{word-spacing:1.025668pt;}
.ws178{word-spacing:1.062680pt;}
.ws8f{word-spacing:1.115811pt;}
.ws161{word-spacing:1.275216pt;}
.ws181{word-spacing:1.445245pt;}
.wsc1{word-spacing:1.487748pt;}
.ws13f{word-spacing:1.594016pt;}
.ws25{word-spacing:1.647150pt;}
.ws18c{word-spacing:1.700288pt;}
.ws6a{word-spacing:1.806551pt;}
.wsb{word-spacing:1.817190pt;}
.ws4c{word-spacing:1.859685pt;}
.ws5e{word-spacing:1.912819pt;}
.ws9c{word-spacing:1.965953pt;}
.ws2e{word-spacing:2.072221pt;}
.ws129{word-spacing:2.121973pt;}
.ws75{word-spacing:2.125355pt;}
.ws16f{word-spacing:2.125360pt;}
.wsf2{word-spacing:2.231622pt;}
.wsd{word-spacing:2.247578pt;}
.ws4b{word-spacing:2.337890pt;}
.wsd1{word-spacing:2.391024pt;}
.ws18f{word-spacing:2.422910pt;}
.ws31{word-spacing:2.444158pt;}
.wse{word-spacing:2.486682pt;}
.ws6b{word-spacing:2.497292pt;}
.wsfb{word-spacing:2.550432pt;}
.ws14d{word-spacing:2.656693pt;}
.ws12c{word-spacing:2.762961pt;}
.ws1f{word-spacing:2.816095pt;}
.ws179{word-spacing:2.890490pt;}
.wsc8{word-spacing:3.028630pt;}
.ws1a{word-spacing:3.081764pt;}
.ws33{word-spacing:3.188032pt;}
.ws14{word-spacing:3.203994pt;}
.ws158{word-spacing:3.347434pt;}
.ws8e{word-spacing:3.400567pt;}
.ws5d{word-spacing:3.453701pt;}
.wsf5{word-spacing:3.506835pt;}
.wsf6{word-spacing:3.519699pt;}
.ws163{word-spacing:3.528098pt;}
.ws50{word-spacing:3.559969pt;}
.ws6f{word-spacing:3.613103pt;}
.ws66{word-spacing:3.666237pt;}
.ws5c{word-spacing:3.719371pt;}
.wsec{word-spacing:3.825638pt;}
.ws16e{word-spacing:3.825648pt;}
.ws3a{word-spacing:3.878772pt;}
.wsbe{word-spacing:3.931906pt;}
.ws8d{word-spacing:3.985040pt;}
.wsca{word-spacing:4.038174pt;}
.wsbc{word-spacing:4.091308pt;}
.wsc7{word-spacing:4.144442pt;}
.wsa1{word-spacing:4.216727pt;}
.ws49{word-spacing:4.250709pt;}
.wsa0{word-spacing:4.250720pt;}
.ws117{word-spacing:4.303843pt;}
.wse2{word-spacing:4.356977pt;}
.ws104{word-spacing:4.398497pt;}
.ws106{word-spacing:4.410111pt;}
.ws116{word-spacing:4.463245pt;}
.ws87{word-spacing:4.516379pt;}
.ws18a{word-spacing:4.548270pt;}
.wseb{word-spacing:4.569513pt;}
.ws4a{word-spacing:4.675780pt;}
.ws176{word-spacing:4.675792pt;}
.ws7c{word-spacing:4.728914pt;}
.ws8c{word-spacing:4.782048pt;}
.ws5f{word-spacing:4.835182pt;}
.ws4f{word-spacing:4.888316pt;}
.ws8b{word-spacing:4.941450pt;}
.ws42{word-spacing:5.047717pt;}
.ws65{word-spacing:5.100851pt;}
.ws26{word-spacing:5.153985pt;}
.ws9e{word-spacing:5.268586pt;}
.ws52{word-spacing:5.270893pt;}
.wsfd{word-spacing:5.309088pt;}
.ws10d{word-spacing:5.310414pt;}
.ws10a{word-spacing:5.311984pt;}
.ws5{word-spacing:5.312380pt;}
.ws107{word-spacing:5.313153pt;}
.ws4{word-spacing:5.313387pt;}
.ws18e{word-spacing:5.313400pt;}
.ws100{word-spacing:5.366521pt;}
.wsff{word-spacing:5.379830pt;}
.ws1b{word-spacing:5.419654pt;}
.ws155{word-spacing:5.472788pt;}
.wsad{word-spacing:5.525922pt;}
.ws18d{word-spacing:5.653458pt;}
.ws102{word-spacing:5.677988pt;}
.wsfe{word-spacing:5.683321pt;}
.wsba{word-spacing:5.685324pt;}
.ws2a{word-spacing:5.738458pt;}
.ws119{word-spacing:5.791591pt;}
.ws3d{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.ws14c{word-spacing:5.888734pt;}
.ws148{word-spacing:5.897859pt;}
.ws88{word-spacing:5.950993pt;}
.ws15{word-spacing:5.977600pt;}
.ws3b{word-spacing:6.004127pt;}
.ws9{word-spacing:6.025421pt;}
.ws172{word-spacing:6.078530pt;}
.ws68{word-spacing:6.110395pt;}
.ws69{word-spacing:6.121104pt;}
.wsef{word-spacing:6.163529pt;}
.wsee{word-spacing:6.171756pt;}
.ws114{word-spacing:6.200241pt;}
.ws162{word-spacing:6.206051pt;}
.ws190{word-spacing:6.248558pt;}
.ws7f{word-spacing:6.269796pt;}
.ws13{word-spacing:6.312346pt;}
.ws5a{word-spacing:6.322930pt;}
.wsb7{word-spacing:6.364563pt;}
.ws57{word-spacing:6.376064pt;}
.ws16a{word-spacing:6.418587pt;}
.ws1e{word-spacing:6.429198pt;}
.ws12{word-spacing:6.503629pt;}
.ws99{word-spacing:6.588599pt;}
.ws186{word-spacing:6.631123pt;}
.ws46{word-spacing:6.694867pt;}
.ws16b{word-spacing:6.716138pt;}
.ws29{word-spacing:6.748001pt;}
.ws4e{word-spacing:6.801135pt;}
.ws174{word-spacing:6.831350pt;}
.ws175{word-spacing:6.843659pt;}
.wse6{word-spacing:6.907403pt;}
.ws72{word-spacing:6.983227pt;}
.ws70{word-spacing:6.999748pt;}
.ws73{word-spacing:7.013670pt;}
.wsea{word-spacing:7.066804pt;}
.ws101{word-spacing:7.119938pt;}
.ws60{word-spacing:7.173072pt;}
.wsa{word-spacing:7.220941pt;}
.wsb6{word-spacing:7.226206pt;}
.wsd0{word-spacing:7.279340pt;}
.ws6e{word-spacing:7.332474pt;}
.ws10c{word-spacing:7.385607pt;}
.ws89{word-spacing:7.438741pt;}
.wscf{word-spacing:7.545009pt;}
.wsc4{word-spacing:7.598143pt;}
.wsc5{word-spacing:7.651277pt;}
.wsc6{word-spacing:7.722373pt;}
.ws62{word-spacing:7.757545pt;}
.ws10e{word-spacing:7.863812pt;}
.ws147{word-spacing:7.916946pt;}
.ws17{word-spacing:7.986074pt;}
.ws118{word-spacing:8.023214pt;}
.ws127{word-spacing:8.076348pt;}
.ws182{word-spacing:8.076368pt;}
.ws39{word-spacing:8.129482pt;}
.ws5b{word-spacing:8.235749pt;}
.ws140{word-spacing:8.237574pt;}
.wsb3{word-spacing:8.238873pt;}
.ws141{word-spacing:8.242907pt;}
.ws109{word-spacing:8.273911pt;}
.ws58{word-spacing:8.288883pt;}
.ws16c{word-spacing:8.288904pt;}
.wse5{word-spacing:8.316563pt;}
.wse3{word-spacing:8.342017pt;}
.ws111{word-spacing:8.395151pt;}
.ws22{word-spacing:8.501419pt;}
.ws165{word-spacing:8.501440pt;}
.ws67{word-spacing:8.554553pt;}
.ws30{word-spacing:8.607686pt;}
.ws14f{word-spacing:8.660820pt;}
.wsdc{word-spacing:8.713954pt;}
.wsdd{word-spacing:8.767088pt;}
.wsaf{word-spacing:8.795631pt;}
.ws4d{word-spacing:8.820222pt;}
.wscb{word-spacing:8.926490pt;}
.ws110{word-spacing:8.979623pt;}
.wsf0{word-spacing:9.032757pt;}
.wsbf{word-spacing:9.085891pt;}
.wsc{word-spacing:9.085952pt;}
.ws169{word-spacing:9.096541pt;}
.ws170{word-spacing:9.119019pt;}
.ws171{word-spacing:9.139048pt;}
.ws124{word-spacing:9.192159pt;}
.ws154{word-spacing:9.298427pt;}
.ws3c{word-spacing:9.670364pt;}
.ws21{word-spacing:9.776631pt;}
.ws1d{word-spacing:9.829765pt;}
.ws120{word-spacing:9.879388pt;}
.ws43{word-spacing:9.882899pt;}
.ws6d{word-spacing:9.936033pt;}
.wsbb{word-spacing:9.989167pt;}
.ws160{word-spacing:10.042301pt;}
.wsed{word-spacing:10.095435pt;}
.ws92{word-spacing:10.201702pt;}
.wsc2{word-spacing:10.254836pt;}
.ws38{word-spacing:10.307970pt;}
.ws150{word-spacing:10.361104pt;}
.wsf{word-spacing:10.424934pt;}
.wse8{word-spacing:10.520506pt;}
.ws28{word-spacing:10.573639pt;}
.ws80{word-spacing:10.626773pt;}
.wsb1{word-spacing:10.627552pt;}
.wsb0{word-spacing:10.679907pt;}
.ws56{word-spacing:10.733041pt;}
.ws151{word-spacing:10.786175pt;}
.ws7a{word-spacing:10.839309pt;}
.wscd{word-spacing:10.945577pt;}
.ws12d{word-spacing:10.998710pt;}
.ws11e{word-spacing:11.158112pt;}
.ws188{word-spacing:11.179394pt;}
.ws11d{word-spacing:11.211246pt;}
.ws168{word-spacing:11.221901pt;}
.ws27{word-spacing:11.370647pt;}
.ws13d{word-spacing:11.476915pt;}
.ws187{word-spacing:11.519451pt;}
.ws128{word-spacing:11.530049pt;}
.ws63{word-spacing:11.583183pt;}
.ws2c{word-spacing:11.848852pt;}
.ws7{word-spacing:11.907379pt;}
.ws15b{word-spacing:12.008254pt;}
.ws86{word-spacing:12.061388pt;}
.ws156{word-spacing:12.104241pt;}
.ws40{word-spacing:12.167655pt;}
.ws11b{word-spacing:12.220789pt;}
.ws7d{word-spacing:12.273923pt;}
.wsab{word-spacing:12.403498pt;}
.wsaa{word-spacing:12.415129pt;}
.wsac{word-spacing:12.433325pt;}
.ws123{word-spacing:12.450907pt;}
.ws11{word-spacing:12.481229pt;}
.ws85{word-spacing:12.698994pt;}
.ws96{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws137{word-spacing:12.755967pt;}
.ws79{word-spacing:12.805262pt;}
.ws122{word-spacing:12.858396pt;}
.ws15e{word-spacing:12.911530pt;}
.ws23{word-spacing:12.964663pt;}
.ws159{word-spacing:13.070931pt;}
.ws2b{word-spacing:13.177199pt;}
.ws130{word-spacing:13.230333pt;}
.ws9b{word-spacing:13.281882pt;}
.ws125{word-spacing:13.283467pt;}
.wsb8{word-spacing:13.336601pt;}
.ws17c{word-spacing:13.432275pt;}
.ws7e{word-spacing:13.482659pt;}
.ws15f{word-spacing:13.549136pt;}
.ws1c{word-spacing:13.655404pt;}
.ws64{word-spacing:13.708538pt;}
.ws164{word-spacing:13.814840pt;}
.wscc{word-spacing:13.867939pt;}
.ws76{word-spacing:13.921073pt;}
.ws45{word-spacing:14.133609pt;}
.wsd8{word-spacing:14.154651pt;}
.ws2d{word-spacing:14.186742pt;}
.ws132{word-spacing:14.293010pt;}
.ws24{word-spacing:14.399278pt;}
.wsa9{word-spacing:14.452412pt;}
.ws32{word-spacing:14.505546pt;}
.ws61{word-spacing:14.611813pt;}
.ws15a{word-spacing:14.664947pt;}
.ws173{word-spacing:14.664984pt;}
.ws10b{word-spacing:14.693702pt;}
.wsb5{word-spacing:14.718081pt;}
.ws135{word-spacing:14.722238pt;}
.ws134{word-spacing:14.748563pt;}
.ws146{word-spacing:14.765574pt;}
.wsa3{word-spacing:14.834613pt;}
.wsa2{word-spacing:14.839946pt;}
.ws8{word-spacing:14.872269pt;}
.ws94{word-spacing:14.877483pt;}
.ws90{word-spacing:14.930617pt;}
.ws142{word-spacing:14.946907pt;}
.ws37{word-spacing:14.983750pt;}
.ws59{word-spacing:15.090018pt;}
.ws15d{word-spacing:15.143152pt;}
.ws167{word-spacing:15.217578pt;}
.ws10{word-spacing:15.350477pt;}
.ws152{word-spacing:15.408821pt;}
.ws20{word-spacing:15.461955pt;}
.ws18b{word-spacing:15.557635pt;}
.ws8a{word-spacing:15.727625pt;}
.wsbd{word-spacing:15.887026pt;}
.ws18{word-spacing:15.940160pt;}
.ws17a{word-spacing:15.940200pt;}
.ws3e{word-spacing:15.993294pt;}
.ws17b{word-spacing:16.025214pt;}
.ws48{word-spacing:16.046428pt;}
.ws184{word-spacing:16.195243pt;}
.ws47{word-spacing:16.258963pt;}
.ws83{word-spacing:16.312097pt;}
.wsfc{word-spacing:16.365231pt;}
.wsd6{word-spacing:16.577766pt;}
.ws84{word-spacing:16.843436pt;}
.wse0{word-spacing:16.846667pt;}
.ws133{word-spacing:16.949703pt;}
.ws41{word-spacing:17.162239pt;}
.ws9f{word-spacing:17.374774pt;}
.wsd4{word-spacing:17.583616pt;}
.wsd2{word-spacing:17.585318pt;}
.wsce{word-spacing:17.586907pt;}
.wsd5{word-spacing:17.587310pt;}
.wsd3{word-spacing:17.591230pt;}
.ws12e{word-spacing:17.661574pt;}
.wsdb{word-spacing:17.852979pt;}
.wsda{word-spacing:17.868009pt;}
.ws13e{word-spacing:18.093574pt;}
.ws9a{word-spacing:18.118649pt;}
.ws2f{word-spacing:18.224916pt;}
.ws54{word-spacing:18.331184pt;}
.ws14a{word-spacing:18.384318pt;}
.ws95{word-spacing:18.437452pt;}
.ws108{word-spacing:18.544678pt;}
.ws185{word-spacing:18.745675pt;}
.wsc0{word-spacing:19.021924pt;}
.ws82{word-spacing:19.287594pt;}
.ws3f{word-spacing:19.500129pt;}
.wsa4{word-spacing:19.537089pt;}
.wsa7{word-spacing:19.553263pt;}
.ws98{word-spacing:19.797319pt;}
.ws12f{word-spacing:19.864241pt;}
.ws16{word-spacing:19.893453pt;}
.wsdf{word-spacing:20.064302pt;}
.ws153{word-spacing:20.297137pt;}
.ws11a{word-spacing:20.403405pt;}
.ws81{word-spacing:20.615940pt;}
.ws14b{word-spacing:21.471986pt;}
.ws11f{word-spacing:22.357275pt;}
.ws131{word-spacing:22.941574pt;}
.wse7{word-spacing:22.984177pt;}
.ws10f{word-spacing:23.409506pt;}
.ws91{word-spacing:23.457466pt;}
.wse4{word-spacing:24.418844pt;}
.ws11c{word-spacing:25.439986pt;}
.ws97{word-spacing:25.983986pt;}
.wsd7{word-spacing:26.165636pt;}
.ws121{word-spacing:27.122000pt;}
.ws16d{word-spacing:28.224781pt;}
.ws3{word-spacing:28.958347pt;}
.ws2{word-spacing:28.995345pt;}
.ws93{word-spacing:29.697540pt;}
.wsd9{word-spacing:30.074969pt;}
.ws14e{word-spacing:31.061319pt;}
.ws126{word-spacing:31.475824pt;}
.wse1{word-spacing:32.752302pt;}
.wsb9{word-spacing:39.905882pt;}
.ws139{word-spacing:55.255600pt;}
.ws144{word-spacing:55.260933pt;}
.ws12a{word-spacing:59.245574pt;}
.ws12b{word-spacing:66.322907pt;}
.ws143{word-spacing:68.751766pt;}
.ws138{word-spacing:68.757099pt;}
.ws13b{word-spacing:75.026807pt;}
.ws145{word-spacing:79.741474pt;}
.ws13c{word-spacing:79.746807pt;}
._15{margin-left:-14.689643pt;}
._0{margin-left:-10.201728pt;}
._f{margin-left:-5.950993pt;}
._8{margin-left:-4.941488pt;}
._3{margin-left:-3.188040pt;}
._1{margin-left:-2.295389pt;}
._2{margin-left:-1.275216pt;}
._4{width:1.752237pt;}
._5{width:3.522786pt;}
._6{width:4.425445pt;}
._18{width:9.431109pt;}
._19{width:12.964663pt;}
._b{width:14.186742pt;}
._17{width:16.471502pt;}
._21{width:18.004730pt;}
._a{width:19.553266pt;}
._9{width:20.520305pt;}
._c{width:22.316224pt;}
._16{width:24.654114pt;}
._7{width:25.918874pt;}
._10{width:26.938878pt;}
._d{width:30.456929pt;}
._e{width:31.739280pt;}
._1a{width:39.242925pt;}
._20{width:42.632825pt;}
._23{width:45.160325pt;}
._22{width:49.441493pt;}
._11{width:66.694639pt;}
._1f{width:78.636996pt;}
._1e{width:89.563595pt;}
._1d{width:92.007647pt;}
._1c{width:96.429810pt;}
._1b{width:109.329802pt;}
._14{width:240.594652pt;}
._12{width:246.859973pt;}
._13{width:384.623467pt;}
.fs7{font-size:26.566933pt;}
.fs8{font-size:31.880533pt;}
.fs5{font-size:34.005867pt;}
.fs6{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:100.740000pt;}
.y1c7{bottom:112.696000pt;}
.y10f{bottom:116.445333pt;}
.y30{bottom:116.680000pt;}
.yb4{bottom:116.681333pt;}
.y1c6{bottom:124.866667pt;}
.y51{bottom:132.620000pt;}
.y2f{bottom:132.621333pt;}
.yb3{bottom:136.665333pt;}
.y1c5{bottom:136.822667pt;}
.y10e{bottom:142.457333pt;}
.y2e{bottom:148.561333pt;}
.y1c4{bottom:148.777333pt;}
.y10d{bottom:158.397333pt;}
.yb2{bottom:160.736000pt;}
.y1c3{bottom:160.948000pt;}
.y2d{bottom:164.501333pt;}
.y161{bottom:168.744000pt;}
.y1c2{bottom:172.904000pt;}
.y10c{bottom:174.337333pt;}
.yb1{bottom:176.676000pt;}
.y2c{bottom:180.441333pt;}
.y1c1{bottom:184.858667pt;}
.y10b{bottom:190.278667pt;}
.yb0{bottom:192.616000pt;}
.y50{bottom:196.381333pt;}
.y1c0{bottom:197.030667pt;}
.y2b{bottom:197.132000pt;}
.y10a{bottom:206.218667pt;}
.yaf{bottom:208.556000pt;}
.y1bf{bottom:208.985333pt;}
.y4f{bottom:212.321333pt;}
.y134{bottom:212.322667pt;}
.y2a{bottom:213.072000pt;}
.y160{bottom:216.598667pt;}
.y1be{bottom:220.940000pt;}
.y109{bottom:222.158667pt;}
.yae{bottom:224.496000pt;}
.y4e{bottom:228.261333pt;}
.y7e{bottom:228.262667pt;}
.y29{bottom:229.012000pt;}
.y15f{bottom:229.085333pt;}
.y1bd{bottom:232.896000pt;}
.y108{bottom:238.098667pt;}
.yad{bottom:240.437333pt;}
.y15e{bottom:241.570667pt;}
.y4d{bottom:244.202667pt;}
.y28{bottom:244.953333pt;}
.y1bc{bottom:245.066667pt;}
.ydd{bottom:249.998667pt;}
.y107{bottom:254.038667pt;}
.y15d{bottom:254.057333pt;}
.yac{bottom:256.377333pt;}
.y1bb{bottom:257.022667pt;}
.y4c{bottom:260.142667pt;}
.y27{bottom:260.893333pt;}
.y1ba{bottom:269.193333pt;}
.y106{bottom:269.978667pt;}
.yab{bottom:272.317333pt;}
.y4b{bottom:276.082667pt;}
.y26{bottom:276.833333pt;}
.y7d{bottom:277.389333pt;}
.y15c{bottom:278.012000pt;}
.ydc{bottom:278.818667pt;}
.y1b9{bottom:281.148000pt;}
.y105{bottom:285.920000pt;}
.yaa{bottom:288.257333pt;}
.y15b{bottom:289.968000pt;}
.y4a{bottom:292.022667pt;}
.y25{bottom:292.773333pt;}
.y133{bottom:292.976000pt;}
.y1b8{bottom:293.104000pt;}
.y7c{bottom:293.329333pt;}
.y188{bottom:294.626667pt;}
.ydb{bottom:294.758667pt;}
.y104{bottom:302.922667pt;}
.ya9{bottom:304.058667pt;}
.y1b7{bottom:305.274667pt;}
.y49{bottom:307.962667pt;}
.y24{bottom:308.713333pt;}
.y132{bottom:308.916000pt;}
.y7b{bottom:309.269333pt;}
.y187{bottom:310.566667pt;}
.yda{bottom:311.160000pt;}
.y1b6{bottom:317.230667pt;}
.y103{bottom:318.862667pt;}
.ya8{bottom:319.998667pt;}
.y15a{bottom:322.377333pt;}
.y48{bottom:323.902667pt;}
.y23{bottom:324.653333pt;}
.y131{bottom:324.856000pt;}
.y7a{bottom:325.209333pt;}
.y186{bottom:326.506667pt;}
.yd9{bottom:327.100000pt;}
.y1b5{bottom:329.185333pt;}
.y102{bottom:334.802667pt;}
.ya7{bottom:335.938667pt;}
.y159{bottom:338.317333pt;}
.y47{bottom:339.844000pt;}
.y22{bottom:340.594667pt;}
.y130{bottom:340.796000pt;}
.y1b4{bottom:341.140000pt;}
.y79{bottom:341.149333pt;}
.y185{bottom:342.448000pt;}
.yd8{bottom:343.040000pt;}
.y101{bottom:350.742667pt;}
.ya6{bottom:351.878667pt;}
.y1b3{bottom:353.096000pt;}
.y158{bottom:354.257333pt;}
.y46{bottom:355.784000pt;}
.y21{bottom:356.534667pt;}
.y12f{bottom:356.736000pt;}
.y78{bottom:357.090667pt;}
.y184{bottom:358.388000pt;}
.yd7{bottom:358.980000pt;}
.y1b2{bottom:365.266667pt;}
.y100{bottom:366.682667pt;}
.ya5{bottom:367.818667pt;}
.y157{bottom:370.197333pt;}
.y45{bottom:371.724000pt;}
.y20{bottom:372.474667pt;}
.y12e{bottom:372.677333pt;}
.y77{bottom:373.030667pt;}
.y183{bottom:374.328000pt;}
.yd6{bottom:374.920000pt;}
.y1b1{bottom:377.222667pt;}
.yff{bottom:382.622667pt;}
.ya4{bottom:383.758667pt;}
.y156{bottom:386.138667pt;}
.y44{bottom:387.664000pt;}
.y1f{bottom:388.414667pt;}
.y12d{bottom:388.617333pt;}
.y76{bottom:388.970667pt;}
.y1b0{bottom:389.177333pt;}
.yd5{bottom:390.860000pt;}
.y182{bottom:392.872000pt;}
.yfe{bottom:398.564000pt;}
.ya3{bottom:399.700000pt;}
.y1af{bottom:401.132000pt;}
.y155{bottom:402.078667pt;}
.y43{bottom:403.604000pt;}
.y1e{bottom:404.354667pt;}
.y75{bottom:404.910667pt;}
.y181{bottom:408.812000pt;}
.yd4{bottom:410.429333pt;}
.y12c{bottom:412.074667pt;}
.y1ae{bottom:413.088000pt;}
.yfd{bottom:414.504000pt;}
.ya2{bottom:415.640000pt;}
.y154{bottom:418.018667pt;}
.y42{bottom:419.545333pt;}
.y1d{bottom:420.294667pt;}
.y74{bottom:420.850667pt;}
.y180{bottom:424.752000pt;}
.y1ad{bottom:425.258667pt;}
.yd3{bottom:426.369333pt;}
.yfc{bottom:430.444000pt;}
.ya1{bottom:431.580000pt;}
.y153{bottom:433.958667pt;}
.y41{bottom:435.485333pt;}
.y1c{bottom:436.236000pt;}
.y73{bottom:436.790667pt;}
.y1ac{bottom:437.214667pt;}
.y17f{bottom:440.692000pt;}
.yd2{bottom:442.310667pt;}
.y12b{bottom:445.074667pt;}
.yfb{bottom:446.384000pt;}
.ya0{bottom:447.520000pt;}
.y1ab{bottom:449.169333pt;}
.y152{bottom:449.898667pt;}
.y40{bottom:451.425333pt;}
.y72{bottom:452.732000pt;}
.y17e{bottom:456.632000pt;}
.yd1{bottom:458.250667pt;}
.y1b{bottom:460.862667pt;}
.y12a{bottom:461.016000pt;}
.y1aa{bottom:461.124000pt;}
.y9f{bottom:463.460000pt;}
.y151{bottom:465.838667pt;}
.y3f{bottom:467.365333pt;}
.y71{bottom:468.672000pt;}
.yfa{bottom:470.226667pt;}
.y17d{bottom:472.573333pt;}
.y1a9{bottom:473.296000pt;}
.yd0{bottom:474.190667pt;}
.y129{bottom:476.956000pt;}
.y9e{bottom:479.400000pt;}
.y150{bottom:481.780000pt;}
.y3e{bottom:483.305333pt;}
.y70{bottom:484.612000pt;}
.y1a8{bottom:485.250667pt;}
.y17c{bottom:488.513333pt;}
.ycf{bottom:490.130667pt;}
.y128{bottom:492.896000pt;}
.y9d{bottom:495.341333pt;}
.y1a{bottom:495.838667pt;}
.y1a7{bottom:497.206667pt;}
.y14f{bottom:497.720000pt;}
.y3d{bottom:499.245333pt;}
.y6f{bottom:500.552000pt;}
.yf9{bottom:504.164000pt;}
.y17b{bottom:504.453333pt;}
.yce{bottom:506.070667pt;}
.y127{bottom:508.836000pt;}
.y19{bottom:509.122667pt;}
.y1a6{bottom:509.161333pt;}
.y9c{bottom:511.281333pt;}
.y14e{bottom:513.660000pt;}
.y3c{bottom:515.186667pt;}
.y6e{bottom:516.492000pt;}
.yf8{bottom:520.104000pt;}
.y17a{bottom:520.393333pt;}
.y1a5{bottom:521.116000pt;}
.y18{bottom:523.156000pt;}
.ycd{bottom:525.640000pt;}
.y126{bottom:525.729333pt;}
.y9b{bottom:527.221333pt;}
.y3b{bottom:531.126667pt;}
.y6d{bottom:532.432000pt;}
.y1a4{bottom:533.288000pt;}
.yf7{bottom:536.044000pt;}
.y179{bottom:536.333333pt;}
.y17{bottom:536.440000pt;}
.ycc{bottom:541.580000pt;}
.y125{bottom:541.669333pt;}
.y9a{bottom:543.161333pt;}
.y1a3{bottom:545.242667pt;}
.y3a{bottom:547.066667pt;}
.y6c{bottom:548.373333pt;}
.y16{bottom:549.724000pt;}
.yf6{bottom:551.985333pt;}
.y178{bottom:552.273333pt;}
.y14d{bottom:555.096000pt;}
.y1a2{bottom:557.198667pt;}
.ycb{bottom:557.520000pt;}
.y124{bottom:557.609333pt;}
.y99{bottom:559.101333pt;}
.y15{bottom:563.006667pt;}
.y6b{bottom:564.313333pt;}
.y14c{bottom:567.582667pt;}
.yf5{bottom:567.925333pt;}
.y177{bottom:568.214667pt;}
.y1a1{bottom:569.369333pt;}
.y123{bottom:573.549333pt;}
.y98{bottom:574.901333pt;}
.y14{bottom:576.290667pt;}
.y39{bottom:578.946667pt;}
.yca{bottom:579.256000pt;}
.y14b{bottom:580.069333pt;}
.y6a{bottom:580.253333pt;}
.y1a0{bottom:581.325333pt;}
.y176{bottom:584.154667pt;}
.yf4{bottom:584.928000pt;}
.y13{bottom:589.574667pt;}
.y97{bottom:590.842667pt;}
.y14a{bottom:592.024000pt;}
.y19f{bottom:593.280000pt;}
.y38{bottom:594.886667pt;}
.y69{bottom:597.500000pt;}
.y175{bottom:600.094667pt;}
.yf3{bottom:600.868000pt;}
.y122{bottom:602.688000pt;}
.y12{bottom:602.857333pt;}
.y19e{bottom:605.450667pt;}
.y96{bottom:606.782667pt;}
.yc9{bottom:608.077333pt;}
.y37{bottom:610.828000pt;}
.y68{bottom:613.440000pt;}
.y149{bottom:615.004000pt;}
.y11{bottom:616.141333pt;}
.yf2{bottom:616.808000pt;}
.y19d{bottom:617.406667pt;}
.y174{bottom:618.638667pt;}
.y95{bottom:622.722667pt;}
.yc8{bottom:624.017333pt;}
.y36{bottom:626.768000pt;}
.y148{bottom:626.960000pt;}
.y67{bottom:629.380000pt;}
.y10{bottom:629.424000pt;}
.y121{bottom:631.828000pt;}
.yf1{bottom:632.748000pt;}
.y173{bottom:634.578667pt;}
.y94{bottom:638.662667pt;}
.y147{bottom:638.914667pt;}
.y19c{bottom:639.466667pt;}
.yc7{bottom:639.957333pt;}
.yf{bottom:642.708000pt;}
.y66{bottom:645.320000pt;}
.y120{bottom:647.768000pt;}
.yf0{bottom:648.688000pt;}
.y172{bottom:650.518667pt;}
.y93{bottom:654.602667pt;}
.yc6{bottom:655.897333pt;}
.ye{bottom:655.992000pt;}
.y35{bottom:658.648000pt;}
.y65{bottom:661.261333pt;}
.y11f{bottom:663.708000pt;}
.yef{bottom:664.629333pt;}
.y171{bottom:666.458667pt;}
.y19b{bottom:667.680000pt;}
.y146{bottom:668.634667pt;}
.yd{bottom:669.274667pt;}
.y92{bottom:670.544000pt;}
.yc5{bottom:671.837333pt;}
.y34{bottom:674.588000pt;}
.y64{bottom:677.201333pt;}
.yee{bottom:680.569333pt;}
.y11e{bottom:680.600000pt;}
.y170{bottom:682.398667pt;}
.yc{bottom:682.558667pt;}
.y19a{bottom:683.621333pt;}
.y145{bottom:684.574667pt;}
.y91{bottom:686.484000pt;}
.yc4{bottom:688.238667pt;}
.y33{bottom:690.528000pt;}
.y63{bottom:693.141333pt;}
.yb{bottom:695.842667pt;}
.yed{bottom:696.509333pt;}
.y11d{bottom:696.540000pt;}
.y16f{bottom:698.340000pt;}
.y199{bottom:699.561333pt;}
.y144{bottom:700.514667pt;}
.y90{bottom:702.424000pt;}
.yc3{bottom:704.178667pt;}
.y32{bottom:706.469333pt;}
.ya{bottom:709.125333pt;}
.y62{bottom:710.388000pt;}
.yec{bottom:712.449333pt;}
.y11c{bottom:712.481333pt;}
.y16e{bottom:714.280000pt;}
.y198{bottom:715.501333pt;}
.y143{bottom:716.456000pt;}
.y8f{bottom:718.364000pt;}
.yc2{bottom:720.118667pt;}
.y9{bottom:722.409333pt;}
.y61{bottom:726.328000pt;}
.yeb{bottom:728.389333pt;}
.y11b{bottom:728.421333pt;}
.y16d{bottom:730.220000pt;}
.y197{bottom:731.441333pt;}
.y8e{bottom:734.304000pt;}
.yc1{bottom:736.058667pt;}
.y142{bottom:736.638667pt;}
.y1d8{bottom:738.349333pt;}
.y60{bottom:742.268000pt;}
.yea{bottom:744.330667pt;}
.y11a{bottom:744.361333pt;}
.y16c{bottom:746.160000pt;}
.y196{bottom:747.381333pt;}
.y8d{bottom:750.244000pt;}
.y1d7{bottom:750.305333pt;}
.yc0{bottom:751.998667pt;}
.y5f{bottom:758.208000pt;}
.ye9{bottom:760.270667pt;}
.y119{bottom:760.301333pt;}
.y141{bottom:761.686667pt;}
.y1d6{bottom:762.260000pt;}
.y195{bottom:763.321333pt;}
.y16b{bottom:764.704000pt;}
.y8c{bottom:766.185333pt;}
.ybf{bottom:767.940000pt;}
.y5e{bottom:774.148000pt;}
.y1d5{bottom:774.214667pt;}
.ye8{bottom:776.210667pt;}
.y118{bottom:776.241333pt;}
.y140{bottom:777.626667pt;}
.y194{bottom:779.262667pt;}
.y16a{bottom:780.644000pt;}
.y8b{bottom:782.125333pt;}
.ybe{bottom:783.880000pt;}
.y1d4{bottom:786.170667pt;}
.y5d{bottom:790.089333pt;}
.y8{bottom:792.453333pt;}
.y13f{bottom:793.566667pt;}
.y193{bottom:795.592000pt;}
.y169{bottom:796.584000pt;}
.y7{bottom:797.274667pt;}
.y8a{bottom:798.065333pt;}
.y1d3{bottom:798.125333pt;}
.ybd{bottom:799.820000pt;}
.ye7{bottom:800.053333pt;}
.y116{bottom:800.722667pt;}
.y117{bottom:801.573333pt;}
.y5c{bottom:806.029333pt;}
.y6{bottom:809.286667pt;}
.y13e{bottom:809.506667pt;}
.y1d2{bottom:810.080000pt;}
.y192{bottom:811.532000pt;}
.y168{bottom:812.524000pt;}
.y89{bottom:814.005333pt;}
.ybc{bottom:815.760000pt;}
.y5b{bottom:821.969333pt;}
.y1d1{bottom:822.036000pt;}
.y13d{bottom:825.448000pt;}
.y5{bottom:827.040000pt;}
.y191{bottom:827.472000pt;}
.y167{bottom:828.465333pt;}
.y88{bottom:829.945333pt;}
.ybb{bottom:831.700000pt;}
.ye6{bottom:833.990667pt;}
.y5a{bottom:837.909333pt;}
.y115{bottom:838.250667pt;}
.y13c{bottom:841.388000pt;}
.y190{bottom:843.412000pt;}
.y166{bottom:844.405333pt;}
.y4{bottom:844.793333pt;}
.y87{bottom:845.885333pt;}
.y1d0{bottom:845.946667pt;}
.yba{bottom:847.640000pt;}
.ye5{bottom:849.930667pt;}
.y59{bottom:853.849333pt;}
.y114{bottom:854.190667pt;}
.y13b{bottom:857.328000pt;}
.y1cf{bottom:857.901333pt;}
.y18f{bottom:859.352000pt;}
.y86{bottom:861.826667pt;}
.yb9{bottom:863.581333pt;}
.ye4{bottom:865.870667pt;}
.y58{bottom:869.789333pt;}
.y1ce{bottom:869.856000pt;}
.y113{bottom:871.082667pt;}
.y13a{bottom:873.285333pt;}
.y18e{bottom:875.292000pt;}
.y85{bottom:877.766667pt;}
.ye3{bottom:881.810667pt;}
.y1cd{bottom:881.812000pt;}
.y57{bottom:885.730667pt;}
.y3{bottom:886.636000pt;}
.y112{bottom:887.022667pt;}
.y139{bottom:889.225333pt;}
.y18d{bottom:891.233333pt;}
.y84{bottom:893.706667pt;}
.y1cc{bottom:893.766667pt;}
.ye2{bottom:897.752000pt;}
.y56{bottom:901.670667pt;}
.y165{bottom:904.084000pt;}
.y138{bottom:905.165333pt;}
.y1cb{bottom:905.721333pt;}
.y18c{bottom:907.173333pt;}
.y83{bottom:909.646667pt;}
.ye1{bottom:913.692000pt;}
.y164{bottom:916.570667pt;}
.yb8{bottom:917.544000pt;}
.y55{bottom:917.610667pt;}
.y1ca{bottom:917.677333pt;}
.y137{bottom:921.105333pt;}
.y18b{bottom:923.113333pt;}
.y2{bottom:923.830667pt;}
.y110{bottom:923.985333pt;}
.y111{bottom:924.836000pt;}
.y82{bottom:925.586667pt;}
.y163{bottom:929.056000pt;}
.ye0{bottom:929.632000pt;}
.yb7{bottom:930.030667pt;}
.y54{bottom:933.550667pt;}
.y136{bottom:937.045333pt;}
.y18a{bottom:939.053333pt;}
.y81{bottom:941.526667pt;}
.y162{bottom:941.542667pt;}
.y1c9{bottom:941.588000pt;}
.yb6{bottom:942.517333pt;}
.ydf{bottom:945.572000pt;}
.y53{bottom:949.490667pt;}
.y1c8{bottom:953.542667pt;}
.y189{bottom:954.993333pt;}
.y135{bottom:957.228000pt;}
.y80{bottom:957.468000pt;}
.y1{bottom:961.024000pt;}
.yde{bottom:961.512000pt;}
.yb5{bottom:965.497333pt;}
.y7f{bottom:977.452000pt;}
.y52{bottom:977.453333pt;}
.h12{height:0.000000pt;}
.hf{height:21.933807pt;}
.h14{height:29.032418pt;}
.h9{height:29.244954pt;}
.h15{height:29.458287pt;}
.h3{height:31.880400pt;}
.h6{height:33.044173pt;}
.h11{height:33.153434pt;}
.h5{height:33.426739pt;}
.hb{height:36.290431pt;}
.h4{height:36.556100pt;}
.ha{height:37.459376pt;}
.h8{height:38.734589pt;}
.h7{height:39.850400pt;}
.h13{height:39.855733pt;}
.hc{height:44.869197pt;}
.he{height:45.464294pt;}
.hd{height:45.469628pt;}
.h2{height:52.995067pt;}
.h10{height:85.813333pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:65.512000pt;}
.x7{left:69.934667pt;}
.x12{left:74.456000pt;}
.x10{left:76.377333pt;}
.x4{left:78.042667pt;}
.x24{left:79.897333pt;}
.x27{left:89.418667pt;}
.x28{left:90.598667pt;}
.x26{left:92.793333pt;}
.x13{left:97.604000pt;}
.x2{left:108.262667pt;}
.x25{left:154.497333pt;}
.xc{left:168.770667pt;}
.x9{left:180.825333pt;}
.x11{left:188.449333pt;}
.x23{left:208.566667pt;}
.xf{left:212.402667pt;}
.x15{left:222.301333pt;}
.x3{left:275.777333pt;}
.x5{left:291.428000pt;}
.x6{left:327.321333pt;}
.x16{left:384.541333pt;}
.xa{left:415.970667pt;}
.x19{left:417.014667pt;}
.x2a{left:421.284000pt;}
.x14{left:426.597333pt;}
.x22{left:427.765333pt;}
.xb{left:429.253333pt;}
.x20{left:430.581333pt;}
.x2b{left:440.316000pt;}
.x1d{left:454.336000pt;}
.x1e{left:456.105333pt;}
.x2c{left:477.966667pt;}
.x21{left:492.844000pt;}
.x1c{left:495.253333pt;}
.x1b{left:499.057333pt;}
.x1a{left:504.036000pt;}
.x2e{left:516.545333pt;}
.x2d{left:522.153333pt;}
.xe{left:525.400000pt;}
.x17{left:533.065333pt;}
.xd{left:536.784000pt;}
.x29{left:546.149333pt;}
.x1f{left:559.549333pt;}
.x18{left:561.318667pt;}
.x2f{left:617.750667pt;}
.x8{left:669.514667pt;}
}


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