
/* 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_1bd52b65fa95.woff")format("woff");}.ff1{font-family:ff1;line-height:1.090000;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_20d17cec9b96.woff")format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_bde178558da0.woff")format("woff");}.ff3{font-family:ff3;line-height:0.965000;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_f3a5255b084a.woff")format("woff");}.ff4{font-family:ff4;line-height:1.015000;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_b6cb157b3cc5.woff")format("woff");}.ff5{font-family:ff5;line-height:0.717000;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_9b9b1b0f14cd.woff")format("woff");}.ff6{font-family:ff6;line-height:0.946021;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_84a1ef679e43.woff")format("woff");}.ff7{font-family:ff7;line-height:0.389000;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_8710b7aaea03.woff")format("woff");}.ff8{font-family:ff8;line-height:0.973000;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_2dae6a748406.woff")format("woff");}.ff9{font-family:ff9;line-height:0.998000;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_c4d6b1ebbbdc.woff")format("woff");}.ffa{font-family:ffa;line-height:0.799000;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_f84858c0f23c.woff")format("woff");}.ffb{font-family:ffb;line-height:0.969000;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_a1db43d7fef9.woff")format("woff");}.ffc{font-family:ffc;line-height:0.774000;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_c5ce0f7d28b6.woff")format("woff");}.ffd{font-family:ffd;line-height:0.938000;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_c18131d86e1f.woff")format("woff");}.ffe{font-family:ffe;line-height:0.938000;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_2314dfca7327.woff")format("woff");}.fff{font-family:fff;line-height:0.978000;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_e6e800cab219.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_36ce4a6229c8.woff")format("woff");}.ff11{font-family:ff11;line-height:0.590000;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_fbd9a1ff943b.woff")format("woff");}.ff12{font-family:ff12;line-height:0.700000;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_b5c624651ff0.woff")format("woff");}.ff13{font-family:ff13;line-height:0.656000;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);}
.m2{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-19.388400px;}
.v2{vertical-align:-11.226600px;}
.v4{vertical-align:-7.826400px;}
.v5{vertical-align:-6.462600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.420745px;}
.v1{vertical-align:12.243600px;}
.v6{vertical-align:19.390800px;}
.ls2d{letter-spacing:-2.068774px;}
.ls2e{letter-spacing:-2.063974px;}
.ls4a{letter-spacing:-1.722600px;}
.ls51{letter-spacing:-1.717200px;}
.ls4e{letter-spacing:-1.711800px;}
.ls43{letter-spacing:-1.706400px;}
.ls46{letter-spacing:-1.701000px;}
.ls4f{letter-spacing:-1.679400px;}
.ls42{letter-spacing:-1.674000px;}
.ls56{letter-spacing:-1.598400px;}
.ls69{letter-spacing:-1.555200px;}
.ls44{letter-spacing:-1.549800px;}
.ls47{letter-spacing:-1.544400px;}
.ls52{letter-spacing:-1.528200px;}
.ls45{letter-spacing:-1.522800px;}
.ls49{letter-spacing:-1.518997px;}
.ls4b{letter-spacing:-1.495800px;}
.ls29{letter-spacing:-1.490400px;}
.ls23{letter-spacing:-1.485000px;}
.ls53{letter-spacing:-1.479600px;}
.ls41{letter-spacing:-1.468800px;}
.ls50{letter-spacing:-1.463400px;}
.ls58{letter-spacing:-1.458000px;}
.ls26{letter-spacing:-1.452600px;}
.ls55{letter-spacing:-1.447200px;}
.ls4d{letter-spacing:-1.440180px;}
.ls4c{letter-spacing:-1.377000px;}
.ls2c{letter-spacing:-1.371600px;}
.ls40{letter-spacing:-1.366200px;}
.ls25{letter-spacing:-1.339200px;}
.ls1b{letter-spacing:-1.333800px;}
.ls28{letter-spacing:-1.317600px;}
.ls2a{letter-spacing:-1.285200px;}
.ls24{letter-spacing:-1.274400px;}
.ls27{letter-spacing:-1.216638px;}
.ls3f{letter-spacing:-1.182600px;}
.ls19{letter-spacing:-1.171800px;}
.ls11{letter-spacing:-1.150200px;}
.ls14{letter-spacing:-1.144800px;}
.ls18{letter-spacing:-1.139400px;}
.ls16{letter-spacing:-1.123200px;}
.ls60{letter-spacing:-1.117800px;}
.ls12{letter-spacing:-1.112400px;}
.ls1c{letter-spacing:-1.101600px;}
.ls1a{letter-spacing:-1.036800px;}
.lsf{letter-spacing:-1.031400px;}
.ls10{letter-spacing:-0.999000px;}
.ls15{letter-spacing:-0.993600px;}
.ls61{letter-spacing:-0.988200px;}
.ls6c{letter-spacing:-0.966600px;}
.ls1d{letter-spacing:-0.945000px;}
.ls64{letter-spacing:-0.939600px;}
.lsc{letter-spacing:-0.928800px;}
.ls17{letter-spacing:-0.918000px;}
.ls2b{letter-spacing:-0.917878px;}
.ls1e{letter-spacing:-0.914278px;}
.ls13{letter-spacing:-0.907200px;}
.lsa{letter-spacing:-0.869400px;}
.ls68{letter-spacing:-0.842400px;}
.ls59{letter-spacing:-0.826200px;}
.ls5a{letter-spacing:-0.815400px;}
.lsb{letter-spacing:-0.810000px;}
.ls75{letter-spacing:-0.805489px;}
.lsd{letter-spacing:-0.804600px;}
.ls5c{letter-spacing:-0.799200px;}
.ls67{letter-spacing:-0.793800px;}
.lse{letter-spacing:-0.777600px;}
.ls22{letter-spacing:-0.772200px;}
.ls73{letter-spacing:-0.764990px;}
.ls5b{letter-spacing:-0.759780px;}
.ls74{letter-spacing:-0.728990px;}
.ls72{letter-spacing:-0.697491px;}
.ls21{letter-spacing:-0.696600px;}
.ls20{letter-spacing:-0.615518px;}
.ls1f{letter-spacing:-0.611918px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.003200px;}
.ls65{letter-spacing:0.003780px;}
.ls5{letter-spacing:0.048600px;}
.ls30{letter-spacing:0.124200px;}
.ls33{letter-spacing:0.147420px;}
.ls6e{letter-spacing:0.220492px;}
.ls38{letter-spacing:0.260820px;}
.ls70{letter-spacing:0.292496px;}
.ls3d{letter-spacing:2.869800px;}
.ls37{letter-spacing:2.983380px;}
.ls6b{letter-spacing:2.983800px;}
.ls31{letter-spacing:2.983980px;}
.ls3c{letter-spacing:3.210000px;}
.ls6d{letter-spacing:3.278369px;}
.ls71{letter-spacing:5.696924px;}
.ls2{letter-spacing:7.894800px;}
.ls2f{letter-spacing:9.104400px;}
.ls3e{letter-spacing:9.169200px;}
.ls32{letter-spacing:11.826000px;}
.ls3a{letter-spacing:11.827800px;}
.ls39{letter-spacing:11.890800px;}
.ls54{letter-spacing:11.977200px;}
.ls35{letter-spacing:12.166200px;}
.ls48{letter-spacing:12.430800px;}
.ls5f{letter-spacing:12.538800px;}
.ls1{letter-spacing:13.484275px;}
.ls5d{letter-spacing:13.591800px;}
.ls4{letter-spacing:13.737600px;}
.ls7{letter-spacing:13.867200px;}
.ls3b{letter-spacing:14.077800px;}
.ls6{letter-spacing:14.207400px;}
.ls62{letter-spacing:14.887800px;}
.ls34{letter-spacing:15.229380px;}
.ls6a{letter-spacing:15.654600px;}
.ls66{letter-spacing:17.820000px;}
.ls8{letter-spacing:20.013562px;}
.ls57{letter-spacing:20.541600px;}
.ls63{letter-spacing:21.352200px;}
.ls3{letter-spacing:23.731618px;}
.ls36{letter-spacing:24.073380px;}
.ls6f{letter-spacing:27.430182px;}
.ls5e{letter-spacing:28.863000px;}
.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;}
}
.wsbd{word-spacing:-28.917000px;}
.wsa6{word-spacing:-20.595600px;}
.ws10d{word-spacing:-17.874000px;}
.ws3{word-spacing:-16.980000px;}
.ws2{word-spacing:-15.282000px;}
.wsab{word-spacing:-14.131800px;}
.wsb9{word-spacing:-13.645800px;}
.ws0{word-spacing:-12.735000px;}
.wsc1{word-spacing:-12.592800px;}
.ws80{word-spacing:-12.484800px;}
.ws9f{word-spacing:-12.031200px;}
.ws119{word-spacing:-9.223200px;}
.ws8{word-spacing:-0.054000px;}
.ws18{word-spacing:-0.047999px;}
.ws159{word-spacing:-0.044999px;}
.wse7{word-spacing:-0.041580px;}
.ws1b{word-spacing:-0.037800px;}
.wse{word-spacing:-0.035995px;}
.ws19e{word-spacing:-0.031499px;}
.ws1a7{word-spacing:-0.029995px;}
.ws4{word-spacing:0.000000px;}
.ws41{word-spacing:0.575923px;}
.ws4b{word-spacing:0.579523px;}
.ws4a{word-spacing:0.642600px;}
.ws1c6{word-spacing:0.683991px;}
.ws4f{word-spacing:0.718200px;}
.wsb7{word-spacing:0.721980px;}
.wsb1{word-spacing:0.761400px;}
.ws3e{word-spacing:0.878283px;}
.ws38{word-spacing:0.982800px;}
.ws59{word-spacing:1.180643px;}
.ws5d{word-spacing:1.231200px;}
.ws5a{word-spacing:1.285200px;}
.ws9d{word-spacing:1.317600px;}
.ws8d{word-spacing:1.323000px;}
.ws93{word-spacing:1.402380px;}
.ws8b{word-spacing:1.441800px;}
.ws8f{word-spacing:1.657800px;}
.ws96{word-spacing:1.663200px;}
.ws8a{word-spacing:1.668600px;}
.ws68{word-spacing:2.015975px;}
.ws66{word-spacing:2.020775px;}
.ws184{word-spacing:7.751903px;}
.ws177{word-spacing:7.771396px;}
.ws112{word-spacing:8.094600px;}
.wsfb{word-spacing:8.775000px;}
.wsfd{word-spacing:9.103200px;}
.ws102{word-spacing:9.115200px;}
.ws108{word-spacing:9.124200px;}
.wsbc{word-spacing:9.709200px;}
.wsc0{word-spacing:9.828000px;}
.ws121{word-spacing:10.173600px;}
.wsba{word-spacing:10.292400px;}
.wsbe{word-spacing:10.324800px;}
.ws99{word-spacing:10.373400px;}
.ws11e{word-spacing:10.551600px;}
.ws1b6{word-spacing:10.646858px;}
.ws134{word-spacing:10.735200px;}
.ws92{word-spacing:10.773000px;}
.wsa1{word-spacing:10.848600px;}
.ws1c1{word-spacing:10.894355px;}
.ws107{word-spacing:10.918800px;}
.ws1c3{word-spacing:10.966354px;}
.ws1cc{word-spacing:10.979854px;}
.ws155{word-spacing:11.029353px;}
.ws1a4{word-spacing:11.056353px;}
.ws194{word-spacing:11.078852px;}
.ws1c5{word-spacing:11.083352px;}
.ws1bb{word-spacing:11.110352px;}
.ws16f{word-spacing:11.119352px;}
.ws1cd{word-spacing:11.132852px;}
.ws16b{word-spacing:11.141851px;}
.ws137{word-spacing:11.156400px;}
.ws1ad{word-spacing:11.173351px;}
.ws133{word-spacing:11.188800px;}
.wsae{word-spacing:11.194200px;}
.ws18d{word-spacing:11.200351px;}
.ws189{word-spacing:11.209351px;}
.ws1b8{word-spacing:11.218350px;}
.ws1b1{word-spacing:11.227350px;}
.ws15f{word-spacing:11.236350px;}
.ws11f{word-spacing:11.242800px;}
.ws1ba{word-spacing:11.249850px;}
.ws15e{word-spacing:11.254350px;}
.ws1b7{word-spacing:11.258850px;}
.ws1a1{word-spacing:11.276850px;}
.ws17{word-spacing:11.289459px;}
.ws15a{word-spacing:11.290349px;}
.ws16a{word-spacing:11.294849px;}
.ws15d{word-spacing:11.299349px;}
.ws170{word-spacing:11.303849px;}
.ws14{word-spacing:11.327858px;}
.ws195{word-spacing:11.335349px;}
.ws1a3{word-spacing:11.339849px;}
.wsb5{word-spacing:11.377800px;}
.ws19c{word-spacing:11.380348px;}
.ws190{word-spacing:11.389348px;}
.ws1b0{word-spacing:11.402848px;}
.ws1a8{word-spacing:11.434348px;}
.ws15{word-spacing:11.443057px;}
.ws1aa{word-spacing:11.452347px;}
.ws18c{word-spacing:11.465847px;}
.ws165{word-spacing:11.470347px;}
.ws13a{word-spacing:11.496600px;}
.ws175{word-spacing:11.515346px;}
.ws180{word-spacing:11.539056px;}
.ws54{word-spacing:11.550600px;}
.wsf1{word-spacing:11.577600px;}
.ws156{word-spacing:11.600845px;}
.ws130{word-spacing:11.606255px;}
.ws12f{word-spacing:11.625455px;}
.ws17a{word-spacing:11.632345px;}
.ws1a9{word-spacing:11.677344px;}
.ws65{word-spacing:11.711854px;}
.ws11c{word-spacing:11.723400px;}
.wsd5{word-spacing:11.731053px;}
.ws105{word-spacing:11.745000px;}
.ws181{word-spacing:11.750253px;}
.ws1c4{word-spacing:11.753843px;}
.wsd9{word-spacing:11.759853px;}
.ws185{word-spacing:11.774253px;}
.ws67{word-spacing:11.779053px;}
.ws163{word-spacing:11.875342px;}
.ws6a{word-spacing:11.884651px;}
.ws4c{word-spacing:11.912400px;}
.ws1c2{word-spacing:11.915841px;}
.ws16{word-spacing:11.951851px;}
.ws193{word-spacing:11.956341px;}
.ws1c7{word-spacing:11.987840px;}
.ws110{word-spacing:12.004200px;}
.ws164{word-spacing:12.082339px;}
.wsf6{word-spacing:12.139200px;}
.ws10e{word-spacing:12.177000px;}
.ws46{word-spacing:12.252600px;}
.ws183{word-spacing:12.254247px;}
.ws69{word-spacing:12.278247px;}
.ws50{word-spacing:12.344400px;}
.ws171{word-spacing:12.392835px;}
.ws2a{word-spacing:12.479400px;}
.ws176{word-spacing:12.554833px;}
.wsfc{word-spacing:12.657600px;}
.wsd1{word-spacing:12.754800px;}
.ws1ca{word-spacing:12.937327px;}
.wse4{word-spacing:12.938400px;}
.wsd8{word-spacing:13.041437px;}
.wsef{word-spacing:13.105800px;}
.wsed{word-spacing:13.116600px;}
.ws3d{word-spacing:13.132800px;}
.ws73{word-spacing:13.154400px;}
.wsee{word-spacing:13.159800px;}
.wsa{word-spacing:13.170600px;}
.ws11b{word-spacing:13.176000px;}
.ws1c9{word-spacing:13.189324px;}
.ws11d{word-spacing:13.192200px;}
.ws25{word-spacing:13.197600px;}
.wsc2{word-spacing:13.213800px;}
.ws7{word-spacing:13.251600px;}
.ws152{word-spacing:13.267800px;}
.ws115{word-spacing:13.284000px;}
.ws160{word-spacing:13.301823px;}
.ws8c{word-spacing:13.305600px;}
.wsc{word-spacing:13.316400px;}
.ws10{word-spacing:13.321800px;}
.wsb{word-spacing:13.327200px;}
.ws14c{word-spacing:13.332600px;}
.ws1c0{word-spacing:13.342322px;}
.ws11{word-spacing:13.348800px;}
.wsd{word-spacing:13.354200px;}
.wsf5{word-spacing:13.365000px;}
.wsd2{word-spacing:13.381200px;}
.ws9{word-spacing:13.446000px;}
.wsbf{word-spacing:13.456800px;}
.wsf{word-spacing:13.467600px;}
.ws6f{word-spacing:13.483800px;}
.ws12{word-spacing:13.500000px;}
.ws20{word-spacing:13.510800px;}
.ws1a2{word-spacing:13.531320px;}
.ws24{word-spacing:13.537800px;}
.ws3a{word-spacing:13.559400px;}
.ws198{word-spacing:13.589819px;}
.ws27{word-spacing:13.591800px;}
.ws13{word-spacing:13.602600px;}
.ws28{word-spacing:13.624200px;}
.ws199{word-spacing:13.684318px;}
.ws17f{word-spacing:13.713429px;}
.ws7a{word-spacing:13.726800px;}
.ws1ae{word-spacing:13.738317px;}
.wsb4{word-spacing:13.743000px;}
.ws56{word-spacing:13.791600px;}
.wsa8{word-spacing:13.818600px;}
.ws1af{word-spacing:13.850815px;}
.ws76{word-spacing:13.867200px;}
.ws57{word-spacing:14.002200px;}
.ws17e{word-spacing:14.006225px;}
.wse1{word-spacing:14.018400px;}
.ws1d{word-spacing:14.040000px;}
.ws90{word-spacing:14.050800px;}
.ws1bd{word-spacing:14.093812px;}
.ws47{word-spacing:14.126400px;}
.ws5e{word-spacing:14.164200px;}
.ws19d{word-spacing:14.260310px;}
.ws15b{word-spacing:14.269310px;}
.ws16e{word-spacing:14.309809px;}
.wsdb{word-spacing:14.331600px;}
.ws94{word-spacing:14.342400px;}
.ws35{word-spacing:14.385600px;}
.ws79{word-spacing:14.401800px;}
.ws21{word-spacing:14.423400px;}
.ws29{word-spacing:14.553000px;}
.ws188{word-spacing:14.557306px;}
.ws91{word-spacing:14.596200px;}
.ws78{word-spacing:14.655600px;}
.ws9c{word-spacing:14.671740px;}
.ws187{word-spacing:14.674304px;}
.wseb{word-spacing:14.731200px;}
.ws144{word-spacing:14.747400px;}
.ws95{word-spacing:14.758200px;}
.ws1ab{word-spacing:14.773303px;}
.ws186{word-spacing:14.791303px;}
.ws143{word-spacing:14.796000px;}
.ws37{word-spacing:14.806800px;}
.wsa4{word-spacing:14.817600px;}
.ws13e{word-spacing:14.823000px;}
.ws36{word-spacing:14.850000px;}
.ws126{word-spacing:14.871600px;}
.ws34{word-spacing:14.882400px;}
.wse9{word-spacing:14.979600px;}
.ws135{word-spacing:14.985000px;}
.ws97{word-spacing:15.011940px;}
.wsa5{word-spacing:15.012540px;}
.wsd6{word-spacing:15.028612px;}
.wsaa{word-spacing:15.071400px;}
.wsfe{word-spacing:15.136200px;}
.ws1e{word-spacing:15.157800px;}
.wse8{word-spacing:15.201000px;}
.wsff{word-spacing:15.206400px;}
.ws32{word-spacing:15.292800px;}
.wscc{word-spacing:15.346800px;}
.ws182{word-spacing:15.369408px;}
.ws7f{word-spacing:15.406200px;}
.ws33{word-spacing:15.427800px;}
.ws5b{word-spacing:15.438600px;}
.wsac{word-spacing:15.487200px;}
.wsd7{word-spacing:15.503806px;}
.ws14b{word-spacing:15.557400px;}
.wsec{word-spacing:15.579000px;}
.ws2b{word-spacing:15.600600px;}
.ws5c{word-spacing:15.616800px;}
.ws161{word-spacing:15.677791px;}
.ws51{word-spacing:15.768000px;}
.ws1f{word-spacing:15.827400px;}
.ws106{word-spacing:15.838200px;}
.ws1cb{word-spacing:15.857789px;}
.ws1b4{word-spacing:15.884788px;}
.wsfa{word-spacing:15.919200px;}
.ws74{word-spacing:15.930000px;}
.ws64{word-spacing:15.984000px;}
.wsd3{word-spacing:15.993400px;}
.wsf9{word-spacing:16.059600px;}
.wsdf{word-spacing:16.065000px;}
.wsce{word-spacing:16.108200px;}
.wscd{word-spacing:16.167600px;}
.wsdd{word-spacing:16.259400px;}
.ws1a5{word-spacing:16.325782px;}
.ws116{word-spacing:16.335000px;}
.wscb{word-spacing:16.345800px;}
.ws1c8{word-spacing:16.375282px;}
.ws19a{word-spacing:16.379782px;}
.ws3c{word-spacing:16.389000px;}
.ws19b{word-spacing:16.460781px;}
.ws139{word-spacing:16.513200px;}
.wsc7{word-spacing:16.518600px;}
.ws3b{word-spacing:16.545600px;}
.wsc6{word-spacing:16.567200px;}
.ws127{word-spacing:16.599600px;}
.wsb3{word-spacing:16.637400px;}
.ws154{word-spacing:16.676778px;}
.ws128{word-spacing:16.686000px;}
.ws18f{word-spacing:16.712777px;}
.wsd0{word-spacing:16.788600px;}
.ws131{word-spacing:16.848000px;}
.wsca{word-spacing:16.918200px;}
.ws153{word-spacing:16.924274px;}
.ws117{word-spacing:16.988400px;}
.ws118{word-spacing:17.015400px;}
.wscf{word-spacing:17.026200px;}
.wsdc{word-spacing:17.123400px;}
.wsde{word-spacing:17.226000px;}
.wsf0{word-spacing:17.247600px;}
.ws15c{word-spacing:17.252770px;}
.ws44{word-spacing:17.280000px;}
.ws10b{word-spacing:17.366400px;}
.ws18e{word-spacing:17.387768px;}
.ws1a6{word-spacing:17.401268px;}
.ws101{word-spacing:17.420400px;}
.wsd4{word-spacing:17.452582px;}
.wsc9{word-spacing:17.452800px;}
.ws132{word-spacing:17.469000px;}
.ws100{word-spacing:17.609400px;}
.ws17b{word-spacing:17.621765px;}
.ws148{word-spacing:17.625600px;}
.wsaf{word-spacing:17.641800px;}
.ws6e{word-spacing:17.674200px;}
.ws72{word-spacing:17.690400px;}
.wsb2{word-spacing:17.695800px;}
.wsb0{word-spacing:17.722800px;}
.ws71{word-spacing:17.744400px;}
.wsa7{word-spacing:17.755200px;}
.ws12a{word-spacing:17.960400px;}
.ws1b3{word-spacing:18.004260px;}
.ws43{word-spacing:18.046800px;}
.ws40{word-spacing:18.176400px;}
.ws12e{word-spacing:18.196573px;}
.ws138{word-spacing:18.219600px;}
.ws77{word-spacing:18.246600px;}
.ws42{word-spacing:18.268200px;}
.wse3{word-spacing:18.300600px;}
.ws16d{word-spacing:18.409255px;}
.ws58{word-spacing:18.484200px;}
.wsc5{word-spacing:18.678600px;}
.ws172{word-spacing:18.692751px;}
.wse6{word-spacing:18.781200px;}
.wsda{word-spacing:18.819000px;}
.ws13f{word-spacing:18.889200px;}
.wsc3{word-spacing:18.937800px;}
.wsc4{word-spacing:18.975600px;}
.ws70{word-spacing:19.002600px;}
.ws45{word-spacing:19.008000px;}
.ws162{word-spacing:19.012246px;}
.ws22{word-spacing:19.051200px;}
.ws13b{word-spacing:19.067400px;}
.ws17d{word-spacing:19.147245px;}
.ws6d{word-spacing:19.170000px;}
.ws191{word-spacing:19.201244px;}
.ws1c{word-spacing:19.229400px;}
.ws147{word-spacing:19.240200px;}
.ws12c{word-spacing:19.251000px;}
.ws1a{word-spacing:19.310400px;}
.ws49{word-spacing:19.321200px;}
.ws60{word-spacing:19.375200px;}
.ws166{word-spacing:19.471240px;}
.ws10c{word-spacing:19.504800px;}
.ws17c{word-spacing:19.525240px;}
.ws11a{word-spacing:19.558800px;}
.ws1b2{word-spacing:19.588239px;}
.wsad{word-spacing:19.661400px;}
.ws13c{word-spacing:19.726200px;}
.ws129{word-spacing:19.747800px;}
.ws26{word-spacing:19.807200px;}
.ws19{word-spacing:19.812600px;}
.ws192{word-spacing:19.822236px;}
.ws2c{word-spacing:19.958400px;}
.ws23{word-spacing:20.007000px;}
.wse5{word-spacing:20.023200px;}
.ws1be{word-spacing:20.042733px;}
.ws12b{word-spacing:20.125800px;}
.ws140{word-spacing:20.136600px;}
.ws2d{word-spacing:20.314800px;}
.wsc8{word-spacing:20.363400px;}
.ws1bc{word-spacing:20.393728px;}
.ws151{word-spacing:20.660400px;}
.ws16c{word-spacing:20.722224px;}
.ws124{word-spacing:20.768400px;}
.ws168{word-spacing:20.987720px;}
.ws3f{word-spacing:21.108600px;}
.ws142{word-spacing:21.119400px;}
.ws149{word-spacing:21.130200px;}
.ws113{word-spacing:21.205800px;}
.ws141{word-spacing:21.211200px;}
.ws84{word-spacing:21.249000px;}
.ws83{word-spacing:21.335400px;}
.ws104{word-spacing:21.443400px;}
.ws1b9{word-spacing:21.590712px;}
.ws169{word-spacing:21.617712px;}
.wse0{word-spacing:21.702600px;}
.ws125{word-spacing:21.789000px;}
.ws4d{word-spacing:21.821400px;}
.ws48{word-spacing:21.870000px;}
.ws103{word-spacing:21.924000px;}
.ws55{word-spacing:21.951000px;}
.ws13d{word-spacing:21.994200px;}
.ws53{word-spacing:22.005000px;}
.ws1bf{word-spacing:22.040706px;}
.ws146{word-spacing:22.064400px;}
.wsea{word-spacing:22.204800px;}
.ws14a{word-spacing:22.275000px;}
.wse2{word-spacing:22.302000px;}
.ws18a{word-spacing:22.670698px;}
.ws52{word-spacing:22.696200px;}
.ws136{word-spacing:22.717800px;}
.ws6b{word-spacing:22.797402px;}
.ws98{word-spacing:22.804200px;}
.ws39{word-spacing:22.971600px;}
.ws18b{word-spacing:23.035193px;}
.ws111{word-spacing:23.117400px;}
.ws14e{word-spacing:23.203800px;}
.ws85{word-spacing:23.365800px;}
.ws12d{word-spacing:23.441400px;}
.wsf8{word-spacing:23.662800px;}
.wsf7{word-spacing:23.727600px;}
.ws75{word-spacing:23.738400px;}
.ws1ac{word-spacing:23.836182px;}
.ws8e{word-spacing:23.855940px;}
.ws19f{word-spacing:24.205177px;}
.ws14d{word-spacing:24.219000px;}
.ws167{word-spacing:24.227677px;}
.ws1a0{word-spacing:24.299676px;}
.ws81{word-spacing:24.332400px;}
.wsa3{word-spacing:24.397200px;}
.ws10a{word-spacing:24.424200px;}
.ws82{word-spacing:24.429600px;}
.ws10f{word-spacing:24.510600px;}
.ws174{word-spacing:24.655171px;}
.ws122{word-spacing:24.764400px;}
.ws173{word-spacing:24.794669px;}
.ws120{word-spacing:24.850800px;}
.ws61{word-spacing:25.077600px;}
.ws109{word-spacing:25.104600px;}
.ws62{word-spacing:25.612200px;}
.ws178{word-spacing:26.081652px;}
.ws31{word-spacing:26.184600px;}
.ws1b5{word-spacing:26.221150px;}
.ws179{word-spacing:26.549646px;}
.ws4e{word-spacing:26.767800px;}
.ws123{word-spacing:27.145800px;}
.ws158{word-spacing:27.382135px;}
.ws157{word-spacing:27.454134px;}
.ws7d{word-spacing:27.675000px;}
.ws7b{word-spacing:27.864000px;}
.ws2f{word-spacing:27.972000px;}
.ws2e{word-spacing:28.517400px;}
.ws14f{word-spacing:28.620000px;}
.ws30{word-spacing:28.755000px;}
.wsa2{word-spacing:28.868400px;}
.ws197{word-spacing:28.961614px;}
.ws196{word-spacing:29.002113px;}
.wsb8{word-spacing:29.305800px;}
.wsf2{word-spacing:29.505600px;}
.wsf3{word-spacing:29.602800px;}
.ws5{word-spacing:29.724149px;}
.wsf4{word-spacing:29.786400px;}
.wsb6{word-spacing:29.899800px;}
.ws6{word-spacing:30.252151px;}
.ws63{word-spacing:30.456000px;}
.wsbb{word-spacing:30.466800px;}
.wsa0{word-spacing:30.720600px;}
.ws5f{word-spacing:30.904200px;}
.ws86{word-spacing:32.437800px;}
.ws9b{word-spacing:32.562000px;}
.ws87{word-spacing:32.626800px;}
.ws9e{word-spacing:32.653800px;}
.ws7c{word-spacing:32.955600px;}
.ws9a{word-spacing:33.885000px;}
.wsa9{word-spacing:36.671400px;}
.ws145{word-spacing:36.693000px;}
.ws7e{word-spacing:40.824000px;}
.ws114{word-spacing:47.741400px;}
.ws88{word-spacing:51.024600px;}
.ws89{word-spacing:51.046200px;}
.ws150{word-spacing:100.359000px;}
.ws6c{word-spacing:185.365800px;}
.ws1{word-spacing:1053.836990px;}
._1f{margin-left:-29.999982px;}
._1b{margin-left:-22.742417px;}
._1a{margin-left:-21.456583px;}
._2a{margin-left:-19.750077px;}
._23{margin-left:-18.519917px;}
._1d{margin-left:-15.058782px;}
._12{margin-left:-13.953600px;}
._18{margin-left:-12.501343px;}
._25{margin-left:-8.642447px;}
._c{margin-left:-2.426604px;}
._5{margin-left:-1.358383px;}
._b{width:1.153782px;}
._0{width:2.208002px;}
._9{width:3.328800px;}
._15{width:4.589058px;}
._21{width:7.969353px;}
._7{width:9.163800px;}
._13{width:10.643400px;}
._26{width:11.695283px;}
._4{width:12.820640px;}
._3{width:14.386800px;}
._a{width:15.637800px;}
._10{width:17.400618px;}
._6{width:18.813600px;}
._8{width:20.655000px;}
._16{width:21.810600px;}
._d{width:22.881618px;}
._20{width:23.935370px;}
._22{width:25.572945px;}
._29{width:27.314636px;}
._19{width:28.485000px;}
._1e{width:29.906368px;}
._2{width:30.948155px;}
._17{width:32.556600px;}
._1c{width:35.077008px;}
._27{width:37.068583px;}
._11{width:40.474818px;}
._24{width:49.376406px;}
._14{width:51.246000px;}
._1{width:59.999984px;}
._28{width:99.392400px;}
._f{width:1194.421098px;}
._e{width:1847.806678px;}
.fc5{color:rgb(244,107,23);}
.fc3{color:rgb(83,172,228);}
.fc1{color:rgb(0,174,239);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:28.684800px;}
.fs11{font-size:29.995200px;}
.fs13{font-size:31.498800px;}
.fs9{font-size:31.995000px;}
.fsd{font-size:32.270400px;}
.fs8{font-size:35.995200px;}
.fsb{font-size:37.800000px;}
.fse{font-size:41.831400px;}
.fs12{font-size:44.999400px;}
.fs0{font-size:45.000000px;}
.fsc{font-size:47.061000px;}
.fsa{font-size:47.999400px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:66.000600px;}
.fs10{font-size:68.999400px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:120.000000px;}
.fs6{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y2{bottom:62.419464px;}
.y76{bottom:72.538500px;}
.y77{bottom:73.558950px;}
.y1{bottom:87.919464px;}
.y75{bottom:91.417200px;}
.y74{bottom:162.678900px;}
.y16a{bottom:162.679563px;}
.y52{bottom:162.679650px;}
.ycc{bottom:162.680119px;}
.yca{bottom:162.680250px;}
.y121{bottom:163.105350px;}
.y16d{bottom:163.700700px;}
.ycb{bottom:176.201550px;}
.y169{bottom:176.286256px;}
.y4f{bottom:178.581900px;}
.y51{bottom:178.582650px;}
.yf2{bottom:178.835700px;}
.yc9{bottom:178.837050px;}
.y50{bottom:184.535400px;}
.y168{bottom:189.892950px;}
.y72{bottom:194.399400px;}
.y4e{bottom:194.399850px;}
.yf1{bottom:194.907450px;}
.yc8{bottom:194.910150px;}
.y73{bottom:200.352750px;}
.y167{bottom:203.413368px;}
.y4c{bottom:210.129750px;}
.y71{bottom:210.217350px;}
.yc7{bottom:210.983250px;}
.yf0{bottom:211.065600px;}
.y4d{bottom:216.169950px;}
.y166{bottom:216.934563px;}
.y4b{bottom:226.032750px;}
.y70{bottom:226.035300px;}
.yc6{bottom:227.056350px;}
.yef{bottom:227.138700px;}
.y165{bottom:230.541256px;}
.y4a{bottom:241.850700px;}
.y6d{bottom:241.936350px;}
.y6f{bottom:241.936950px;}
.yee{bottom:243.211800px;}
.yc5{bottom:243.213150px;}
.y164{bottom:244.147950px;}
.y6e{bottom:247.889700px;}
.y163{bottom:249.165300px;}
.yc4{bottom:256.988850px;}
.yec{bottom:257.073900px;}
.y162{bottom:257.668518px;}
.y49{bottom:257.668650px;}
.y6a{bottom:257.753550px;}
.y6c{bottom:257.754300px;}
.yc3{bottom:259.284900px;}
.yeb{bottom:259.369350px;}
.yed{bottom:259.369950px;}
.y6b{bottom:263.707050px;}
.y161{bottom:271.189713px;}
.y48{bottom:273.486600px;}
.y67{bottom:273.569850px;}
.y69{bottom:273.571500px;}
.yc2{bottom:275.358000px;}
.yea{bottom:275.442450px;}
.y68{bottom:279.609450px;}
.y160{bottom:284.796406px;}
.y66{bottom:289.387800px;}
.y47{bottom:289.388250px;}
.yc1{bottom:291.431100px;}
.ye9{bottom:291.599250px;}
.y15f{bottom:298.403100px;}
.y15e{bottom:303.420300px;}
.y44{bottom:305.204400px;}
.y46{bottom:305.206200px;}
.y65{bottom:305.290800px;}
.yc0{bottom:307.502850px;}
.ye8{bottom:307.671000px;}
.y45{bottom:311.244000px;}
.y15d{bottom:311.923668px;}
.y43{bottom:321.022350px;}
.y64{bottom:321.108750px;}
.ybe{bottom:321.363600px;}
.ybd{bottom:323.659050px;}
.ybf{bottom:323.659650px;}
.ye7{bottom:323.829150px;}
.y15c{bottom:325.444863px;}
.y63{bottom:336.840300px;}
.y42{bottom:336.925350px;}
.ybb{bottom:337.436100px;}
.y15b{bottom:339.051556px;}
.ybc{bottom:339.732150px;}
.yba{bottom:339.733500px;}
.ye6{bottom:339.902250px;}
.y61{bottom:352.658250px;}
.y41{bottom:352.743300px;}
.y3f{bottom:352.743900px;}
.yb9{bottom:355.805250px;}
.ye5{bottom:355.975350px;}
.y15a{bottom:357.675450px;}
.y62{bottom:358.696050px;}
.y40{bottom:358.780950px;}
.y159{bottom:366.178668px;}
.y3c{bottom:368.557950px;}
.y60{bottom:368.559900px;}
.y3e{bottom:368.560500px;}
.yb7{bottom:369.666000px;}
.ye3{bottom:369.836100px;}
.yb8{bottom:371.877000px;}
.yb6{bottom:371.877150px;}
.ye2{bottom:372.128250px;}
.ye4{bottom:372.132150px;}
.y3d{bottom:374.598300px;}
.y158{bottom:379.699863px;}
.y5d{bottom:384.375900px;}
.y5f{bottom:384.377850px;}
.y3b{bottom:384.460950px;}
.yb5{bottom:388.033950px;}
.ye1{bottom:388.201350px;}
.y5e{bottom:390.330600px;}
.y157{bottom:393.306556px;}
.y3a{bottom:400.193850px;}
.yb3{bottom:401.811000px;}
.yb4{bottom:404.107050px;}
.yb2{bottom:404.109300px;}
.ye0{bottom:404.359500px;}
.y156{bottom:406.913250px;}
.y155{bottom:411.930600px;}
.y39{bottom:416.011800px;}
.yb1{bottom:420.181050px;}
.ydf{bottom:420.432600px;}
.y154{bottom:420.433325px;}
.y11e{bottom:424.943700px;}
.yae{bottom:429.448050px;}
.y36{bottom:431.827200px;}
.y38{bottom:431.829750px;}
.y5b{bottom:431.913000px;}
.y5c{bottom:431.914800px;}
.y153{bottom:433.954519px;}
.y136{bottom:435.561000px;}
.yb0{bottom:436.252800px;}
.yde{bottom:436.505700px;}
.y37{bottom:437.867550px;}
.y11d{bottom:441.185550px;}
.yad{bottom:445.436850px;}
.y152{bottom:447.561213px;}
.y35{bottom:447.730200px;}
.y5a{bottom:447.730950px;}
.y135{bottom:451.377600px;}
.yaf{bottom:452.409600px;}
.ydd{bottom:452.663850px;}
.y11c{bottom:457.343700px;}
.y151{bottom:461.167906px;}
.yaa{bottom:461.507850px;}
.yac{bottom:461.508600px;}
.y34{bottom:463.548150px;}
.y59{bottom:463.548900px;}
.y134{bottom:467.110500px;}
.yab{bottom:467.546400px;}
.ydc{bottom:468.735600px;}
.y11b{bottom:473.501850px;}
.y150{bottom:474.774600px;}
.ya9{bottom:477.577650px;}
.y33{bottom:479.366100px;}
.y57{bottom:479.366850px;}
.y14f{bottom:479.707050px;}
.y133{bottom:482.843400px;}
.ydb{bottom:484.892400px;}
.y58{bottom:485.404650px;}
.y14e{bottom:488.210163px;}
.ycf{bottom:488.720887px;}
.y11a{bottom:489.743700px;}
.ya8{bottom:493.650750px;}
.y32{bottom:495.269100px;}
.y30{bottom:495.269550px;}
.y56{bottom:495.269850px;}
.y132{bottom:498.576300px;}
.yda{bottom:500.965500px;}
.y13{bottom:501.032991px;}
.y31{bottom:501.221850px;}
.y14d{bottom:501.816856px;}
.yce{bottom:502.157119px;}
.y119{bottom:505.900500px;}
.ya7{bottom:509.723850px;}
.y2f{bottom:511.086150px;}
.y53{bottom:511.086300px;}
.y55{bottom:511.086450px;}
.y131{bottom:514.394250px;}
.y14c{bottom:515.423550px;}
.ycd{bottom:515.678550px;}
.yd9{bottom:517.122300px;}
.y54{bottom:517.124250px;}
.y14b{bottom:520.440750px;}
.y118{bottom:522.057300px;}
.y12{bottom:522.782991px;}
.ya6{bottom:525.796950px;}
.y14a{bottom:528.944312px;}
.y130{bottom:530.127150px;}
.yd8{bottom:533.195400px;}
.y117{bottom:538.300500px;}
.ya5{bottom:541.870050px;}
.y11{bottom:542.282991px;}
.y149{bottom:542.465506px;}
.y12f{bottom:545.860050px;}
.yd7{bottom:549.268500px;}
.y116{bottom:554.457300px;}
.y148{bottom:556.072200px;}
.ya4{bottom:557.604450px;}
.y147{bottom:561.089700px;}
.y12e{bottom:561.592950px;}
.yd6{bottom:565.425300px;}
.y146{bottom:569.593156px;}
.y115{bottom:570.614100px;}
.ya3{bottom:573.676200px;}
.y2e{bottom:573.844950px;}
.y12d{bottom:577.325850px;}
.y10{bottom:579.782991px;}
.yd5{bottom:581.498400px;}
.y145{bottom:583.199850px;}
.y114{bottom:586.857300px;}
.y144{bottom:588.132150px;}
.ya2{bottom:589.746600px;}
.y2c{bottom:590.258100px;}
.y2d{bottom:591.533700px;}
.y12c{bottom:593.143800px;}
.yd4{bottom:597.656550px;}
.yf{bottom:601.532991px;}
.y143{bottom:601.898550px;}
.y113{bottom:603.014100px;}
.ya1{bottom:605.819700px;}
.y12b{bottom:608.876700px;}
.yd3{bottom:613.728300px;}
.y2b{bottom:614.406900px;}
.y112{bottom:618.747000px;}
.ye{bottom:621.032991px;}
.ya0{bottom:621.806400px;}
.y12a{bottom:624.609600px;}
.yd2{bottom:629.801400px;}
.y2a{bottom:630.139800px;}
.y111{bottom:634.903800px;}
.y142{bottom:636.254700px;}
.y9f{bottom:637.879500px;}
.y129{bottom:640.342500px;}
.y29{bottom:645.872700px;}
.yd1{bottom:645.958200px;}
.y110{bottom:651.147000px;}
.y141{bottom:652.072650px;}
.y9e{bottom:653.951850px;}
.y128{bottom:656.075400px;}
.yd{bottom:658.532991px;}
.y28{bottom:661.605600px;}
.yd0{bottom:662.031300px;}
.y10f{bottom:667.303800px;}
.y140{bottom:667.890600px;}
.y9d{bottom:670.024350px;}
.y127{bottom:671.893350px;}
.y27{bottom:677.339100px;}
.y198{bottom:678.529111px;}
.yc{bottom:680.282991px;}
.y10e{bottom:683.460600px;}
.y13f{bottom:683.708550px;}
.y9c{bottom:686.098200px;}
.y126{bottom:687.626250px;}
.y197{bottom:692.050305px;}
.y26{bottom:693.155700px;}
.y120{bottom:698.343019px;}
.y13e{bottom:699.611550px;}
.y10d{bottom:699.704400px;}
.y9b{bottom:702.169200px;}
.y125{bottom:703.359150px;}
.y196{bottom:705.571500px;}
.y195{bottom:710.588850px;}
.y11f{bottom:711.864450px;}
.y25{bottom:715.351050px;}
.y13d{bottom:715.428150px;}
.y10c{bottom:715.861200px;}
.y98{bottom:718.241700px;}
.y9a{bottom:718.242300px;}
.y124{bottom:719.092050px;}
.y194{bottom:719.093204px;}
.y1b2{bottom:719.093309px;}
.yb{bottom:719.282991px;}
.y99{bottom:724.195200px;}
.y10a{bottom:731.594850px;}
.y193{bottom:732.528900px;}
.y1b1{bottom:732.529005px;}
.y97{bottom:734.314800px;}
.y123{bottom:734.823750px;}
.y10b{bottom:737.631300px;}
.y190{bottom:744.179400px;}
.y191{bottom:746.050200px;}
.y18f{bottom:746.050305px;}
.y109{bottom:747.836700px;}
.y13c{bottom:748.508550px;}
.y96{bottom:750.301500px;}
.y122{bottom:750.641700px;}
.y192{bottom:751.067550px;}
.y24{bottom:759.146250px;}
.y1b0{bottom:759.571034px;}
.y18e{bottom:759.571500px;}
.y108{bottom:763.994850px;}
.y13b{bottom:764.411550px;}
.y23{bottom:764.503800px;}
.y18d{bottom:764.588700px;}
.y93{bottom:766.373250px;}
.y95{bottom:766.374600px;}
.y94{bottom:772.412400px;}
.y18c{bottom:773.092184px;}
.y1ae{bottom:773.092229px;}
.y1af{bottom:775.983441px;}
.y107{bottom:780.151650px;}
.y13a{bottom:780.228150px;}
.y92{bottom:782.446350px;}
.y18b{bottom:786.529005px;}
.y1ad{bottom:786.529050px;}
.y22{bottom:789.080100px;}
.y1ac{bottom:791.546250px;}
.y21{bottom:794.437650px;}
.y139{bottom:796.044750px;}
.y90{bottom:796.308450px;}
.y106{bottom:796.393500px;}
.y8f{bottom:798.518850px;}
.y91{bottom:798.519450px;}
.y18a{bottom:800.050200px;}
.y1ab{bottom:800.050261px;}
.y189{bottom:805.067550px;}
.y16c{bottom:805.407469px;}
.y20{bottom:807.108450px;}
.y138{bottom:811.861350px;}
.y8d{bottom:812.380950px;}
.y1f{bottom:812.466000px;}
.y104{bottom:812.550300px;}
.y188{bottom:813.571455px;}
.y8c{bottom:814.591200px;}
.y8e{bottom:814.591950px;}
.y105{bottom:818.503800px;}
.y16b{bottom:818.928900px;}
.y1aa{bottom:827.092650px;}
.y187{bottom:827.093309px;}
.y137{bottom:827.677950px;}
.y8a{bottom:828.368250px;}
.y103{bottom:828.707100px;}
.y1e{bottom:829.984050px;}
.y89{bottom:830.663100px;}
.y8b{bottom:830.664300px;}
.y1a9{bottom:832.024950px;}
.y186{bottom:840.529005px;}
.y1a8{bottom:840.529066px;}
.y102{bottom:844.950300px;}
.y88{bottom:846.736200px;}
.y185{bottom:854.050200px;}
.y1a7{bottom:854.050261px;}
.ya{bottom:858.300004px;}
.y184{bottom:859.067550px;}
.y101{bottom:861.108450px;}
.y1b{bottom:862.639200px;}
.y87{bottom:862.808700px;}
.y170{bottom:864.084637px;}
.y1c{bottom:865.445850px;}
.y1a6{bottom:867.571455px;}
.y183{bottom:867.572115px;}
.y1d{bottom:868.591950px;}
.y100{bottom:877.266600px;}
.y16f{bottom:877.520869px;}
.y86{bottom:878.795400px;}
.y19{bottom:879.136800px;}
.y1a5{bottom:881.092650px;}
.y182{bottom:881.093309px;}
.y1a{bottom:885.089550px;}
.y1a4{bottom:886.024950px;}
.y16e{bottom:891.042300px;}
.yff{bottom:893.509800px;}
.y181{bottom:894.529005px;}
.y85{bottom:894.867150px;}
.y9{bottom:905.618989px;}
.y180{bottom:908.050200px;}
.yfe{bottom:909.666600px;}
.y84{bottom:910.685100px;}
.y17f{bottom:913.067550px;}
.y18{bottom:917.234400px;}
.y1a3{bottom:921.571455px;}
.y17e{bottom:921.572115px;}
.yfd{bottom:925.823400px;}
.y83{bottom:926.671800px;}
.y1a2{bottom:935.092650px;}
.y17d{bottom:935.093309px;}
.y17{bottom:935.178150px;}
.y8{bottom:938.873998px;}
.y1a1{bottom:940.024950px;}
.yfc{bottom:942.066600px;}
.y82{bottom:942.744900px;}
.y1a0{bottom:948.528961px;}
.y17c{bottom:948.529005px;}
.y16{bottom:953.206050px;}
.yfb{bottom:958.222050px;}
.y81{bottom:958.818000px;}
.y19f{bottom:962.050155px;}
.y17b{bottom:962.050200px;}
.y7{bottom:962.094003px;}
.y17a{bottom:967.067550px;}
.yfa{bottom:974.380200px;}
.y7e{bottom:974.887800px;}
.y80{bottom:974.891100px;}
.y19e{bottom:975.571350px;}
.y179{bottom:975.571859px;}
.y19d{bottom:980.588700px;}
.y7f{bottom:980.928900px;}
.y178{bottom:989.093054px;}
.y19c{bottom:989.093309px;}
.yf9{bottom:990.622050px;}
.y7d{bottom:990.960900px;}
.y6{bottom:999.458997px;}
.y177{bottom:1002.528750px;}
.y19b{bottom:1002.529005px;}
.yf8{bottom:1006.354950px;}
.y7c{bottom:1006.693800px;}
.y176{bottom:1007.546100px;}
.y15{bottom:1009.416285px;}
.y19a{bottom:1016.050200px;}
.y175{bottom:1016.050665px;}
.y5{bottom:1017.159002px;}
.yf6{bottom:1020.302100px;}
.y199{bottom:1021.067550px;}
.yf5{bottom:1022.512800px;}
.yf7{bottom:1022.513100px;}
.y7b{bottom:1022.766900px;}
.y174{bottom:1029.571859px;}
.yf4{bottom:1038.669600px;}
.y7a{bottom:1038.840000px;}
.y14{bottom:1042.497450px;}
.y173{bottom:1043.093054px;}
.yf3{bottom:1054.912800px;}
.y79{bottom:1054.913100px;}
.y172{bottom:1056.528750px;}
.y171{bottom:1061.546100px;}
.y4{bottom:1066.338001px;}
.y3{bottom:1102.338001px;}
.y78{bottom:1135.105200px;}
.h2d{height:21.476563px;}
.h24{height:22.856952px;}
.h2a{height:22.946328px;}
.he{height:24.476175px;}
.h15{height:25.772563px;}
.h19{height:28.480963px;}
.hc{height:29.372083px;}
.h14{height:30.624600px;}
.h18{height:30.871573px;}
.h2b{height:32.219570px;}
.h13{height:34.731018px;}
.h17{height:34.943563px;}
.h2c{height:35.951551px;}
.hf{height:35.952540px;}
.h10{height:36.532343px;}
.h12{height:38.664000px;}
.h1f{height:38.667000px;}
.h20{height:38.669400px;}
.h23{height:38.677200px;}
.h11{height:39.167510px;}
.h2{height:39.420000px;}
.h16{height:40.446000px;}
.hd{height:41.310000px;}
.h6{height:42.048000px;}
.h5{height:42.498000px;}
.h1b{height:43.393800px;}
.h25{height:43.722600px;}
.h26{height:43.732200px;}
.h27{height:43.737600px;}
.ha{height:44.064000px;}
.h28{height:46.451400px;}
.h1c{height:46.453800px;}
.h1d{height:46.456800px;}
.h21{height:46.458600px;}
.h22{height:46.788000px;}
.h1e{height:46.797000px;}
.h29{height:46.798800px;}
.h7{height:47.220000px;}
.h4{height:47.304000px;}
.h8{height:52.560000px;}
.h1a{height:53.612534px;}
.hb{height:66.100090px;}
.h9{height:91.800459px;}
.h3{height:94.440000px;}
.h0{height:1214.958000px;}
.h1{height:1215.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x33{left:58.507050px;}
.x34{left:59.697600px;}
.x35{left:72.283500px;}
.x4{left:79.511850px;}
.x14{left:80.872350px;}
.x10{left:82.913400px;}
.x11{left:84.784200px;}
.x58{left:85.804650px;}
.x13{left:87.590550px;}
.x15{left:106.469700px;}
.xe{left:110.806200px;}
.x1e{left:133.086600px;}
.x59{left:137.167514px;}
.x1f{left:141.165300px;}
.x4c{left:151.625100px;}
.x55{left:160.299150px;}
.x56{left:168.207513px;}
.x3f{left:176.626650px;}
.x2{left:180.000000px;}
.x1{left:186.000000px;}
.x18{left:190.233000px;}
.xf{left:193.719600px;}
.x19{left:198.566850px;}
.x40{left:199.672350px;}
.x3d{left:200.692800px;}
.x3{left:207.000000px;}
.x20{left:210.047100px;}
.x57{left:215.659380px;}
.x3e{left:217.445550px;}
.x5{left:225.014100px;}
.x21{left:243.892800px;}
.x6{left:261.836100px;}
.x22{left:275.952600px;}
.x1a{left:282.925950px;}
.x1b{left:292.280250px;}
.x39{left:303.080250px;}
.x3a{left:307.587300px;}
.x3b{left:308.947950px;}
.x3c{left:313.369950px;}
.x1c{left:352.573200px;}
.x5a{left:355.547352px;}
.x38{left:358.866000px;}
.x1d{left:363.968400px;}
.x7{left:372.302250px;}
.x36{left:375.363600px;}
.x12{left:381.826087px;}
.x5b{left:385.398300px;}
.x37{left:388.544700px;}
.x8{left:400.110150px;}
.x5c{left:404.021850px;}
.x4a{left:411.675450px;}
.x16{left:417.032850px;}
.x4b{left:419.924250px;}
.x17{left:426.472350px;}
.x41{left:432.850200px;}
.x5d{left:434.976300px;}
.x42{left:440.673900px;}
.x9{left:467.971500px;}
.x23{left:472.478850px;}
.x49{left:475.540050px;}
.x52{left:478.346400px;}
.x53{left:481.492800px;}
.x54{left:483.278550px;}
.xa{left:493.653450px;}
.x2a{left:499.266000px;}
.x51{left:507.769950px;}
.x2b{left:511.851900px;}
.x24{left:518.059650px;}
.x25{left:527.329050px;}
.x46{left:529.114800px;}
.x28{left:533.706900px;}
.x2c{left:537.788850px;}
.x29{left:557.688000px;}
.x4d{left:562.110150px;}
.x4e{left:572.484900px;}
.x26{left:585.325800px;}
.xb{left:588.897450px;}
.x27{left:597.996750px;}
.x2f{left:602.673900px;}
.x48{left:610.582500px;}
.x5e{left:614.749163px;}
.xc{left:616.705350px;}
.x45{left:624.528900px;}
.x30{left:629.206200px;}
.x47{left:633.883350px;}
.x31{left:644.853300px;}
.x32{left:670.875300px;}
.x43{left:685.162050px;}
.x50{left:690.179400px;}
.x44{left:697.067550px;}
.xd{left:722.239200px;}
.x2d{left:772.072200px;}
.x2e{left:799.284900px;}
.x4f{left:828.963600px;}
@media print{
.v7{vertical-align:-17.234133pt;}
.v2{vertical-align:-9.979200pt;}
.v4{vertical-align:-6.956800pt;}
.v5{vertical-align:-5.744533pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.929551pt;}
.v1{vertical-align:10.883200pt;}
.v6{vertical-align:17.236267pt;}
.ls2d{letter-spacing:-1.838910pt;}
.ls2e{letter-spacing:-1.834644pt;}
.ls4a{letter-spacing:-1.531200pt;}
.ls51{letter-spacing:-1.526400pt;}
.ls4e{letter-spacing:-1.521600pt;}
.ls43{letter-spacing:-1.516800pt;}
.ls46{letter-spacing:-1.512000pt;}
.ls4f{letter-spacing:-1.492800pt;}
.ls42{letter-spacing:-1.488000pt;}
.ls56{letter-spacing:-1.420800pt;}
.ls69{letter-spacing:-1.382400pt;}
.ls44{letter-spacing:-1.377600pt;}
.ls47{letter-spacing:-1.372800pt;}
.ls52{letter-spacing:-1.358400pt;}
.ls45{letter-spacing:-1.353600pt;}
.ls49{letter-spacing:-1.350220pt;}
.ls4b{letter-spacing:-1.329600pt;}
.ls29{letter-spacing:-1.324800pt;}
.ls23{letter-spacing:-1.320000pt;}
.ls53{letter-spacing:-1.315200pt;}
.ls41{letter-spacing:-1.305600pt;}
.ls50{letter-spacing:-1.300800pt;}
.ls58{letter-spacing:-1.296000pt;}
.ls26{letter-spacing:-1.291200pt;}
.ls55{letter-spacing:-1.286400pt;}
.ls4d{letter-spacing:-1.280160pt;}
.ls4c{letter-spacing:-1.224000pt;}
.ls2c{letter-spacing:-1.219200pt;}
.ls40{letter-spacing:-1.214400pt;}
.ls25{letter-spacing:-1.190400pt;}
.ls1b{letter-spacing:-1.185600pt;}
.ls28{letter-spacing:-1.171200pt;}
.ls2a{letter-spacing:-1.142400pt;}
.ls24{letter-spacing:-1.132800pt;}
.ls27{letter-spacing:-1.081456pt;}
.ls3f{letter-spacing:-1.051200pt;}
.ls19{letter-spacing:-1.041600pt;}
.ls11{letter-spacing:-1.022400pt;}
.ls14{letter-spacing:-1.017600pt;}
.ls18{letter-spacing:-1.012800pt;}
.ls16{letter-spacing:-0.998400pt;}
.ls60{letter-spacing:-0.993600pt;}
.ls12{letter-spacing:-0.988800pt;}
.ls1c{letter-spacing:-0.979200pt;}
.ls1a{letter-spacing:-0.921600pt;}
.lsf{letter-spacing:-0.916800pt;}
.ls10{letter-spacing:-0.888000pt;}
.ls15{letter-spacing:-0.883200pt;}
.ls61{letter-spacing:-0.878400pt;}
.ls6c{letter-spacing:-0.859200pt;}
.ls1d{letter-spacing:-0.840000pt;}
.ls64{letter-spacing:-0.835200pt;}
.lsc{letter-spacing:-0.825600pt;}
.ls17{letter-spacing:-0.816000pt;}
.ls2b{letter-spacing:-0.815891pt;}
.ls1e{letter-spacing:-0.812692pt;}
.ls13{letter-spacing:-0.806400pt;}
.lsa{letter-spacing:-0.772800pt;}
.ls68{letter-spacing:-0.748800pt;}
.ls59{letter-spacing:-0.734400pt;}
.ls5a{letter-spacing:-0.724800pt;}
.lsb{letter-spacing:-0.720000pt;}
.ls75{letter-spacing:-0.715990pt;}
.lsd{letter-spacing:-0.715200pt;}
.ls5c{letter-spacing:-0.710400pt;}
.ls67{letter-spacing:-0.705600pt;}
.lse{letter-spacing:-0.691200pt;}
.ls22{letter-spacing:-0.686400pt;}
.ls73{letter-spacing:-0.679991pt;}
.ls5b{letter-spacing:-0.675360pt;}
.ls74{letter-spacing:-0.647991pt;}
.ls72{letter-spacing:-0.619992pt;}
.ls21{letter-spacing:-0.619200pt;}
.ls20{letter-spacing:-0.547127pt;}
.ls1f{letter-spacing:-0.543927pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.002844pt;}
.ls65{letter-spacing:0.003360pt;}
.ls5{letter-spacing:0.043200pt;}
.ls30{letter-spacing:0.110400pt;}
.ls33{letter-spacing:0.131040pt;}
.ls6e{letter-spacing:0.195993pt;}
.ls38{letter-spacing:0.231840pt;}
.ls70{letter-spacing:0.259997pt;}
.ls3d{letter-spacing:2.550933pt;}
.ls37{letter-spacing:2.651893pt;}
.ls6b{letter-spacing:2.652267pt;}
.ls31{letter-spacing:2.652427pt;}
.ls3c{letter-spacing:2.853333pt;}
.ls6d{letter-spacing:2.914106pt;}
.ls71{letter-spacing:5.063932pt;}
.ls2{letter-spacing:7.017600pt;}
.ls2f{letter-spacing:8.092800pt;}
.ls3e{letter-spacing:8.150400pt;}
.ls32{letter-spacing:10.512000pt;}
.ls3a{letter-spacing:10.513600pt;}
.ls39{letter-spacing:10.569600pt;}
.ls54{letter-spacing:10.646400pt;}
.ls35{letter-spacing:10.814400pt;}
.ls48{letter-spacing:11.049600pt;}
.ls5f{letter-spacing:11.145600pt;}
.ls1{letter-spacing:11.986022pt;}
.ls5d{letter-spacing:12.081600pt;}
.ls4{letter-spacing:12.211200pt;}
.ls7{letter-spacing:12.326400pt;}
.ls3b{letter-spacing:12.513600pt;}
.ls6{letter-spacing:12.628800pt;}
.ls62{letter-spacing:13.233600pt;}
.ls34{letter-spacing:13.537227pt;}
.ls6a{letter-spacing:13.915200pt;}
.ls66{letter-spacing:15.840000pt;}
.ls8{letter-spacing:17.789833pt;}
.ls57{letter-spacing:18.259200pt;}
.ls63{letter-spacing:18.979733pt;}
.ls3{letter-spacing:21.094771pt;}
.ls36{letter-spacing:21.398560pt;}
.ls6f{letter-spacing:24.382384pt;}
.ls5e{letter-spacing:25.656000pt;}
.wsbd{word-spacing:-25.704000pt;}
.wsa6{word-spacing:-18.307200pt;}
.ws10d{word-spacing:-15.888000pt;}
.ws3{word-spacing:-15.093333pt;}
.ws2{word-spacing:-13.584000pt;}
.wsab{word-spacing:-12.561600pt;}
.wsb9{word-spacing:-12.129600pt;}
.ws0{word-spacing:-11.320000pt;}
.wsc1{word-spacing:-11.193600pt;}
.ws80{word-spacing:-11.097600pt;}
.ws9f{word-spacing:-10.694400pt;}
.ws119{word-spacing:-8.198400pt;}
.ws8{word-spacing:-0.048000pt;}
.ws18{word-spacing:-0.042666pt;}
.ws159{word-spacing:-0.039999pt;}
.wse7{word-spacing:-0.036960pt;}
.ws1b{word-spacing:-0.033600pt;}
.wse{word-spacing:-0.031996pt;}
.ws19e{word-spacing:-0.027999pt;}
.ws1a7{word-spacing:-0.026662pt;}
.ws4{word-spacing:0.000000pt;}
.ws41{word-spacing:0.511932pt;}
.ws4b{word-spacing:0.515131pt;}
.ws4a{word-spacing:0.571200pt;}
.ws1c6{word-spacing:0.607992pt;}
.ws4f{word-spacing:0.638400pt;}
.wsb7{word-spacing:0.641760pt;}
.wsb1{word-spacing:0.676800pt;}
.ws3e{word-spacing:0.780696pt;}
.ws38{word-spacing:0.873600pt;}
.ws59{word-spacing:1.049460pt;}
.ws5d{word-spacing:1.094400pt;}
.ws5a{word-spacing:1.142400pt;}
.ws9d{word-spacing:1.171200pt;}
.ws8d{word-spacing:1.176000pt;}
.ws93{word-spacing:1.246560pt;}
.ws8b{word-spacing:1.281600pt;}
.ws8f{word-spacing:1.473600pt;}
.ws96{word-spacing:1.478400pt;}
.ws8a{word-spacing:1.483200pt;}
.ws68{word-spacing:1.791978pt;}
.ws66{word-spacing:1.796244pt;}
.ws184{word-spacing:6.890581pt;}
.ws177{word-spacing:6.907908pt;}
.ws112{word-spacing:7.195200pt;}
.wsfb{word-spacing:7.800000pt;}
.wsfd{word-spacing:8.091733pt;}
.ws102{word-spacing:8.102400pt;}
.ws108{word-spacing:8.110400pt;}
.wsbc{word-spacing:8.630400pt;}
.wsc0{word-spacing:8.736000pt;}
.ws121{word-spacing:9.043200pt;}
.wsba{word-spacing:9.148800pt;}
.wsbe{word-spacing:9.177600pt;}
.ws99{word-spacing:9.220800pt;}
.ws11e{word-spacing:9.379200pt;}
.ws1b6{word-spacing:9.463874pt;}
.ws134{word-spacing:9.542400pt;}
.ws92{word-spacing:9.576000pt;}
.wsa1{word-spacing:9.643200pt;}
.ws1c1{word-spacing:9.683871pt;}
.ws107{word-spacing:9.705600pt;}
.ws1c3{word-spacing:9.747870pt;}
.ws1cc{word-spacing:9.759870pt;}
.ws155{word-spacing:9.803869pt;}
.ws1a4{word-spacing:9.827869pt;}
.ws194{word-spacing:9.847869pt;}
.ws1c5{word-spacing:9.851869pt;}
.ws1bb{word-spacing:9.875868pt;}
.ws16f{word-spacing:9.883868pt;}
.ws1cd{word-spacing:9.895868pt;}
.ws16b{word-spacing:9.903868pt;}
.ws137{word-spacing:9.916800pt;}
.ws1ad{word-spacing:9.931868pt;}
.ws133{word-spacing:9.945600pt;}
.wsae{word-spacing:9.950400pt;}
.ws18d{word-spacing:9.955867pt;}
.ws189{word-spacing:9.963867pt;}
.ws1b8{word-spacing:9.971867pt;}
.ws1b1{word-spacing:9.979867pt;}
.ws15f{word-spacing:9.987867pt;}
.ws11f{word-spacing:9.993600pt;}
.ws1ba{word-spacing:9.999867pt;}
.ws15e{word-spacing:10.003867pt;}
.ws1b7{word-spacing:10.007867pt;}
.ws1a1{word-spacing:10.023866pt;}
.ws17{word-spacing:10.035075pt;}
.ws15a{word-spacing:10.035866pt;}
.ws16a{word-spacing:10.039866pt;}
.ws15d{word-spacing:10.043866pt;}
.ws170{word-spacing:10.047866pt;}
.ws14{word-spacing:10.069207pt;}
.ws195{word-spacing:10.075866pt;}
.ws1a3{word-spacing:10.079866pt;}
.wsb5{word-spacing:10.113600pt;}
.ws19c{word-spacing:10.115865pt;}
.ws190{word-spacing:10.123865pt;}
.ws1b0{word-spacing:10.135865pt;}
.ws1a8{word-spacing:10.163864pt;}
.ws15{word-spacing:10.171606pt;}
.ws1aa{word-spacing:10.179864pt;}
.ws18c{word-spacing:10.191864pt;}
.ws165{word-spacing:10.195864pt;}
.ws13a{word-spacing:10.219200pt;}
.ws175{word-spacing:10.235864pt;}
.ws180{word-spacing:10.256938pt;}
.ws54{word-spacing:10.267200pt;}
.wsf1{word-spacing:10.291200pt;}
.ws156{word-spacing:10.311863pt;}
.ws130{word-spacing:10.316671pt;}
.ws12f{word-spacing:10.333737pt;}
.ws17a{word-spacing:10.339862pt;}
.ws1a9{word-spacing:10.379862pt;}
.ws65{word-spacing:10.410537pt;}
.ws11c{word-spacing:10.420800pt;}
.wsd5{word-spacing:10.427603pt;}
.ws105{word-spacing:10.440000pt;}
.ws181{word-spacing:10.444669pt;}
.ws1c4{word-spacing:10.447861pt;}
.wsd9{word-spacing:10.453203pt;}
.ws185{word-spacing:10.466003pt;}
.ws67{word-spacing:10.470269pt;}
.ws163{word-spacing:10.555859pt;}
.ws6a{word-spacing:10.564135pt;}
.ws4c{word-spacing:10.588800pt;}
.ws1c2{word-spacing:10.591859pt;}
.ws16{word-spacing:10.623867pt;}
.ws193{word-spacing:10.627858pt;}
.ws1c7{word-spacing:10.655858pt;}
.ws110{word-spacing:10.670400pt;}
.ws164{word-spacing:10.739857pt;}
.wsf6{word-spacing:10.790400pt;}
.ws10e{word-spacing:10.824000pt;}
.ws46{word-spacing:10.891200pt;}
.ws183{word-spacing:10.892664pt;}
.ws69{word-spacing:10.913997pt;}
.ws50{word-spacing:10.972800pt;}
.ws171{word-spacing:11.015853pt;}
.ws2a{word-spacing:11.092800pt;}
.ws176{word-spacing:11.159851pt;}
.wsfc{word-spacing:11.251200pt;}
.wsd1{word-spacing:11.337600pt;}
.ws1ca{word-spacing:11.499847pt;}
.wse4{word-spacing:11.500800pt;}
.wsd8{word-spacing:11.592388pt;}
.wsef{word-spacing:11.649600pt;}
.wsed{word-spacing:11.659200pt;}
.ws3d{word-spacing:11.673600pt;}
.ws73{word-spacing:11.692800pt;}
.wsee{word-spacing:11.697600pt;}
.wsa{word-spacing:11.707200pt;}
.ws11b{word-spacing:11.712000pt;}
.ws1c9{word-spacing:11.723844pt;}
.ws11d{word-spacing:11.726400pt;}
.ws25{word-spacing:11.731200pt;}
.wsc2{word-spacing:11.745600pt;}
.ws7{word-spacing:11.779200pt;}
.ws152{word-spacing:11.793600pt;}
.ws115{word-spacing:11.808000pt;}
.ws160{word-spacing:11.823842pt;}
.ws8c{word-spacing:11.827200pt;}
.wsc{word-spacing:11.836800pt;}
.ws10{word-spacing:11.841600pt;}
.wsb{word-spacing:11.846400pt;}
.ws14c{word-spacing:11.851200pt;}
.ws1c0{word-spacing:11.859842pt;}
.ws11{word-spacing:11.865600pt;}
.wsd{word-spacing:11.870400pt;}
.wsf5{word-spacing:11.880000pt;}
.wsd2{word-spacing:11.894400pt;}
.ws9{word-spacing:11.952000pt;}
.wsbf{word-spacing:11.961600pt;}
.wsf{word-spacing:11.971200pt;}
.ws6f{word-spacing:11.985600pt;}
.ws12{word-spacing:12.000000pt;}
.ws20{word-spacing:12.009600pt;}
.ws1a2{word-spacing:12.027840pt;}
.ws24{word-spacing:12.033600pt;}
.ws3a{word-spacing:12.052800pt;}
.ws198{word-spacing:12.079839pt;}
.ws27{word-spacing:12.081600pt;}
.ws13{word-spacing:12.091200pt;}
.ws28{word-spacing:12.110400pt;}
.ws199{word-spacing:12.163838pt;}
.ws17f{word-spacing:12.189714pt;}
.ws7a{word-spacing:12.201600pt;}
.ws1ae{word-spacing:12.211837pt;}
.wsb4{word-spacing:12.216000pt;}
.ws56{word-spacing:12.259200pt;}
.wsa8{word-spacing:12.283200pt;}
.ws1af{word-spacing:12.311836pt;}
.ws76{word-spacing:12.326400pt;}
.ws57{word-spacing:12.446400pt;}
.ws17e{word-spacing:12.449978pt;}
.wse1{word-spacing:12.460800pt;}
.ws1d{word-spacing:12.480000pt;}
.ws90{word-spacing:12.489600pt;}
.ws1bd{word-spacing:12.527833pt;}
.ws47{word-spacing:12.556800pt;}
.ws5e{word-spacing:12.590400pt;}
.ws19d{word-spacing:12.675831pt;}
.ws15b{word-spacing:12.683831pt;}
.ws16e{word-spacing:12.719830pt;}
.wsdb{word-spacing:12.739200pt;}
.ws94{word-spacing:12.748800pt;}
.ws35{word-spacing:12.787200pt;}
.ws79{word-spacing:12.801600pt;}
.ws21{word-spacing:12.820800pt;}
.ws29{word-spacing:12.936000pt;}
.ws188{word-spacing:12.939827pt;}
.ws91{word-spacing:12.974400pt;}
.ws78{word-spacing:13.027200pt;}
.ws9c{word-spacing:13.041547pt;}
.ws187{word-spacing:13.043826pt;}
.wseb{word-spacing:13.094400pt;}
.ws144{word-spacing:13.108800pt;}
.ws95{word-spacing:13.118400pt;}
.ws1ab{word-spacing:13.131825pt;}
.ws186{word-spacing:13.147825pt;}
.ws143{word-spacing:13.152000pt;}
.ws37{word-spacing:13.161600pt;}
.wsa4{word-spacing:13.171200pt;}
.ws13e{word-spacing:13.176000pt;}
.ws36{word-spacing:13.200000pt;}
.ws126{word-spacing:13.219200pt;}
.ws34{word-spacing:13.228800pt;}
.wse9{word-spacing:13.315200pt;}
.ws135{word-spacing:13.320000pt;}
.ws97{word-spacing:13.343947pt;}
.wsa5{word-spacing:13.344480pt;}
.wsd6{word-spacing:13.358766pt;}
.wsaa{word-spacing:13.396800pt;}
.wsfe{word-spacing:13.454400pt;}
.ws1e{word-spacing:13.473600pt;}
.wse8{word-spacing:13.512000pt;}
.wsff{word-spacing:13.516800pt;}
.ws32{word-spacing:13.593600pt;}
.wscc{word-spacing:13.641600pt;}
.ws182{word-spacing:13.661696pt;}
.ws7f{word-spacing:13.694400pt;}
.ws33{word-spacing:13.713600pt;}
.ws5b{word-spacing:13.723200pt;}
.wsac{word-spacing:13.766400pt;}
.wsd7{word-spacing:13.781161pt;}
.ws14b{word-spacing:13.828800pt;}
.wsec{word-spacing:13.848000pt;}
.ws2b{word-spacing:13.867200pt;}
.ws5c{word-spacing:13.881600pt;}
.ws161{word-spacing:13.935814pt;}
.ws51{word-spacing:14.016000pt;}
.ws1f{word-spacing:14.068800pt;}
.ws106{word-spacing:14.078400pt;}
.ws1cb{word-spacing:14.095812pt;}
.ws1b4{word-spacing:14.119812pt;}
.wsfa{word-spacing:14.150400pt;}
.ws74{word-spacing:14.160000pt;}
.ws64{word-spacing:14.208000pt;}
.wsd3{word-spacing:14.216356pt;}
.wsf9{word-spacing:14.275200pt;}
.wsdf{word-spacing:14.280000pt;}
.wsce{word-spacing:14.318400pt;}
.wscd{word-spacing:14.371200pt;}
.wsdd{word-spacing:14.452800pt;}
.ws1a5{word-spacing:14.511807pt;}
.ws116{word-spacing:14.520000pt;}
.wscb{word-spacing:14.529600pt;}
.ws1c8{word-spacing:14.555806pt;}
.ws19a{word-spacing:14.559806pt;}
.ws3c{word-spacing:14.568000pt;}
.ws19b{word-spacing:14.631805pt;}
.ws139{word-spacing:14.678400pt;}
.wsc7{word-spacing:14.683200pt;}
.ws3b{word-spacing:14.707200pt;}
.wsc6{word-spacing:14.726400pt;}
.ws127{word-spacing:14.755200pt;}
.wsb3{word-spacing:14.788800pt;}
.ws154{word-spacing:14.823802pt;}
.ws128{word-spacing:14.832000pt;}
.ws18f{word-spacing:14.855802pt;}
.wsd0{word-spacing:14.923200pt;}
.ws131{word-spacing:14.976000pt;}
.wsca{word-spacing:15.038400pt;}
.ws153{word-spacing:15.043799pt;}
.ws117{word-spacing:15.100800pt;}
.ws118{word-spacing:15.124800pt;}
.wscf{word-spacing:15.134400pt;}
.wsdc{word-spacing:15.220800pt;}
.wsde{word-spacing:15.312000pt;}
.wsf0{word-spacing:15.331200pt;}
.ws15c{word-spacing:15.335796pt;}
.ws44{word-spacing:15.360000pt;}
.ws10b{word-spacing:15.436800pt;}
.ws18e{word-spacing:15.455794pt;}
.ws1a6{word-spacing:15.467794pt;}
.ws101{word-spacing:15.484800pt;}
.wsd4{word-spacing:15.513406pt;}
.wsc9{word-spacing:15.513600pt;}
.ws132{word-spacing:15.528000pt;}
.ws100{word-spacing:15.652800pt;}
.ws17b{word-spacing:15.663791pt;}
.ws148{word-spacing:15.667200pt;}
.wsaf{word-spacing:15.681600pt;}
.ws6e{word-spacing:15.710400pt;}
.ws72{word-spacing:15.724800pt;}
.wsb2{word-spacing:15.729600pt;}
.wsb0{word-spacing:15.753600pt;}
.ws71{word-spacing:15.772800pt;}
.wsa7{word-spacing:15.782400pt;}
.ws12a{word-spacing:15.964800pt;}
.ws1b3{word-spacing:16.003787pt;}
.ws43{word-spacing:16.041600pt;}
.ws40{word-spacing:16.156800pt;}
.ws12e{word-spacing:16.174731pt;}
.ws138{word-spacing:16.195200pt;}
.ws77{word-spacing:16.219200pt;}
.ws42{word-spacing:16.238400pt;}
.wse3{word-spacing:16.267200pt;}
.ws16d{word-spacing:16.363782pt;}
.ws58{word-spacing:16.430400pt;}
.wsc5{word-spacing:16.603200pt;}
.ws172{word-spacing:16.615778pt;}
.wse6{word-spacing:16.694400pt;}
.wsda{word-spacing:16.728000pt;}
.ws13f{word-spacing:16.790400pt;}
.wsc3{word-spacing:16.833600pt;}
.wsc4{word-spacing:16.867200pt;}
.ws70{word-spacing:16.891200pt;}
.ws45{word-spacing:16.896000pt;}
.ws162{word-spacing:16.899775pt;}
.ws22{word-spacing:16.934400pt;}
.ws13b{word-spacing:16.948800pt;}
.ws17d{word-spacing:17.019773pt;}
.ws6d{word-spacing:17.040000pt;}
.ws191{word-spacing:17.067772pt;}
.ws1c{word-spacing:17.092800pt;}
.ws147{word-spacing:17.102400pt;}
.ws12c{word-spacing:17.112000pt;}
.ws1a{word-spacing:17.164800pt;}
.ws49{word-spacing:17.174400pt;}
.ws60{word-spacing:17.222400pt;}
.ws166{word-spacing:17.307769pt;}
.ws10c{word-spacing:17.337600pt;}
.ws17c{word-spacing:17.355769pt;}
.ws11a{word-spacing:17.385600pt;}
.ws1b2{word-spacing:17.411768pt;}
.wsad{word-spacing:17.476800pt;}
.ws13c{word-spacing:17.534400pt;}
.ws129{word-spacing:17.553600pt;}
.ws26{word-spacing:17.606400pt;}
.ws19{word-spacing:17.611200pt;}
.ws192{word-spacing:17.619765pt;}
.ws2c{word-spacing:17.740800pt;}
.ws23{word-spacing:17.784000pt;}
.wse5{word-spacing:17.798400pt;}
.ws1be{word-spacing:17.815762pt;}
.ws12b{word-spacing:17.889600pt;}
.ws140{word-spacing:17.899200pt;}
.ws2d{word-spacing:18.057600pt;}
.wsc8{word-spacing:18.100800pt;}
.ws1bc{word-spacing:18.127758pt;}
.ws151{word-spacing:18.364800pt;}
.ws16c{word-spacing:18.419754pt;}
.ws124{word-spacing:18.460800pt;}
.ws168{word-spacing:18.655751pt;}
.ws3f{word-spacing:18.763200pt;}
.ws142{word-spacing:18.772800pt;}
.ws149{word-spacing:18.782400pt;}
.ws113{word-spacing:18.849600pt;}
.ws141{word-spacing:18.854400pt;}
.ws84{word-spacing:18.888000pt;}
.ws83{word-spacing:18.964800pt;}
.ws104{word-spacing:19.060800pt;}
.ws1b9{word-spacing:19.191744pt;}
.ws169{word-spacing:19.215744pt;}
.wse0{word-spacing:19.291200pt;}
.ws125{word-spacing:19.368000pt;}
.ws4d{word-spacing:19.396800pt;}
.ws48{word-spacing:19.440000pt;}
.ws103{word-spacing:19.488000pt;}
.ws55{word-spacing:19.512000pt;}
.ws13d{word-spacing:19.550400pt;}
.ws53{word-spacing:19.560000pt;}
.ws1bf{word-spacing:19.591739pt;}
.ws146{word-spacing:19.612800pt;}
.wsea{word-spacing:19.737600pt;}
.ws14a{word-spacing:19.800000pt;}
.wse2{word-spacing:19.824000pt;}
.ws18a{word-spacing:20.151731pt;}
.ws52{word-spacing:20.174400pt;}
.ws136{word-spacing:20.193600pt;}
.ws6b{word-spacing:20.264357pt;}
.ws98{word-spacing:20.270400pt;}
.ws39{word-spacing:20.419200pt;}
.ws18b{word-spacing:20.475727pt;}
.ws111{word-spacing:20.548800pt;}
.ws14e{word-spacing:20.625600pt;}
.ws85{word-spacing:20.769600pt;}
.ws12d{word-spacing:20.836800pt;}
.wsf8{word-spacing:21.033600pt;}
.wsf7{word-spacing:21.091200pt;}
.ws75{word-spacing:21.100800pt;}
.ws1ac{word-spacing:21.187717pt;}
.ws8e{word-spacing:21.205280pt;}
.ws19f{word-spacing:21.515713pt;}
.ws14d{word-spacing:21.528000pt;}
.ws167{word-spacing:21.535713pt;}
.ws1a0{word-spacing:21.599712pt;}
.ws81{word-spacing:21.628800pt;}
.wsa3{word-spacing:21.686400pt;}
.ws10a{word-spacing:21.710400pt;}
.ws82{word-spacing:21.715200pt;}
.ws10f{word-spacing:21.787200pt;}
.ws174{word-spacing:21.915708pt;}
.ws122{word-spacing:22.012800pt;}
.ws173{word-spacing:22.039706pt;}
.ws120{word-spacing:22.089600pt;}
.ws61{word-spacing:22.291200pt;}
.ws109{word-spacing:22.315200pt;}
.ws62{word-spacing:22.766400pt;}
.ws178{word-spacing:23.183691pt;}
.ws31{word-spacing:23.275200pt;}
.ws1b5{word-spacing:23.307689pt;}
.ws179{word-spacing:23.599685pt;}
.ws4e{word-spacing:23.793600pt;}
.ws123{word-spacing:24.129600pt;}
.ws158{word-spacing:24.339675pt;}
.ws157{word-spacing:24.403675pt;}
.ws7d{word-spacing:24.600000pt;}
.ws7b{word-spacing:24.768000pt;}
.ws2f{word-spacing:24.864000pt;}
.ws2e{word-spacing:25.348800pt;}
.ws14f{word-spacing:25.440000pt;}
.ws30{word-spacing:25.560000pt;}
.wsa2{word-spacing:25.660800pt;}
.ws197{word-spacing:25.743657pt;}
.ws196{word-spacing:25.779656pt;}
.wsb8{word-spacing:26.049600pt;}
.wsf2{word-spacing:26.227200pt;}
.wsf3{word-spacing:26.313600pt;}
.ws5{word-spacing:26.421465pt;}
.wsf4{word-spacing:26.476800pt;}
.wsb6{word-spacing:26.577600pt;}
.ws6{word-spacing:26.890801pt;}
.ws63{word-spacing:27.072000pt;}
.wsbb{word-spacing:27.081600pt;}
.wsa0{word-spacing:27.307200pt;}
.ws5f{word-spacing:27.470400pt;}
.ws86{word-spacing:28.833600pt;}
.ws9b{word-spacing:28.944000pt;}
.ws87{word-spacing:29.001600pt;}
.ws9e{word-spacing:29.025600pt;}
.ws7c{word-spacing:29.293867pt;}
.ws9a{word-spacing:30.120000pt;}
.wsa9{word-spacing:32.596800pt;}
.ws145{word-spacing:32.616000pt;}
.ws7e{word-spacing:36.288000pt;}
.ws114{word-spacing:42.436800pt;}
.ws88{word-spacing:45.355200pt;}
.ws89{word-spacing:45.374400pt;}
.ws150{word-spacing:89.208000pt;}
.ws6c{word-spacing:164.769600pt;}
.ws1{word-spacing:936.743991pt;}
._1f{margin-left:-26.666650pt;}
._1b{margin-left:-20.215482pt;}
._1a{margin-left:-19.072518pt;}
._2a{margin-left:-17.555624pt;}
._23{margin-left:-16.462148pt;}
._1d{margin-left:-13.385584pt;}
._12{margin-left:-12.403200pt;}
._18{margin-left:-11.112305pt;}
._25{margin-left:-7.682175pt;}
._c{margin-left:-2.156981pt;}
._5{margin-left:-1.207452pt;}
._b{width:1.025584pt;}
._0{width:1.962668pt;}
._9{width:2.958933pt;}
._15{width:4.079162pt;}
._21{width:7.083869pt;}
._7{width:8.145600pt;}
._13{width:9.460800pt;}
._26{width:10.395807pt;}
._4{width:11.396124pt;}
._3{width:12.788267pt;}
._a{width:13.900267pt;}
._10{width:15.467216pt;}
._6{width:16.723200pt;}
._8{width:18.360000pt;}
._16{width:19.387200pt;}
._d{width:20.339216pt;}
._20{width:21.275884pt;}
._22{width:22.731507pt;}
._29{width:24.279676pt;}
._19{width:25.320000pt;}
._1e{width:26.583438pt;}
._2{width:27.509471pt;}
._17{width:28.939200pt;}
._1c{width:31.179562pt;}
._27{width:32.949852pt;}
._11{width:35.977616pt;}
._24{width:43.890138pt;}
._14{width:45.552000pt;}
._1{width:53.333319pt;}
._28{width:88.348800pt;}
._f{width:1061.707643pt;}
._e{width:1642.494825pt;}
.fsf{font-size:25.497600pt;}
.fs11{font-size:26.662400pt;}
.fs13{font-size:27.998933pt;}
.fs9{font-size:28.440000pt;}
.fsd{font-size:28.684800pt;}
.fs8{font-size:31.995733pt;}
.fsb{font-size:33.600000pt;}
.fse{font-size:37.183467pt;}
.fs12{font-size:39.999467pt;}
.fs0{font-size:40.000000pt;}
.fsc{font-size:41.832000pt;}
.fsa{font-size:42.666133pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:58.667200pt;}
.fs10{font-size:61.332800pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:106.666667pt;}
.fs6{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:55.483968pt;}
.y76{bottom:64.478667pt;}
.y77{bottom:65.385733pt;}
.y1{bottom:78.150635pt;}
.y75{bottom:81.259733pt;}
.y74{bottom:144.603467pt;}
.y16a{bottom:144.604056pt;}
.y52{bottom:144.604133pt;}
.ycc{bottom:144.604550pt;}
.yca{bottom:144.604667pt;}
.y121{bottom:144.982533pt;}
.y16d{bottom:145.511733pt;}
.ycb{bottom:156.623600pt;}
.y169{bottom:156.698895pt;}
.y4f{bottom:158.739467pt;}
.y51{bottom:158.740133pt;}
.yf2{bottom:158.965067pt;}
.yc9{bottom:158.966267pt;}
.y50{bottom:164.031467pt;}
.y168{bottom:168.793733pt;}
.y72{bottom:172.799467pt;}
.y4e{bottom:172.799867pt;}
.yf1{bottom:173.251067pt;}
.yc8{bottom:173.253467pt;}
.y73{bottom:178.091333pt;}
.y167{bottom:180.811883pt;}
.y4c{bottom:186.782000pt;}
.y71{bottom:186.859867pt;}
.yc7{bottom:187.540667pt;}
.yf0{bottom:187.613867pt;}
.y4d{bottom:192.151067pt;}
.y166{bottom:192.830723pt;}
.y4b{bottom:200.918000pt;}
.y70{bottom:200.920267pt;}
.yc6{bottom:201.827867pt;}
.yef{bottom:201.901067pt;}
.y165{bottom:204.925561pt;}
.y4a{bottom:214.978400pt;}
.y6d{bottom:215.054533pt;}
.y6f{bottom:215.055067pt;}
.yee{bottom:216.188267pt;}
.yc5{bottom:216.189467pt;}
.y164{bottom:217.020400pt;}
.y6e{bottom:220.346400pt;}
.y163{bottom:221.480267pt;}
.yc4{bottom:228.434533pt;}
.yec{bottom:228.510133pt;}
.y162{bottom:229.038683pt;}
.y49{bottom:229.038800pt;}
.y6a{bottom:229.114267pt;}
.y6c{bottom:229.114933pt;}
.yc3{bottom:230.475467pt;}
.yeb{bottom:230.550533pt;}
.yed{bottom:230.551067pt;}
.y6b{bottom:234.406267pt;}
.y161{bottom:241.057523pt;}
.y48{bottom:243.099200pt;}
.y67{bottom:243.173200pt;}
.y69{bottom:243.174667pt;}
.yc2{bottom:244.762667pt;}
.yea{bottom:244.837733pt;}
.y68{bottom:248.541733pt;}
.y160{bottom:253.152361pt;}
.y66{bottom:257.233600pt;}
.y47{bottom:257.234000pt;}
.yc1{bottom:259.049867pt;}
.ye9{bottom:259.199333pt;}
.y15f{bottom:265.247200pt;}
.y15e{bottom:269.706933pt;}
.y44{bottom:271.292800pt;}
.y46{bottom:271.294400pt;}
.y65{bottom:271.369600pt;}
.yc0{bottom:273.335867pt;}
.ye8{bottom:273.485333pt;}
.y45{bottom:276.661333pt;}
.y15d{bottom:277.265483pt;}
.y43{bottom:285.353200pt;}
.y64{bottom:285.430000pt;}
.ybe{bottom:285.656533pt;}
.ybd{bottom:287.696933pt;}
.ybf{bottom:287.697467pt;}
.ye7{bottom:287.848133pt;}
.y15c{bottom:289.284323pt;}
.y63{bottom:299.413600pt;}
.y42{bottom:299.489200pt;}
.ybb{bottom:299.943200pt;}
.y15b{bottom:301.379161pt;}
.ybc{bottom:301.984133pt;}
.yba{bottom:301.985333pt;}
.ye6{bottom:302.135333pt;}
.y61{bottom:313.474000pt;}
.y41{bottom:313.549600pt;}
.y3f{bottom:313.550133pt;}
.yb9{bottom:316.271333pt;}
.ye5{bottom:316.422533pt;}
.y15a{bottom:317.933733pt;}
.y62{bottom:318.840933pt;}
.y40{bottom:318.916400pt;}
.y159{bottom:325.492149pt;}
.y3c{bottom:327.607067pt;}
.y60{bottom:327.608800pt;}
.y3e{bottom:327.609333pt;}
.yb7{bottom:328.592000pt;}
.ye3{bottom:328.743200pt;}
.yb8{bottom:330.557333pt;}
.yb6{bottom:330.557467pt;}
.ye2{bottom:330.780667pt;}
.ye4{bottom:330.784133pt;}
.y3d{bottom:332.976267pt;}
.y158{bottom:337.510989pt;}
.y5d{bottom:341.667467pt;}
.y5f{bottom:341.669200pt;}
.y3b{bottom:341.743067pt;}
.yb5{bottom:344.919067pt;}
.ye1{bottom:345.067867pt;}
.y5e{bottom:346.960533pt;}
.y157{bottom:349.605828pt;}
.y3a{bottom:355.727867pt;}
.yb3{bottom:357.165333pt;}
.yb4{bottom:359.206267pt;}
.yb2{bottom:359.208267pt;}
.ye0{bottom:359.430667pt;}
.y156{bottom:361.700667pt;}
.y155{bottom:366.160533pt;}
.y39{bottom:369.788267pt;}
.yb1{bottom:373.494267pt;}
.ydf{bottom:373.717867pt;}
.y154{bottom:373.718511pt;}
.y11e{bottom:377.727733pt;}
.yae{bottom:381.731600pt;}
.y36{bottom:383.846400pt;}
.y38{bottom:383.848667pt;}
.y5b{bottom:383.922667pt;}
.y5c{bottom:383.924267pt;}
.y153{bottom:385.737350pt;}
.y136{bottom:387.165333pt;}
.yb0{bottom:387.780267pt;}
.yde{bottom:388.005067pt;}
.y37{bottom:389.215600pt;}
.y11d{bottom:392.164933pt;}
.yad{bottom:395.943867pt;}
.y152{bottom:397.832189pt;}
.y35{bottom:397.982400pt;}
.y5a{bottom:397.983067pt;}
.y135{bottom:401.224533pt;}
.yaf{bottom:402.141867pt;}
.ydd{bottom:402.367867pt;}
.y11c{bottom:406.527733pt;}
.y151{bottom:409.927028pt;}
.yaa{bottom:410.229200pt;}
.yac{bottom:410.229867pt;}
.y34{bottom:412.042800pt;}
.y59{bottom:412.043467pt;}
.y134{bottom:415.209333pt;}
.yab{bottom:415.596800pt;}
.ydc{bottom:416.653867pt;}
.y11b{bottom:420.890533pt;}
.y150{bottom:422.021867pt;}
.ya9{bottom:424.513467pt;}
.y33{bottom:426.103200pt;}
.y57{bottom:426.103867pt;}
.y14f{bottom:426.406267pt;}
.y133{bottom:429.194133pt;}
.ydb{bottom:431.015467pt;}
.y58{bottom:431.470800pt;}
.y14e{bottom:433.964589pt;}
.ycf{bottom:434.418566pt;}
.y11a{bottom:435.327733pt;}
.ya8{bottom:438.800667pt;}
.y32{bottom:440.239200pt;}
.y30{bottom:440.239600pt;}
.y56{bottom:440.239867pt;}
.y132{bottom:443.178933pt;}
.yda{bottom:445.302667pt;}
.y13{bottom:445.362659pt;}
.y31{bottom:445.530533pt;}
.y14d{bottom:446.059428pt;}
.yce{bottom:446.361884pt;}
.y119{bottom:449.689333pt;}
.ya7{bottom:453.087867pt;}
.y2f{bottom:454.298800pt;}
.y53{bottom:454.298933pt;}
.y55{bottom:454.299067pt;}
.y131{bottom:457.239333pt;}
.y14c{bottom:458.154267pt;}
.ycd{bottom:458.380933pt;}
.yd9{bottom:459.664267pt;}
.y54{bottom:459.666000pt;}
.y14b{bottom:462.614000pt;}
.y118{bottom:464.050933pt;}
.y12{bottom:464.695992pt;}
.ya6{bottom:467.375067pt;}
.y14a{bottom:470.172722pt;}
.y130{bottom:471.224133pt;}
.yd8{bottom:473.951467pt;}
.y117{bottom:478.489333pt;}
.ya5{bottom:481.662267pt;}
.y11{bottom:482.029325pt;}
.y149{bottom:482.191561pt;}
.y12f{bottom:485.208933pt;}
.yd7{bottom:488.238667pt;}
.y116{bottom:492.850933pt;}
.y148{bottom:494.286400pt;}
.ya4{bottom:495.648400pt;}
.y147{bottom:498.746400pt;}
.y12e{bottom:499.193733pt;}
.yd6{bottom:502.600267pt;}
.y146{bottom:506.305028pt;}
.y115{bottom:507.212533pt;}
.ya3{bottom:509.934400pt;}
.y2e{bottom:510.084400pt;}
.y12d{bottom:513.178533pt;}
.y10{bottom:515.362659pt;}
.yd5{bottom:516.887467pt;}
.y145{bottom:518.399867pt;}
.y114{bottom:521.650933pt;}
.y144{bottom:522.784133pt;}
.ya2{bottom:524.219200pt;}
.y2c{bottom:524.673867pt;}
.y2d{bottom:525.807733pt;}
.y12c{bottom:527.238933pt;}
.yd4{bottom:531.250267pt;}
.yf{bottom:534.695992pt;}
.y143{bottom:535.020933pt;}
.y113{bottom:536.012533pt;}
.ya1{bottom:538.506400pt;}
.y12b{bottom:541.223733pt;}
.yd3{bottom:545.536267pt;}
.y2b{bottom:546.139467pt;}
.y112{bottom:549.997333pt;}
.ye{bottom:552.029325pt;}
.ya0{bottom:552.716800pt;}
.y12a{bottom:555.208533pt;}
.yd2{bottom:559.823467pt;}
.y2a{bottom:560.124267pt;}
.y111{bottom:564.358933pt;}
.y142{bottom:565.559733pt;}
.y9f{bottom:567.004000pt;}
.y129{bottom:569.193333pt;}
.y29{bottom:574.109067pt;}
.yd1{bottom:574.185067pt;}
.y110{bottom:578.797333pt;}
.y141{bottom:579.620133pt;}
.y9e{bottom:581.290533pt;}
.y128{bottom:583.178133pt;}
.yd{bottom:585.362659pt;}
.y28{bottom:588.093867pt;}
.yd0{bottom:588.472267pt;}
.y10f{bottom:593.158933pt;}
.y140{bottom:593.680533pt;}
.y9d{bottom:595.577200pt;}
.y127{bottom:597.238533pt;}
.y27{bottom:602.079200pt;}
.y198{bottom:603.136987pt;}
.yc{bottom:604.695992pt;}
.y10e{bottom:607.520533pt;}
.y13f{bottom:607.740933pt;}
.y9c{bottom:609.865067pt;}
.y126{bottom:611.223333pt;}
.y197{bottom:615.155827pt;}
.y26{bottom:616.138400pt;}
.y120{bottom:620.749350pt;}
.y13e{bottom:621.876933pt;}
.y10d{bottom:621.959467pt;}
.y9b{bottom:624.150400pt;}
.y125{bottom:625.208133pt;}
.y196{bottom:627.174667pt;}
.y195{bottom:631.634533pt;}
.y11f{bottom:632.768400pt;}
.y25{bottom:635.867600pt;}
.y13d{bottom:635.936133pt;}
.y10c{bottom:636.321067pt;}
.y98{bottom:638.437067pt;}
.y9a{bottom:638.437600pt;}
.y124{bottom:639.192933pt;}
.y194{bottom:639.193959pt;}
.y1b2{bottom:639.194053pt;}
.yb{bottom:639.362659pt;}
.y99{bottom:643.729067pt;}
.y10a{bottom:650.306533pt;}
.y193{bottom:651.136800pt;}
.y1b1{bottom:651.136894pt;}
.y97{bottom:652.724267pt;}
.y123{bottom:653.176667pt;}
.y10b{bottom:655.672267pt;}
.y190{bottom:661.492800pt;}
.y191{bottom:663.155733pt;}
.y18f{bottom:663.155827pt;}
.y109{bottom:664.743733pt;}
.y13c{bottom:665.340933pt;}
.y96{bottom:666.934667pt;}
.y122{bottom:667.237067pt;}
.y192{bottom:667.615600pt;}
.y24{bottom:674.796667pt;}
.y1b0{bottom:675.174253pt;}
.y18e{bottom:675.174667pt;}
.y108{bottom:679.106533pt;}
.y13b{bottom:679.476933pt;}
.y23{bottom:679.558933pt;}
.y18d{bottom:679.634400pt;}
.y93{bottom:681.220667pt;}
.y95{bottom:681.221867pt;}
.y94{bottom:686.588800pt;}
.y18c{bottom:687.193053pt;}
.y1ae{bottom:687.193093pt;}
.y1af{bottom:689.763058pt;}
.y107{bottom:693.468133pt;}
.y13a{bottom:693.536133pt;}
.y92{bottom:695.507867pt;}
.y18b{bottom:699.136894pt;}
.y1ad{bottom:699.136933pt;}
.y22{bottom:701.404533pt;}
.y1ac{bottom:703.596667pt;}
.y21{bottom:706.166800pt;}
.y139{bottom:707.595333pt;}
.y90{bottom:707.829733pt;}
.y106{bottom:707.905333pt;}
.y8f{bottom:709.794533pt;}
.y91{bottom:709.795067pt;}
.y18a{bottom:711.155733pt;}
.y1ab{bottom:711.155787pt;}
.y189{bottom:715.615600pt;}
.y16c{bottom:715.917750pt;}
.y20{bottom:717.429733pt;}
.y138{bottom:721.654533pt;}
.y8d{bottom:722.116400pt;}
.y1f{bottom:722.192000pt;}
.y104{bottom:722.266933pt;}
.y188{bottom:723.174627pt;}
.y8c{bottom:724.081067pt;}
.y8e{bottom:724.081733pt;}
.y105{bottom:727.558933pt;}
.y16b{bottom:727.936800pt;}
.y1aa{bottom:735.193467pt;}
.y187{bottom:735.194053pt;}
.y137{bottom:735.713733pt;}
.y8a{bottom:736.327333pt;}
.y103{bottom:736.628533pt;}
.y1e{bottom:737.763600pt;}
.y89{bottom:738.367200pt;}
.y8b{bottom:738.368267pt;}
.y1a9{bottom:739.577733pt;}
.y186{bottom:747.136894pt;}
.y1a8{bottom:747.136947pt;}
.y102{bottom:751.066933pt;}
.y88{bottom:752.654400pt;}
.y185{bottom:759.155733pt;}
.y1a7{bottom:759.155787pt;}
.ya{bottom:762.933337pt;}
.y184{bottom:763.615600pt;}
.y101{bottom:765.429733pt;}
.y1b{bottom:766.790400pt;}
.y87{bottom:766.941067pt;}
.y170{bottom:768.075233pt;}
.y1c{bottom:769.285200pt;}
.y1a6{bottom:771.174627pt;}
.y183{bottom:771.175213pt;}
.y1d{bottom:772.081733pt;}
.y100{bottom:779.792533pt;}
.y16f{bottom:780.018550pt;}
.y86{bottom:781.151467pt;}
.y19{bottom:781.454933pt;}
.y1a5{bottom:783.193467pt;}
.y182{bottom:783.194053pt;}
.y1a{bottom:786.746267pt;}
.y1a4{bottom:787.577733pt;}
.y16e{bottom:792.037600pt;}
.yff{bottom:794.230933pt;}
.y181{bottom:795.136894pt;}
.y85{bottom:795.437467pt;}
.y9{bottom:804.994657pt;}
.y180{bottom:807.155733pt;}
.yfe{bottom:808.592533pt;}
.y84{bottom:809.497867pt;}
.y17f{bottom:811.615600pt;}
.y18{bottom:815.319467pt;}
.y1a3{bottom:819.174627pt;}
.y17e{bottom:819.175213pt;}
.yfd{bottom:822.954133pt;}
.y83{bottom:823.708267pt;}
.y1a2{bottom:831.193467pt;}
.y17d{bottom:831.194053pt;}
.y17{bottom:831.269467pt;}
.y8{bottom:834.554665pt;}
.y1a1{bottom:835.577733pt;}
.yfc{bottom:837.392533pt;}
.y82{bottom:837.995467pt;}
.y1a0{bottom:843.136854pt;}
.y17c{bottom:843.136894pt;}
.y16{bottom:847.294267pt;}
.yfb{bottom:851.752933pt;}
.y81{bottom:852.282667pt;}
.y19f{bottom:855.155694pt;}
.y17b{bottom:855.155733pt;}
.y7{bottom:855.194669pt;}
.y17a{bottom:859.615600pt;}
.yfa{bottom:866.115733pt;}
.y7e{bottom:866.566933pt;}
.y80{bottom:866.569867pt;}
.y19e{bottom:867.174533pt;}
.y179{bottom:867.174986pt;}
.y19d{bottom:871.634400pt;}
.y7f{bottom:871.936800pt;}
.y178{bottom:879.193826pt;}
.y19c{bottom:879.194053pt;}
.yf9{bottom:880.552933pt;}
.y7d{bottom:880.854133pt;}
.y6{bottom:888.407997pt;}
.y177{bottom:891.136667pt;}
.y19b{bottom:891.136894pt;}
.yf8{bottom:894.537733pt;}
.y7c{bottom:894.838933pt;}
.y176{bottom:895.596533pt;}
.y15{bottom:897.258920pt;}
.y19a{bottom:903.155733pt;}
.y175{bottom:903.156146pt;}
.y5{bottom:904.141335pt;}
.yf6{bottom:906.935200pt;}
.y199{bottom:907.615600pt;}
.yf5{bottom:908.900267pt;}
.yf7{bottom:908.900533pt;}
.y7b{bottom:909.126133pt;}
.y174{bottom:915.174986pt;}
.yf4{bottom:923.261867pt;}
.y7a{bottom:923.413333pt;}
.y14{bottom:926.664400pt;}
.y173{bottom:927.193826pt;}
.yf3{bottom:937.700267pt;}
.y79{bottom:937.700533pt;}
.y172{bottom:939.136667pt;}
.y171{bottom:943.596533pt;}
.y4{bottom:947.856001pt;}
.y3{bottom:979.856001pt;}
.y78{bottom:1008.982400pt;}
.h2d{height:19.090278pt;}
.h24{height:20.317291pt;}
.h2a{height:20.396736pt;}
.he{height:21.756600pt;}
.h15{height:22.908945pt;}
.h19{height:25.316412pt;}
.hc{height:26.108518pt;}
.h14{height:27.221867pt;}
.h18{height:27.441398pt;}
.h2b{height:28.639618pt;}
.h13{height:30.872016pt;}
.h17{height:31.060945pt;}
.h2c{height:31.956934pt;}
.hf{height:31.957814pt;}
.h10{height:32.473194pt;}
.h12{height:34.368000pt;}
.h1f{height:34.370667pt;}
.h20{height:34.372800pt;}
.h23{height:34.379733pt;}
.h11{height:34.815565pt;}
.h2{height:35.040000pt;}
.h16{height:35.952000pt;}
.hd{height:36.720000pt;}
.h6{height:37.376000pt;}
.h5{height:37.776000pt;}
.h1b{height:38.572267pt;}
.h25{height:38.864533pt;}
.h26{height:38.873067pt;}
.h27{height:38.877867pt;}
.ha{height:39.168000pt;}
.h28{height:41.290133pt;}
.h1c{height:41.292267pt;}
.h1d{height:41.294933pt;}
.h21{height:41.296533pt;}
.h22{height:41.589333pt;}
.h1e{height:41.597333pt;}
.h29{height:41.598933pt;}
.h7{height:41.973333pt;}
.h4{height:42.048000pt;}
.h8{height:46.720000pt;}
.h1a{height:47.655586pt;}
.hb{height:58.755635pt;}
.h9{height:81.600408pt;}
.h3{height:83.946667pt;}
.h0{height:1079.962667pt;}
.h1{height:1080.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x33{left:52.006267pt;}
.x34{left:53.064533pt;}
.x35{left:64.252000pt;}
.x4{left:70.677200pt;}
.x14{left:71.886533pt;}
.x10{left:73.700800pt;}
.x11{left:75.363733pt;}
.x58{left:76.270800pt;}
.x13{left:77.858267pt;}
.x15{left:94.639733pt;}
.xe{left:98.494400pt;}
.x1e{left:118.299200pt;}
.x59{left:121.926679pt;}
.x1f{left:125.480267pt;}
.x4c{left:134.777867pt;}
.x55{left:142.488133pt;}
.x56{left:149.517789pt;}
.x3f{left:157.001467pt;}
.x2{left:160.000000pt;}
.x1{left:165.333333pt;}
.x18{left:169.096000pt;}
.xf{left:172.195200pt;}
.x19{left:176.503867pt;}
.x40{left:177.486533pt;}
.x3d{left:178.393600pt;}
.x3{left:184.000000pt;}
.x20{left:186.708533pt;}
.x57{left:191.697227pt;}
.x3e{left:193.284933pt;}
.x5{left:200.012533pt;}
.x21{left:216.793600pt;}
.x6{left:232.743200pt;}
.x22{left:245.291200pt;}
.x1a{left:251.489733pt;}
.x1b{left:259.804667pt;}
.x39{left:269.404667pt;}
.x3a{left:273.410933pt;}
.x3b{left:274.620400pt;}
.x3c{left:278.551067pt;}
.x1c{left:313.398400pt;}
.x5a{left:316.042091pt;}
.x38{left:318.992000pt;}
.x1d{left:323.527467pt;}
.x7{left:330.935333pt;}
.x36{left:333.656533pt;}
.x12{left:339.400966pt;}
.x5b{left:342.576267pt;}
.x37{left:345.373067pt;}
.x8{left:355.653467pt;}
.x5c{left:359.130533pt;}
.x4a{left:365.933733pt;}
.x16{left:370.695867pt;}
.x4b{left:373.266000pt;}
.x17{left:379.086533pt;}
.x41{left:384.755733pt;}
.x5d{left:386.645600pt;}
.x42{left:391.710133pt;}
.x9{left:415.974667pt;}
.x23{left:419.981200pt;}
.x49{left:422.702267pt;}
.x52{left:425.196800pt;}
.x53{left:427.993600pt;}
.x54{left:429.580933pt;}
.xa{left:438.803067pt;}
.x2a{left:443.792000pt;}
.x51{left:451.351067pt;}
.x2b{left:454.979467pt;}
.x24{left:460.497467pt;}
.x25{left:468.736933pt;}
.x46{left:470.324267pt;}
.x28{left:474.406133pt;}
.x2c{left:478.034533pt;}
.x29{left:495.722667pt;}
.x4d{left:499.653467pt;}
.x4e{left:508.875467pt;}
.x26{left:520.289600pt;}
.xb{left:523.464400pt;}
.x27{left:531.552667pt;}
.x2f{left:535.710133pt;}
.x48{left:542.740000pt;}
.x5e{left:546.443700pt;}
.xc{left:548.182533pt;}
.x45{left:555.136800pt;}
.x30{left:559.294400pt;}
.x47{left:563.451867pt;}
.x31{left:573.202933pt;}
.x32{left:596.333600pt;}
.x43{left:609.032933pt;}
.x50{left:613.492800pt;}
.x44{left:619.615600pt;}
.xd{left:641.990400pt;}
.x2d{left:686.286400pt;}
.x2e{left:710.475467pt;}
.x4f{left:736.856533pt;}
}


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