
/* 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_2b7ae5fb6f58.woff")format("woff");}.ff1{font-family:ff1;line-height:1.168000;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_eb32fabb51b4.woff")format("woff");}.ff2{font-family:ff2;line-height:1.174000;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_01af7e4a6399.woff")format("woff");}.ff3{font-family:ff3;line-height:1.167000;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_b56379499807.woff")format("woff");}.ff4{font-family:ff4;line-height:1.170000;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_d32617c28b79.woff")format("woff");}.ff5{font-family:ff5;line-height:1.184000;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_2a910bc63668.woff")format("woff");}.ff6{font-family:ff6;line-height:0.943000;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_17e2e9ac0cce.woff")format("woff");}.ff7{font-family:ff7;line-height:1.167000;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_8e471e901e0a.woff")format("woff");}.ff8{font-family:ff8;line-height:1.168000;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_c7fd9bee6e4a.woff")format("woff");}.ff9{font-family:ff9;line-height:1.156000;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_eceaafa2b0cd.woff")format("woff");}.ffa{font-family:ffa;line-height:1.136000;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_49780809b9d0.woff")format("woff");}.ffb{font-family:ffb;line-height:1.139000;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_5b3266ae79e3.woff")format("woff");}.ffc{font-family:ffc;line-height:1.101000;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_9fe13225a130.woff")format("woff");}.ffd{font-family:ffd;line-height:1.205000;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_fc918c5553b8.woff")format("woff");}.ffe{font-family:ffe;line-height:1.171000;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_9fa8cb64a4be.woff")format("woff");}.fff{font-family:fff;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:ff10;src:url("fonts/font_0015_8151f6fbb7c2.woff")format("woff");}.ff10{font-family:ff10;line-height:1.284668;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_266d4171228b.woff")format("woff");}.ff11{font-family:ff11;line-height:1.174000;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_91260c09751c.woff")format("woff");}.ff12{font-family:ff12;line-height:1.063000;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_d956d807e7b4.woff")format("woff");}.ff13{font-family:ff13;line-height:0.983000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url("fonts/font_0019_25a8884e8a64.woff")format("woff");}.ff14{font-family:ff14;line-height:1.147000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_c0f026e43699.woff")format("woff");}.ff15{font-family:ff15;line-height:0.988000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url("fonts/font_0021_b8605c1efc86.woff")format("woff");}.ff16{font-family:ff16;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url("fonts/font_0022_0f505a114724.woff")format("woff");}.ff17{font-family:ff17;line-height:1.133000;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;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.149999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149999,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v1{vertical-align:-1.020960px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.003586px;}
.ls0{letter-spacing:0.004184px;}
.ls5{letter-spacing:0.004483px;}
.ls20{letter-spacing:0.033474px;}
.ls11{letter-spacing:0.037658px;}
.lsc{letter-spacing:0.057377px;}
.lsa{letter-spacing:0.236710px;}
.ls1c{letter-spacing:0.304718px;}
.ls1{letter-spacing:0.510480px;}
.ls2{letter-spacing:0.849420px;}
.ls22{letter-spacing:0.979120px;}
.ls25{letter-spacing:1.022158px;}
.ls24{letter-spacing:1.167412px;}
.ls32{letter-spacing:1.366464px;}
.ls31{letter-spacing:1.431021px;}
.ls26{letter-spacing:1.909822px;}
.ls23{letter-spacing:2.189570px;}
.ls30{letter-spacing:2.528497px;}
.ls21{letter-spacing:2.872803px;}
.ls10{letter-spacing:11.033929px;}
.ls19{letter-spacing:12.701661px;}
.lse{letter-spacing:13.212740px;}
.ls13{letter-spacing:13.551666px;}
.ls16{letter-spacing:13.942021px;}
.ls3{letter-spacing:14.113620px;}
.ls4{letter-spacing:14.511722px;}
.ls18{letter-spacing:14.511730px;}
.ls1b{letter-spacing:15.762755px;}
.ls9{letter-spacing:15.934908px;}
.ls1a{letter-spacing:16.101682px;}
.ls27{letter-spacing:17.790932px;}
.ls29{letter-spacing:18.129859px;}
.ls15{letter-spacing:21.761210px;}
.lsf{letter-spacing:22.057098px;}
.ls2e{letter-spacing:22.213112px;}
.ls17{letter-spacing:22.540926px;}
.ls6{letter-spacing:22.540966px;}
.ls1e{letter-spacing:23.757108px;}
.ls14{letter-spacing:23.929261px;}
.lsd{letter-spacing:24.096035px;}
.ls12{letter-spacing:24.779267px;}
.ls33{letter-spacing:25.274206px;}
.ls2d{letter-spacing:26.635291px;}
.ls1d{letter-spacing:27.501435px;}
.ls2a{letter-spacing:28.491315px;}
.ls1f{letter-spacing:33.284699px;}
.ls28{letter-spacing:34.457491px;}
.lsb{letter-spacing:34.645783px;}
.ls2c{letter-spacing:37.857512px;}
.ls2b{letter-spacing:38.540744px;}
.ls2f{letter-spacing:40.579681px;}
.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;}
}
.ws1d9{word-spacing:-40.633478px;}
.ws1c5{word-spacing:-38.594542px;}
.ws1c7{word-spacing:-37.911310px;}
.ws1be{word-spacing:-34.511289px;}
.ws89{word-spacing:-26.898900px;}
.ws1d2{word-spacing:-26.689089px;}
.ws1e8{word-spacing:-25.328004px;}
.wsbc{word-spacing:-23.983059px;}
.ws1d8{word-spacing:-22.266909px;}
.wsc0{word-spacing:-21.815008px;}
.ws1c4{word-spacing:-18.495684px;}
.ws1c0{word-spacing:-18.183656px;}
.ws1b9{word-spacing:-17.844730px;}
.wsdb{word-spacing:-16.155479px;}
.wsdd{word-spacing:-15.816553px;}
.wsd6{word-spacing:-12.755458px;}
.ws6b{word-spacing:-3.661137px;}
.ws1c8{word-spacing:-1.075956px;}
.ws1ad{word-spacing:-0.071731px;}
.ws12{word-spacing:-0.059776px;}
.ws2b{word-spacing:-0.053798px;}
.ws70{word-spacing:-0.049314px;}
.ws1c{word-spacing:-0.047821px;}
.ws3{word-spacing:-0.046027px;}
.wsbe{word-spacing:-0.043037px;}
.wsd{word-spacing:-0.041843px;}
.ws71{word-spacing:0.000000px;}
.ws136{word-spacing:10.046456px;}
.ws138{word-spacing:10.050641px;}
.ws171{word-spacing:10.075746px;}
.ws137{word-spacing:10.197090px;}
.ws175{word-spacing:10.841469px;}
.ws174{word-spacing:10.887497px;}
.ws1b{word-spacing:11.142340px;}
.ws1a{word-spacing:11.486652px;}
.ws172{word-spacing:11.519323px;}
.ws173{word-spacing:11.527691px;}
.wsc7{word-spacing:12.297599px;}
.ws11c{word-spacing:12.475710px;}
.ws139{word-spacing:12.494260px;}
.wsd5{word-spacing:12.507989px;}
.ws85{word-spacing:12.524128px;}
.wsa6{word-spacing:12.545647px;}
.ws1c3{word-spacing:12.551027px;}
.ws72{word-spacing:12.583305px;}
.ws86{word-spacing:12.594065px;}
.ws111{word-spacing:12.599445px;}
.ws13c{word-spacing:12.628157px;}
.ws84{word-spacing:12.647863px;}
.ws13e{word-spacing:12.682553px;}
.ws19{word-spacing:12.706093px;}
.ws23{word-spacing:12.712420px;}
.ws119{word-spacing:12.793117px;}
.ws24{word-spacing:12.857674px;}
.ws9b{word-spacing:12.959890px;}
.ws168{word-spacing:13.056726px;}
.ws15d{word-spacing:13.115904px;}
.ws169{word-spacing:13.121283px;}
.ws9a{word-spacing:13.132043px;}
.ws78{word-spacing:13.228879px;}
.ws4b{word-spacing:13.255778px;}
.wse9{word-spacing:13.277297px;}
.ws5a{word-spacing:13.460210px;}
.ws10e{word-spacing:13.476349px;}
.wsb7{word-spacing:13.589324px;}
.ws199{word-spacing:13.600084px;}
.ws16{word-spacing:13.629042px;}
.ws105{word-spacing:13.682596px;}
.ws13d{word-spacing:13.695148px;}
.wsb{word-spacing:13.703517px;}
.ws13a{word-spacing:13.711886px;}
.wsca{word-spacing:13.720254px;}
.ws176{word-spacing:13.762097px;}
.wsce{word-spacing:13.812308px;}
.ws7f{word-spacing:13.815275px;}
.ws13b{word-spacing:13.816493px;}
.ws63{word-spacing:13.833230px;}
.ws2{word-spacing:13.837414px;}
.ws0{word-spacing:13.837418px;}
.wsa{word-spacing:13.841598px;}
.ws69{word-spacing:13.854151px;}
.wsc8{word-spacing:13.858335px;}
.wscd{word-spacing:13.866704px;}
.wsc6{word-spacing:13.875072px;}
.ws103{word-spacing:13.900178px;}
.wsed{word-spacing:13.906731px;}
.wsc5{word-spacing:13.908547px;}
.ws64{word-spacing:13.933652px;}
.ws65{word-spacing:13.937837px;}
.wscc{word-spacing:13.942021px;}
.wsd9{word-spacing:13.965909px;}
.ws6a{word-spacing:13.983864px;}
.ws104{word-spacing:14.004785px;}
.ws13f{word-spacing:14.021522px;}
.ws102{word-spacing:14.034075px;}
.wsc9{word-spacing:14.042444px;}
.ws1{word-spacing:14.050812px;}
.ws1cc{word-spacing:14.068125px;}
.ws99{word-spacing:14.084264px;}
.ws188{word-spacing:14.089644px;}
.ws101{word-spacing:14.096839px;}
.ws9f{word-spacing:14.116543px;}
.wscf{word-spacing:14.130314px;}
.ws66{word-spacing:14.138682px;}
.ws1cb{word-spacing:14.143442px;}
.wsc{word-spacing:14.151235px;}
.ws35{word-spacing:14.154201px;}
.ws100{word-spacing:14.159604px;}
.wsac{word-spacing:14.175720px;}
.ws120{word-spacing:14.202619px;}
.ws126{word-spacing:14.207999px;}
.ws68{word-spacing:14.218183px;}
.ws67{word-spacing:14.243289px;}
.wsee{word-spacing:14.251037px;}
.wscb{word-spacing:14.255842px;}
.ws62{word-spacing:14.301869px;}
.ws4a{word-spacing:14.423190px;}
.wse0{word-spacing:14.503887px;}
.ws153{word-spacing:14.546925px;}
.ws114{word-spacing:14.589963px;}
.ws6d{word-spacing:14.673121px;}
.ws186{word-spacing:14.783635px;}
.ws6f{word-spacing:14.852444px;}
.ws6e{word-spacing:14.892792px;}
.wsd1{word-spacing:14.897275px;}
.ws1f{word-spacing:15.006293px;}
.ws6c{word-spacing:15.049700px;}
.ws1f2{word-spacing:15.165600px;}
.wsb9{word-spacing:15.181739px;}
.ws4c{word-spacing:15.214018px;}
.ws54{word-spacing:15.224777px;}
.ws127{word-spacing:15.267816px;}
.wsb8{word-spacing:15.332373px;}
.ws1f4{word-spacing:15.353892px;}
.ws1d{word-spacing:15.355401px;}
.ws1f3{word-spacing:15.380791px;}
.ws1e{word-spacing:15.465376px;}
.wsa0{word-spacing:15.515286px;}
.ws49{word-spacing:15.547564px;}
.ws1e4{word-spacing:15.612122px;}
.ws14e{word-spacing:15.655160px;}
.ws87{word-spacing:15.832693px;}
.ws88{word-spacing:15.854212px;}
.ws73{word-spacing:15.864971px;}
.wsdc{word-spacing:15.870351px;}
.ws7b{word-spacing:15.918769px;}
.ws121{word-spacing:15.951048px;}
.ws122{word-spacing:15.956427px;}
.wsda{word-spacing:16.026365px;}
.wsa5{word-spacing:16.182378px;}
.ws3c{word-spacing:16.193138px;}
.ws15e{word-spacing:16.246936px;}
.ws51{word-spacing:16.273835px;}
.ws18a{word-spacing:16.289974px;}
.ws1e3{word-spacing:16.295354px;}
.wsf8{word-spacing:16.349151px;}
.wsc4{word-spacing:16.386810px;}
.ws177{word-spacing:16.435228px;}
.ws129{word-spacing:16.467507px;}
.ws10{word-spacing:16.480133px;}
.ws141{word-spacing:16.515925px;}
.wse{word-spacing:16.557841px;}
.ws8a{word-spacing:16.585862px;}
.ws11a{word-spacing:16.628900px;}
.wsf{word-spacing:16.665437px;}
.wsfd{word-spacing:16.677318px;}
.ws181{word-spacing:16.876370px;}
.ws128{word-spacing:16.887129px;}
.ws11{word-spacing:16.946383px;}
.wsd7{word-spacing:16.967826px;}
.wsf2{word-spacing:17.226056px;}
.wsf3{word-spacing:17.263714px;}
.ws7e{word-spacing:17.312132px;}
.ws194{word-spacing:17.408968px;}
.wsc3{word-spacing:17.414348px;}
.ws7d{word-spacing:17.468146px;}
.ws19d{word-spacing:17.543463px;}
.ws92{word-spacing:17.608020px;}
.wse4{word-spacing:17.651058px;}
.wsd2{word-spacing:17.699476px;}
.ws52{word-spacing:17.710236px;}
.wseb{word-spacing:17.720995px;}
.ws145{word-spacing:17.737135px;}
.ws161{word-spacing:17.742514px;}
.ws10a{word-spacing:17.753274px;}
.wsff{word-spacing:17.758654px;}
.ws19b{word-spacing:17.764034px;}
.wse5{word-spacing:17.785553px;}
.wsb0{word-spacing:17.796312px;}
.ws148{word-spacing:17.807072px;}
.ws19c{word-spacing:17.812452px;}
.ws1b5{word-spacing:17.817831px;}
.wsc1{word-spacing:17.828591px;}
.ws5c{word-spacing:17.844730px;}
.ws1b4{word-spacing:17.850110px;}
.ws146{word-spacing:17.860870px;}
.ws15f{word-spacing:17.893148px;}
.wsae{word-spacing:17.898528px;}
.ws1a8{word-spacing:17.914667px;}
.ws1ee{word-spacing:17.936187px;}
.ws10c{word-spacing:17.941566px;}
.ws197{word-spacing:17.946946px;}
.ws16e{word-spacing:17.952326px;}
.ws5e{word-spacing:17.963085px;}
.ws1ac{word-spacing:17.973845px;}
.ws1a7{word-spacing:17.984605px;}
.ws187{word-spacing:17.989984px;}
.ws160{word-spacing:17.995364px;}
.ws147{word-spacing:18.022263px;}
.ws1f0{word-spacing:18.070681px;}
.ws1c2{word-spacing:18.076061px;}
.wse3{word-spacing:18.086820px;}
.wsaa{word-spacing:18.092200px;}
.ws1f1{word-spacing:18.102960px;}
.wsec{word-spacing:18.129859px;}
.ws1ab{word-spacing:18.178277px;}
.ws11e{word-spacing:18.189036px;}
.wse1{word-spacing:18.205176px;}
.wse2{word-spacing:18.237454px;}
.ws134{word-spacing:18.328910px;}
.ws16d{word-spacing:18.484924px;}
.wsa8{word-spacing:18.506443px;}
.wsb6{word-spacing:18.554861px;}
.ws1ae{word-spacing:18.646317px;}
.wsd8{word-spacing:18.667837px;}
.ws140{word-spacing:18.683976px;}
.wsa9{word-spacing:18.716255px;}
.ws7c{word-spacing:18.775432px;}
.ws8d{word-spacing:18.791572px;}
.ws48{word-spacing:18.883028px;}
.ws39{word-spacing:18.904547px;}
.ws170{word-spacing:18.915306px;}
.ws94{word-spacing:18.931446px;}
.ws93{word-spacing:19.012143px;}
.ws108{word-spacing:19.114358px;}
.ws149{word-spacing:19.205815px;}
.ws154{word-spacing:19.345689px;}
.ws3d{word-spacing:19.377968px;}
.ws1a3{word-spacing:19.399487px;}
.ws8e{word-spacing:19.426386px;}
.ws34{word-spacing:19.437145px;}
.ws33{word-spacing:19.490943px;}
.ws179{word-spacing:19.577019px;}
.ws9e{word-spacing:19.598539px;}
.ws1dd{word-spacing:19.770691px;}
.ws37{word-spacing:19.878287px;}
.ws14{word-spacing:19.923207px;}
.ws182{word-spacing:19.926705px;}
.ws47{word-spacing:19.937465px;}
.ws1de{word-spacing:19.958984px;}
.ws184{word-spacing:20.023541px;}
.ws124{word-spacing:20.077339px;}
.ws38{word-spacing:20.093478px;}
.ws1df{word-spacing:20.114997px;}
.ws183{word-spacing:20.190314px;}
.ws13{word-spacing:20.210130px;}
.ws15{word-spacing:20.228063px;}
.ws17f{word-spacing:20.432404px;}
.ws12b{word-spacing:20.448544px;}
.ws12e{word-spacing:20.491582px;}
.ws77{word-spacing:20.545380px;}
.wsa4{word-spacing:20.550760px;}
.wsf4{word-spacing:20.572279px;}
.ws53{word-spacing:20.599178px;}
.ws1dc{word-spacing:20.696014px;}
.ws198{word-spacing:20.706773px;}
.ws76{word-spacing:20.722913px;}
.ws41{word-spacing:20.755191px;}
.wsc2{word-spacing:20.760571px;}
.ws40{word-spacing:20.868167px;}
.wsa7{word-spacing:20.905825px;}
.ws189{word-spacing:20.927344px;}
.ws1bf{word-spacing:20.948863px;}
.ws116{word-spacing:20.991902px;}
.ws191{word-spacing:21.174814px;}
.ws1d4{word-spacing:21.223232px;}
.ws190{word-spacing:21.298549px;}
.ws9d{word-spacing:21.502981px;}
.wsbf{word-spacing:21.508360px;}
.ws1d3{word-spacing:21.551399px;}
.ws56{word-spacing:21.562158px;}
.ws14d{word-spacing:21.615956px;}
.ws97{word-spacing:21.675134px;}
.ws143{word-spacing:21.691273px;}
.ws96{word-spacing:21.707412px;}
.ws115{word-spacing:21.718172px;}
.wsa2{word-spacing:21.734311px;}
.ws55{word-spacing:21.777349px;}
.wsbd{word-spacing:21.784764px;}
.ws98{word-spacing:21.788109px;}
.ws144{word-spacing:21.841907px;}
.ws95{word-spacing:21.901084px;}
.wsab{word-spacing:21.906464px;}
.ws42{word-spacing:21.927983px;}
.ws1b3{word-spacing:21.938743px;}
.ws166{word-spacing:21.965642px;}
.wsaf{word-spacing:21.992541px;}
.ws44{word-spacing:22.003300px;}
.ws43{word-spacing:22.046340px;}
.ws12c{word-spacing:22.073237px;}
.ws1d6{word-spacing:22.105516px;}
.ws1d7{word-spacing:22.159314px;}
.ws193{word-spacing:22.164694px;}
.ws165{word-spacing:22.196972px;}
.ws1b7{word-spacing:22.272289px;}
.ws164{word-spacing:22.347606px;}
.wsd0{word-spacing:22.514028px;}
.ws1b8{word-spacing:22.525139px;}
.ws1af{word-spacing:22.600456px;}
.ws11b{word-spacing:22.670393px;}
.ws3a{word-spacing:22.745710px;}
.ws185{word-spacing:22.799508px;}
.ws1f6{word-spacing:22.971661px;}
.ws1f5{word-spacing:22.987800px;}
.ws61{word-spacing:23.052357px;}
.ws46{word-spacing:23.240650px;}
.ws15b{word-spacing:23.654893px;}
.ws91{word-spacing:23.676412px;}
.ws106{word-spacing:23.692551px;}
.ws75{word-spacing:23.767868px;}
.ws14b{word-spacing:23.773248px;}
.ws8c{word-spacing:23.821666px;}
.ws18b{word-spacing:23.832425px;}
.ws5d{word-spacing:23.836078px;}
.wsba{word-spacing:23.848565px;}
.ws1b6{word-spacing:23.850425px;}
.ws1a4{word-spacing:23.857598px;}
.wsbb{word-spacing:23.859324px;}
.wse6{word-spacing:23.870084px;}
.wse7{word-spacing:23.907742px;}
.ws45{word-spacing:24.063756px;}
.ws8b{word-spacing:24.106794px;}
.ws10b{word-spacing:24.108655px;}
.ws1c9{word-spacing:24.268188px;}
.ws118{word-spacing:24.359644px;}
.wsb3{word-spacing:24.370403px;}
.ws1ca{word-spacing:24.397302px;}
.ws10f{word-spacing:24.413442px;}
.wsad{word-spacing:24.558696px;}
.wsfe{word-spacing:24.736228px;}
.ws21{word-spacing:24.746988px;}
.ws20{word-spacing:24.784646px;}
.ws132{word-spacing:25.037496px;}
.ws60{word-spacing:25.042876px;}
.ws107{word-spacing:25.075155px;}
.ws16f{word-spacing:25.091294px;}
.ws17e{word-spacing:25.134332px;}
.ws1e5{word-spacing:25.182750px;}
.ws196{word-spacing:25.301105px;}
.ws19f{word-spacing:25.354903px;}
.ws3b{word-spacing:25.392562px;}
.ws1e6{word-spacing:25.408701px;}
.ws109{word-spacing:25.473258px;}
.ws2d{word-spacing:25.543195px;}
.ws1e7{word-spacing:25.559335px;}
.ws195{word-spacing:25.666930px;}
.ws1ea{word-spacing:25.860602px;}
.ws2a{word-spacing:25.871362px;}
.ws2c{word-spacing:25.898261px;}
.ws1eb{word-spacing:25.925160px;}
.ws22{word-spacing:26.038135px;}
.ws1cf{word-spacing:26.199529px;}
.ws14a{word-spacing:26.301744px;}
.ws1d0{word-spacing:26.317884px;}
.wsa1{word-spacing:26.371682px;}
.ws4f{word-spacing:26.452378px;}
.ws17{word-spacing:26.512073px;}
.ws1d5{word-spacing:26.543835px;}
.ws1d1{word-spacing:26.581493px;}
.ws9c{word-spacing:26.651430px;}
.ws1ce{word-spacing:26.818203px;}
.ws1ec{word-spacing:26.995736px;}
.ws135{word-spacing:27.060293px;}
.ws1c1{word-spacing:27.076433px;}
.ws18e{word-spacing:27.081813px;}
.wsde{word-spacing:27.092572px;}
.wsb4{word-spacing:27.221687px;}
.wsf0{word-spacing:27.243206px;}
.wsdf{word-spacing:27.291624px;}
.ws15a{word-spacing:27.334662px;}
.ws5f{word-spacing:27.372321px;}
.wsf6{word-spacing:27.485296px;}
.ws28{word-spacing:27.512195px;}
.ws131{word-spacing:27.560613px;}
.ws3f{word-spacing:27.662829px;}
.ws1ef{word-spacing:27.673588px;}
.ws27{word-spacing:27.684348px;}
.ws29{word-spacing:27.705867px;}
.ws180{word-spacing:27.748905px;}
.ws16b{word-spacing:27.808083px;}
.wsef{word-spacing:27.840361px;}
.wsf1{word-spacing:28.001755px;}
.ws7a{word-spacing:28.071692px;}
.ws17a{word-spacing:28.195427px;}
.ws3e{word-spacing:28.319162px;}
.ws1e9{word-spacing:28.362200px;}
.ws155{word-spacing:28.442897px;}
.ws90{word-spacing:28.582771px;}
.ws4{word-spacing:28.620217px;}
.ws6{word-spacing:28.689557px;}
.ws9{word-spacing:28.724228px;}
.ws7{word-spacing:28.767565px;}
.ws5{word-spacing:28.862908px;}
.wsd3{word-spacing:28.873279px;}
.ws192{word-spacing:28.905558px;}
.ws8{word-spacing:29.027602px;}
.wsd4{word-spacing:29.099230px;}
.ws12a{word-spacing:29.217585px;}
.ws18{word-spacing:29.261792px;}
.wsb2{word-spacing:29.373599px;}
.ws1b1{word-spacing:29.459675px;}
.wsb1{word-spacing:29.540372px;}
.wsfb{word-spacing:30.051451px;}
.ws1a1{word-spacing:30.175186px;}
.ws1a2{word-spacing:30.212844px;}
.ws12d{word-spacing:30.632467px;}
.ws1e1{word-spacing:30.745443px;}
.ws1e2{word-spacing:30.815380px;}
.ws110{word-spacing:30.836899px;}
.ws79{word-spacing:30.917596px;}
.wsfc{word-spacing:30.928355px;}
.ws14f{word-spacing:31.143546px;}
.ws50{word-spacing:31.175825px;}
.ws158{word-spacing:31.396396px;}
.ws167{word-spacing:31.482473px;}
.ws163{word-spacing:31.493232px;}
.ws12f{word-spacing:31.514751px;}
.ws59{word-spacing:31.590068px;}
.ws31{word-spacing:31.697664px;}
.ws57{word-spacing:31.713803px;}
.ws18f{word-spacing:31.719183px;}
.ws58{word-spacing:31.751448px;}
.ws117{word-spacing:31.821399px;}
.ws178{word-spacing:31.842918px;}
.ws18c{word-spacing:31.982792px;}
.ws17d{word-spacing:32.031210px;}
.ws2f{word-spacing:32.063489px;}
.ws19a{word-spacing:32.165705px;}
.ws36{word-spacing:32.181844px;}
.ws30{word-spacing:32.192604px;}
.ws10d{word-spacing:32.278680px;}
.ws2e{word-spacing:32.461588px;}
.ws130{word-spacing:32.617606px;}
.ws152{word-spacing:32.644505px;}
.ws151{word-spacing:32.660644px;}
.ws11f{word-spacing:33.182483px;}
.ws1ba{word-spacing:33.193243px;}
.wse8{word-spacing:33.386915px;}
.ws8f{word-spacing:33.612865px;}
.ws16c{word-spacing:33.682803px;}
.wsb5{word-spacing:33.811917px;}
.ws1ed{word-spacing:34.118565px;}
.ws1bb{word-spacing:34.145464px;}
.ws1bc{word-spacing:34.210021px;}
.ws133{word-spacing:34.226160px;}
.wsf9{word-spacing:34.301477px;}
.ws81{word-spacing:34.317617px;}
.ws82{word-spacing:34.398313px;}
.ws1bd{word-spacing:34.403693px;}
.ws83{word-spacing:34.457491px;}
.ws80{word-spacing:34.624264px;}
.ws74{word-spacing:34.871734px;}
.ws112{word-spacing:34.882494px;}
.ws142{word-spacing:35.189141px;}
.wsf7{word-spacing:35.205280px;}
.ws123{word-spacing:35.296737px;}
.ws25{word-spacing:35.339775px;}
.ws11d{word-spacing:35.581865px;}
.ws1e0{word-spacing:35.624903px;}
.ws125{word-spacing:35.678701px;}
.ws1da{word-spacing:35.684081px;}
.ws1c6{word-spacing:35.845474px;}
.ws162{word-spacing:36.017627px;}
.ws1db{word-spacing:36.103704px;}
.ws1cd{word-spacing:36.442630px;}
.ws4e{word-spacing:36.743897px;}
.ws5b{word-spacing:37.378711px;}
.ws16a{word-spacing:37.717638px;}
.ws157{word-spacing:37.787575px;}
.ws156{word-spacing:37.965107px;}
.ws19e{word-spacing:38.293274px;}
.ws14c{word-spacing:38.347072px;}
.wsea{word-spacing:38.357831px;}
.wsa3{word-spacing:38.680618px;}
.ws17c{word-spacing:39.008785px;}
.ws17b{word-spacing:39.154039px;}
.ws26{word-spacing:39.336951px;}
.wsf5{word-spacing:40.359110px;}
.ws150{word-spacing:40.439806px;}
.ws159{word-spacing:40.617339px;}
.ws18d{word-spacing:42.387287px;}
.wsfa{word-spacing:42.763871px;}
.ws113{word-spacing:43.457863px;}
.ws15c{word-spacing:43.726852px;}
.ws1a0{word-spacing:43.936663px;}
.ws4d{word-spacing:44.065778px;}
.ws32{word-spacing:45.098696px;}
.ws1b0{word-spacing:46.427501px;}
.ws1b2{word-spacing:53.835458px;}
.ws1a9{word-spacing:72.175128px;}
.ws1a6{word-spacing:315.190551px;}
.ws1a5{word-spacing:338.108413px;}
.ws1aa{word-spacing:389.598288px;}
._32{margin-left:-38.239476px;}
._31{margin-left:-37.029026px;}
._33{margin-left:-35.866993px;}
._2e{margin-left:-34.281720px;}
._30{margin-left:-27.216307px;}
._34{margin-left:-25.957439px;}
._17{margin-left:-23.714070px;}
._18{margin-left:-21.061111px;}
._2f{margin-left:-18.199796px;}
._1b{margin-left:-16.203897px;}
._1a{margin-left:-12.481090px;}
._35{margin-left:-11.109246px;}
._2{margin-left:-1.664178px;}
._0{width:1.029300px;}
._1f{width:9.113362px;}
._1e{width:11.126001px;}
._16{width:12.142163px;}
._5{width:13.844237px;}
._3{width:14.862829px;}
._6{width:16.278309px;}
._c{width:17.575741px;}
._10{width:18.888408px;}
._d{width:20.825128px;}
._14{width:22.784818px;}
._20{width:23.988439px;}
._4{width:25.029616px;}
._9{width:26.909660px;}
._12{width:28.561252px;}
._1{width:29.807661px;}
._2c{width:30.917596px;}
._f{width:32.359377px;}
._b{width:33.542928px;}
._15{width:34.774898px;}
._7{width:36.614783px;}
._e{width:37.798334px;}
._11{width:38.820492px;}
._8{width:40.504364px;}
._1c{width:41.800891px;}
._21{width:43.511661px;}
._1d{width:44.571477px;}
._a{width:46.217690px;}
._2b{width:47.718649px;}
._2d{width:55.002871px;}
._26{width:290.066978px;}
._28{width:293.402442px;}
._29{width:329.231776px;}
._2a{width:334.772950px;}
._27{width:354.409147px;}
._25{width:361.133872px;}
._24{width:365.599089px;}
._23{width:399.766072px;}
._22{width:400.895826px;}
._13{width:1185.689229px;}
._19{width:2559.758502px;}
.fc3{color:rgb(167,169,172);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.891000px;}
.fs3{font-size:33.072000px;}
.fs7{font-size:35.860800px;}
.fsf{font-size:36.000000px;}
.fs0{font-size:41.842800px;}
.fs10{font-size:43.036800px;}
.fsc{font-size:44.830800px;}
.fs4{font-size:47.821200px;}
.fsd{font-size:48.000000px;}
.fs9{font-size:50.210400px;}
.fs6{font-size:53.797800px;}
.fse{font-size:54.000000px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:71.730600px;}
.fs1{font-size:86.675400px;}
.fsb{font-size:89.664000px;}
.fsa{font-size:114.769200px;}
.y0{bottom:0.000000px;}
.y6c{bottom:3.000000px;}
.y69{bottom:32.059800px;}
.y1e5{bottom:84.347802px;}
.y131{bottom:84.355839px;}
.y66{bottom:84.358140px;}
.y1ac{bottom:84.358878px;}
.y56{bottom:84.359130px;}
.ybc{bottom:84.359958px;}
.yf8{bottom:85.208153px;}
.y177{bottom:85.634619px;}
.y74{bottom:94.989193px;}
.y65{bottom:99.325305px;}
.yf7{bottom:100.175323px;}
.y176{bottom:100.601789px;}
.y1e4{bottom:100.930974px;}
.y55{bottom:101.536770px;}
.ybb{bottom:101.537595px;}
.y130{bottom:101.789016px;}
.y1ab{bottom:102.897600px;}
.y73{bottom:112.422370px;}
.y63{bottom:112.762200px;}
.y64{bottom:114.207750px;}
.yf6{bottom:115.057761px;}
.y175{bottom:115.483180px;}
.y1e3{bottom:118.023880px;}
.y54{bottom:118.714410px;}
.yba{bottom:118.715233px;}
.y12f{bottom:119.222193px;}
.y13a{bottom:126.367581px;}
.y62{bottom:129.174585px;}
.y72{bottom:129.940279px;}
.yf5{bottom:130.024930px;}
.y174{bottom:130.450350px;}
.y1aa{bottom:131.130600px;}
.y1e2{bottom:134.607052px;}
.y12e{bottom:136.570638px;}
.yb9{bottom:136.573412px;}
.y139{bottom:141.250019px;}
.y53{bottom:142.355850px;}
.y60{bottom:144.141750px;}
.y61{bottom:144.481725px;}
.yf4{bottom:144.992100px;}
.y71{bottom:147.458187px;}
.y5f{bottom:148.818900px;}
.y1e1{bottom:151.190224px;}
.yb8{bottom:153.751412px;}
.y12d{bottom:154.003815px;}
.y138{bottom:156.217188px;}
.y5e{bottom:159.109155px;}
.y70{bottom:164.891364px;}
.y1e0{bottom:168.198398px;}
.y52{bottom:170.503800px;}
.yb7{bottom:170.929050px;}
.yb5{bottom:170.929412px;}
.y137{bottom:171.184358px;}
.y12c{bottom:171.436992px;}
.y5d{bottom:173.990550px;}
.yb6{bottom:176.881800px;}
.y5c{bottom:178.667700px;}
.y6f{bottom:182.409273px;}
.y1de{bottom:184.781570px;}
.y1df{bottom:185.206572px;}
.y136{bottom:186.151527px;}
.yb4{bottom:188.107050px;}
.yb2{bottom:188.113653px;}
.y12b{bottom:188.870170px;}
.y5b{bottom:188.956905px;}
.y1a9{bottom:189.967504px;}
.yb3{bottom:194.059800px;}
.y6e{bottom:199.842450px;}
.y135{bottom:201.032919px;}
.y1dd{bottom:201.874476px;}
.y5a{bottom:203.924085px;}
.yb1{bottom:205.291291px;}
.y12a{bottom:206.218615px;}
.y1a8{bottom:208.081223px;}
.y134{bottom:216.000089px;}
.y1dc{bottom:218.457648px;}
.y58{bottom:218.891250px;}
.y59{bottom:219.146490px;}
.yb0{bottom:222.468928px;}
.y57{bottom:223.483350px;}
.y129{bottom:223.651792px;}
.y1a7{bottom:226.194942px;}
.y51{bottom:229.353840px;}
.y133{bottom:230.967258px;}
.y1db{bottom:235.040820px;}
.yaf{bottom:239.731298px;}
.y128{bottom:241.084969px;}
.y1a6{bottom:244.308662px;}
.y132{bottom:245.848650px;}
.y50{bottom:247.212015px;}
.y1da{bottom:252.048994px;}
.yc4{bottom:255.031772px;}
.yae{bottom:256.908935px;}
.y127{bottom:258.518146px;}
.y1a5{bottom:262.422381px;}
.y32{bottom:263.367330px;}
.y4f{bottom:265.154940px;}
.y1d9{bottom:268.632166px;}
.y33{bottom:269.404650px;}
.yc3{bottom:269.998942px;}
.yad{bottom:274.086573px;}
.y126{bottom:275.866592px;}
.y1a4{bottom:280.536100px;}
.y31{bottom:281.650515px;}
.y4e{bottom:283.097850px;}
.yc2{bottom:284.966112px;}
.y1d8{bottom:285.215338px;}
.yac{bottom:291.264210px;}
.y125{bottom:293.299769px;}
.y1a3{bottom:298.649819px;}
.yc1{bottom:299.847503px;}
.y30{bottom:299.848965px;}
.y4d{bottom:301.040760px;}
.y1d7{bottom:302.308244px;}
.yab{bottom:308.441848px;}
.y124{bottom:310.732946px;}
.yc0{bottom:314.814673px;}
.y1a2{bottom:316.763539px;}
.y2f{bottom:318.047415px;}
.y1d6{bottom:318.891416px;}
.y4c{bottom:318.983670px;}
.yaa{bottom:326.300027px;}
.y123{bottom:328.166123px;}
.ybf{bottom:329.781843px;}
.y1a1{bottom:334.877258px;}
.y1d5{bottom:335.899590px;}
.y2e{bottom:336.330600px;}
.y4b{bottom:336.926580px;}
.ya9{bottom:343.477665px;}
.ybe{bottom:344.664280px;}
.y122{bottom:345.514569px;}
.y1d4{bottom:352.482762px;}
.y1a0{bottom:352.990977px;}
.y2d{bottom:354.529050px;}
.y2b{bottom:354.529215px;}
.y4a{bottom:354.869490px;}
.ybd{bottom:359.631450px;}
.y2c{bottom:360.481800px;}
.ya8{bottom:360.655303px;}
.y121{bottom:362.947746px;}
.y1d1{bottom:369.065934px;}
.y1d2{bottom:369.235397px;}
.y1d3{bottom:369.490936px;}
.y19f{bottom:371.104696px;}
.y2a{bottom:372.812400px;}
.y48{bottom:372.816960px;}
.ya7{bottom:377.832940px;}
.y49{bottom:378.765300px;}
.y120{bottom:380.380923px;}
.y1cf{bottom:385.733837px;}
.y1d0{bottom:386.158840px;}
.y19e{bottom:389.218416px;}
.y47{bottom:390.675150px;}
.y29{bottom:391.010850px;}
.ya6{bottom:395.010578px;}
.y11d{bottom:397.813373px;}
.y11f{bottom:397.814100px;}
.y1ce{bottom:402.742012px;}
.y11e{bottom:403.766850px;}
.y19d{bottom:407.332135px;}
.y46{bottom:408.618060px;}
.y28{bottom:409.209300px;}
.y26{bottom:409.209885px;}
.ya5{bottom:412.274292px;}
.y11c{bottom:415.246550px;}
.y27{bottom:415.247100px;}
.y1cd{bottom:419.325183px;}
.y19c{bottom:425.445854px;}
.y45{bottom:426.560970px;}
.y25{bottom:427.493055px;}
.ya4{bottom:429.451929px;}
.y11b{bottom:432.594996px;}
.y1cc{bottom:436.333358px;}
.y19b{bottom:443.559573px;}
.y44{bottom:444.503880px;}
.y24{bottom:445.691505px;}
.ya3{bottom:446.629567px;}
.y11a{bottom:450.028173px;}
.y1cb{bottom:452.916530px;}
.y19a{bottom:461.673293px;}
.y43{bottom:462.446790px;}
.ya2{bottom:463.807204px;}
.y23{bottom:464.230230px;}
.y6a{bottom:464.655000px;}
.y117{bottom:467.456827px;}
.y119{bottom:467.461350px;}
.y1ca{bottom:470.009436px;}
.y118{bottom:473.413950px;}
.y199{bottom:479.787012px;}
.y42{bottom:480.389700px;}
.ya0{bottom:480.984842px;}
.ya1{bottom:481.409844px;}
.y22{bottom:482.428680px;}
.y1c9{bottom:486.592608px;}
.y116{bottom:491.183002px;}
.y198{bottom:497.816000px;}
.y9f{bottom:498.162479px;}
.y41{bottom:498.332610px;}
.y21{bottom:500.711865px;}
.y1c8{bottom:503.600782px;}
.y115{bottom:509.381452px;}
.y9e{bottom:515.426193px;}
.y197{bottom:515.929719px;}
.y40{bottom:516.275520px;}
.y20{bottom:518.910315px;}
.y1c7{bottom:520.183954px;}
.y9d{bottom:533.199642px;}
.y196{bottom:534.043438px;}
.y3f{bottom:534.133710px;}
.y114{bottom:536.849264px;}
.y1f{bottom:537.193500px;}
.y1c6{bottom:537.276860px;}
.y9c{bottom:550.377279px;}
.y3e{bottom:552.076620px;}
.y195{bottom:552.157157px;}
.y1c5{bottom:553.860032px;}
.y113{bottom:554.282441px;}
.y1e{bottom:555.391950px;}
.y1c{bottom:555.392115px;}
.y1d{bottom:561.344700px;}
.y9b{bottom:567.554917px;}
.y194{bottom:570.270877px;}
.y1c4{bottom:570.443204px;}
.y3d{bottom:570.530610px;}
.y112{bottom:571.715618px;}
.y1b{bottom:573.590565px;}
.y9a{bottom:584.732554px;}
.y1c3{bottom:587.451378px;}
.y193{bottom:588.384596px;}
.y3c{bottom:588.473520px;}
.y111{bottom:589.064064px;}
.y1a{bottom:591.873750px;}
.y99{bottom:601.996268px;}
.y1c2{bottom:604.034550px;}
.y3b{bottom:606.416430px;}
.y110{bottom:606.497241px;}
.y192{bottom:606.498315px;}
.y19{bottom:610.072200px;}
.y17{bottom:610.072515px;}
.y18{bottom:616.024950px;}
.y98{bottom:619.173906px;}
.y10f{bottom:623.930418px;}
.y3a{bottom:624.359340px;}
.y191{bottom:624.612034px;}
.y16{bottom:628.355700px;}
.y157{bottom:629.631441px;}
.y173{bottom:629.632181px;}
.y1c1{bottom:630.821850px;}
.y97{bottom:636.351543px;}
.y10e{bottom:641.363595px;}
.y39{bottom:642.302250px;}
.y37{bottom:642.303105px;}
.y190{bottom:642.725754px;}
.y15{bottom:646.554150px;}
.y156{bottom:647.149350px;}
.y154{bottom:647.149870px;}
.y172{bottom:647.150090px;}
.y38{bottom:648.255000px;}
.y155{bottom:653.102100px;}
.y96{bottom:653.529181px;}
.y10d{bottom:658.712041px;}
.y36{bottom:660.161280px;}
.y18f{bottom:660.839473px;}
.y153{bottom:664.667779px;}
.y171{bottom:664.667999px;}
.y14{bottom:664.752600px;}
.y95{bottom:670.706818px;}
.y10c{bottom:676.145218px;}
.y35{bottom:678.104190px;}
.y18e{bottom:678.953192px;}
.y152{bottom:682.100956px;}
.y170{bottom:682.101176px;}
.y94{bottom:687.884456px;}
.y1c0{bottom:689.666231px;}
.y13{bottom:692.985600px;}
.y10b{bottom:693.578395px;}
.y34{bottom:696.047100px;}
.y18d{bottom:697.066911px;}
.y151{bottom:699.618864px;}
.y16f{bottom:699.619084px;}
.y93{bottom:705.146825px;}
.y1bf{bottom:707.014677px;}
.y10a{bottom:711.011572px;}
.y18c{bottom:715.180631px;}
.y150{bottom:717.052041px;}
.y16e{bottom:717.052261px;}
.y92{bottom:722.324462px;}
.y1be{bottom:724.363122px;}
.y109{bottom:728.360017px;}
.y189{bottom:733.293242px;}
.y18b{bottom:733.294350px;}
.y12{bottom:734.397795px;}
.y7{bottom:734.398785px;}
.y14f{bottom:734.569950px;}
.y14d{bottom:734.570056px;}
.y16d{bottom:734.570170px;}
.y18a{bottom:739.247100px;}
.y8f{bottom:739.502025px;}
.y91{bottom:739.502100px;}
.y14e{bottom:740.522550px;}
.y1bd{bottom:741.711568px;}
.y90{bottom:745.454850px;}
.y108{bottom:745.793195px;}
.y188{bottom:751.406961px;}
.y14c{bottom:752.087964px;}
.y16c{bottom:752.088079px;}
.y11{bottom:752.341515px;}
.y6{bottom:758.295210px;}
.y1bc{bottom:759.060013px;}
.y107{bottom:763.226372px;}
.y8e{bottom:763.228200px;}
.y187{bottom:769.520681px;}
.y14b{bottom:769.521141px;}
.y16b{bottom:769.521256px;}
.y10{bottom:770.285220px;}
.y1bb{bottom:776.408459px;}
.y106{bottom:780.659549px;}
.y5{bottom:782.276355px;}
.yf3{bottom:785.849354px;}
.y14a{bottom:787.039050px;}
.y16a{bottom:787.039164px;}
.ydf{bottom:787.039456px;}
.y148{bottom:787.040150px;}
.y186{bottom:787.634400px;}
.yf{bottom:788.228925px;}
.y8c{bottom:790.781648px;}
.y149{bottom:792.991950px;}
.y1ba{bottom:793.756904px;}
.y8d{bottom:796.733700px;}
.y4{bottom:797.158800px;}
.y105{bottom:798.092726px;}
.yf2{bottom:803.282531px;}
.y169{bottom:804.472341px;}
.yde{bottom:804.472633px;}
.y147{bottom:804.473328px;}
.ye{bottom:806.172645px;}
.y8b{bottom:807.959286px;}
.y1b9{bottom:811.105350px;}
.y104{bottom:815.441171px;}
.y185{bottom:815.867400px;}
.yf1{bottom:820.800440px;}
.y168{bottom:821.990250px;}
.ydd{bottom:821.990541px;}
.y146{bottom:821.991236px;}
.y166{bottom:821.993545px;}
.yd{bottom:824.116350px;}
.y8a{bottom:825.136923px;}
.y167{bottom:827.943000px;}
.y103{bottom:832.874348px;}
.yf0{bottom:838.318349px;}
.y1b8{bottom:838.572900px;}
.ydc{bottom:839.508450px;}
.yda{bottom:839.508661px;}
.y145{bottom:839.509145px;}
.y165{bottom:839.511454px;}
.y89{bottom:842.314561px;}
.ydb{bottom:845.461200px;}
.y102{bottom:850.307526px;}
.yef{bottom:855.751526px;}
.yd9{bottom:856.941838px;}
.y144{bottom:856.942322px;}
.y164{bottom:856.944631px;}
.y88{bottom:859.578275px;}
.yc{bottom:859.917900px;}
.ya{bottom:859.918065px;}
.yb{bottom:865.445400px;}
.y101{bottom:867.740703px;}
.yee{bottom:873.269434px;}
.y143{bottom:874.460230px;}
.y163{bottom:874.462539px;}
.y183{bottom:874.710390px;}
.y87{bottom:876.755912px;}
.y8{bottom:877.861200px;}
.y184{bottom:880.667400px;}
.yd8{bottom:880.752744px;}
.y9{bottom:883.388700px;}
.y100{bottom:885.089148px;}
.y1f4{bottom:886.876399px;}
.y201{bottom:886.877744px;}
.yed{bottom:890.702611px;}
.y142{bottom:891.893408px;}
.y162{bottom:891.895716px;}
.y182{bottom:892.058836px;}
.y86{bottom:893.933550px;}
.y84{bottom:893.933912px;}
.y1{bottom:897.335100px;}
.y1b7{bottom:897.422514px;}
.y85{bottom:899.886450px;}
.yff{bottom:902.522325px;}
.y1f3{bottom:903.288763px;}
.y200{bottom:903.290108px;}
.yec{bottom:908.220520px;}
.yd7{bottom:908.220556px;}
.y181{bottom:909.407281px;}
.y141{bottom:909.411316px;}
.y83{bottom:911.111550px;}
.y81{bottom:911.112806px;}
.y3{bottom:912.217545px;}
.y161{bottom:915.706623px;}
.y1b6{bottom:915.961236px;}
.y82{bottom:917.064300px;}
.y1f2{bottom:919.701127px;}
.y1ff{bottom:919.702472px;}
.yeb{bottom:925.738429px;}
.yd6{bottom:925.738464px;}
.yfe{bottom:926.248500px;}
.y180{bottom:926.840458px;}
.y140{bottom:926.929225px;}
.y80{bottom:928.290443px;}
.y1b5{bottom:934.499958px;}
.y1f1{bottom:936.198223px;}
.y1fe{bottom:936.199567px;}
.y2{bottom:942.150900px;}
.yea{bottom:943.171606px;}
.yd5{bottom:943.171641px;}
.y160{bottom:943.174434px;}
.y17f{bottom:944.188904px;}
.y13f{bottom:944.362402px;}
.y7f{bottom:945.552812px;}
.y1f0{bottom:952.610586px;}
.y1fd{bottom:952.611931px;}
.y1b4{bottom:953.038679px;}
.yfd{bottom:954.566700px;}
.yd2{bottom:960.689373px;}
.ye9{bottom:960.689514px;}
.yd4{bottom:960.689550px;}
.y15f{bottom:960.692343px;}
.y17e{bottom:961.537350px;}
.y7e{bottom:962.730450px;}
.y7c{bottom:962.735602px;}
.yd3{bottom:966.642300px;}
.y13e{bottom:968.173308px;}
.y7d{bottom:968.683200px;}
.y1ee{bottom:969.022950px;}
.y1fc{bottom:969.024295px;}
.y1ef{bottom:969.447953px;}
.y1b3{bottom:971.577401px;}
.yd1{bottom:978.122550px;}
.ye8{bottom:978.122691px;}
.ycf{bottom:978.123097px;}
.y15e{bottom:978.125520px;}
.y17d{bottom:978.885795px;}
.y7b{bottom:979.913240px;}
.yd0{bottom:984.160350px;}
.y1ec{bottom:985.521391px;}
.y1fb{bottom:985.522735px;}
.y1ed{bottom:985.606122px;}
.y1b2{bottom:990.116123px;}
.ye7{bottom:995.640600px;}
.yce{bottom:995.641006px;}
.y13d{bottom:995.641120px;}
.ye5{bottom:995.643115px;}
.y15d{bottom:995.643429px;}
.y17c{bottom:996.234241px;}
.y7a{bottom:997.090877px;}
.y6d{bottom:999.795000px;}
.ye6{bottom:1001.593350px;}
.y1eb{bottom:1001.933754px;}
.y1fa{bottom:1001.935099px;}
.y68{bottom:1003.889400px;}
.y1b1{bottom:1008.229842px;}
.ycd{bottom:1013.158914px;}
.y13c{bottom:1013.159029px;}
.ye4{bottom:1013.161024px;}
.y15c{bottom:1013.161337px;}
.yfc{bottom:1013.413223px;}
.y17b{bottom:1013.582686px;}
.y79{bottom:1014.268515px;}
.y6b{bottom:1014.795000px;}
.y1ea{bottom:1018.346118px;}
.y1f9{bottom:1018.347463px;}
.y1b0{bottom:1026.768564px;}
.ycc{bottom:1030.592091px;}
.y13b{bottom:1030.592206px;}
.ye3{bottom:1030.594201px;}
.y15b{bottom:1030.594514px;}
.yfb{bottom:1030.846400px;}
.y17a{bottom:1031.015863px;}
.y78{bottom:1031.446153px;}
.y1e9{bottom:1034.758482px;}
.y1f8{bottom:1034.759827px;}
.y1af{bottom:1045.222555px;}
.ycb{bottom:1048.110000px;}
.yc9{bottom:1048.110114px;}
.ye2{bottom:1048.112109px;}
.y15a{bottom:1048.112423px;}
.yfa{bottom:1048.279577px;}
.y179{bottom:1048.364309px;}
.y77{bottom:1048.709867px;}
.y1e8{bottom:1051.256922px;}
.y1f7{bottom:1051.258267px;}
.yca{bottom:1054.062750px;}
.y1ae{bottom:1063.761277px;}
.y67{bottom:1064.692650px;}
.yc8{bottom:1065.543291px;}
.ye1{bottom:1065.545286px;}
.y159{bottom:1065.545600px;}
.yf9{bottom:1065.628023px;}
.y178{bottom:1065.712754px;}
.y76{bottom:1065.887504px;}
.y1e7{bottom:1067.669286px;}
.y1f6{bottom:1067.670631px;}
.y1ad{bottom:1082.299998px;}
.yc7{bottom:1083.061200px;}
.ye0{bottom:1083.063195px;}
.y158{bottom:1083.063509px;}
.y75{bottom:1083.065142px;}
.y1e6{bottom:1084.081650px;}
.y1f5{bottom:1084.082995px;}
.yc5{bottom:1119.968250px;}
.yc6{bottom:1142.295000px;}
.h19{height:12.000000px;}
.h17{height:16.500000px;}
.he{height:24.320952px;}
.h7{height:30.988464px;}
.hc{height:31.987834px;}
.h1a{height:33.876000px;}
.h10{height:36.352330px;}
.hf{height:36.486922px;}
.h11{height:37.323778px;}
.h4{height:39.206704px;}
.h1b{height:39.248546px;}
.h2{height:39.290389px;}
.h5{height:39.332232px;}
.h14{height:44.750096px;}
.h1c{height:44.750105px;}
.h8{height:44.808464px;}
.h9{height:44.904107px;}
.hd{height:47.073075px;}
.h16{height:47.109375px;}
.hb{height:47.987638px;}
.h1d{height:50.569932px;}
.h18{height:50.814000px;}
.h6{height:56.009737px;}
.ha{height:67.283303px;}
.h3{height:81.474876px;}
.h13{height:84.284160px;}
.h12{height:96.635666px;}
.h15{height:479.985000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w2{width:15.000000px;}
.w5{width:52.620000px;}
.w4{width:55.605000px;}
.w6{width:82.860000px;}
.w3{width:124.290000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:4.500000px;}
.x24{left:12.000000px;}
.x1{left:63.524400px;}
.x1e{left:67.606200px;}
.x21{left:70.412550px;}
.x22{left:75.429900px;}
.x44{left:76.960650px;}
.x15{left:81.465825px;}
.x59{left:84.274005px;}
.x58{left:85.379550px;}
.x18{left:92.522850px;}
.x20{left:110.891310px;}
.x5b{left:117.440349px;}
.x3b{left:122.796750px;}
.x3c{left:140.400000px;}
.x1f{left:158.513865px;}
.x41{left:175.436100px;}
.x45{left:187.086600px;}
.x42{left:198.822000px;}
.x39{left:206.645550px;}
.x3f{left:212.088150px;}
.x3a{left:223.483350px;}
.x40{left:232.667700px;}
.x16{left:234.708600px;}
.x17{left:254.947950px;}
.x2{left:257.754300px;}
.x3d{left:271.020450px;}
.x3e{left:288.708600px;}
.x49{left:300.699150px;}
.x13{left:311.414100px;}
.x14{left:323.574750px;}
.x4a{left:334.034550px;}
.x3{left:343.388850px;}
.x4{left:352.573200px;}
.xd{left:362.437650px;}
.x11{left:378.255000px;}
.x4d{left:380.380950px;}
.x48{left:386.418750px;}
.x5a{left:389.226835px;}
.x12{left:391.521150px;}
.x4e{left:397.473900px;}
.x46{left:400.960500px;}
.x4f{left:411.590400px;}
.x47{left:419.244000px;}
.x5{left:446.201550px;}
.xe{left:447.817200px;}
.x6{left:455.385750px;}
.xf{left:457.001400px;}
.x1a{left:458.022390px;}
.x51{left:464.740050px;}
.x30{left:471.456810px;}
.x19{left:475.965300px;}
.x52{left:478.516322px;}
.x57{left:479.958103px;}
.x29{left:482.258100px;}
.x2a{left:495.949500px;}
.x53{left:537.789393px;}
.x54{left:540.767101px;}
.x7{left:550.204650px;}
.x4b{left:553.095900px;}
.x8{left:559.388850px;}
.x4c{left:569.168400px;}
.x50{left:573.082367px;}
.x35{left:578.522700px;}
.x2e{left:583.199850px;}
.x10{left:585.666000px;}
.x36{left:598.166700px;}
.x33{left:601.738350px;}
.x2f{left:603.013950px;}
.x34{left:615.344700px;}
.x1b{left:618.916350px;}
.x1c{left:650.721150px;}
.x9{left:664.497450px;}
.x56{left:670.023040px;}
.xa{left:673.681800px;}
.x25{left:678.615000px;}
.x31{left:695.621483px;}
.x1d{left:700.639200px;}
.x55{left:713.141977px;}
.x43{left:721.218750px;}
.x37{left:727.596750px;}
.x26{left:736.050000px;}
.x38{left:745.545000px;}
.xb{left:746.900550px;}
.x2d{left:752.428200px;}
.xc{left:756.084750px;}
.x32{left:759.061194px;}
.x27{left:779.130450px;}
.x28{left:796.053450px;}
.x2b{left:819.779250px;}
.x2c{left:824.966700px;}
@media print{
.v1{vertical-align:-0.907520pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.003188pt;}
.ls0{letter-spacing:0.003719pt;}
.ls5{letter-spacing:0.003985pt;}
.ls20{letter-spacing:0.029755pt;}
.ls11{letter-spacing:0.033474pt;}
.lsc{letter-spacing:0.051002pt;}
.lsa{letter-spacing:0.210409pt;}
.ls1c{letter-spacing:0.270861pt;}
.ls1{letter-spacing:0.453760pt;}
.ls2{letter-spacing:0.755040pt;}
.ls22{letter-spacing:0.870329pt;}
.ls25{letter-spacing:0.908585pt;}
.ls24{letter-spacing:1.037700pt;}
.ls32{letter-spacing:1.214635pt;}
.ls31{letter-spacing:1.272019pt;}
.ls26{letter-spacing:1.697619pt;}
.ls23{letter-spacing:1.946285pt;}
.ls30{letter-spacing:2.247553pt;}
.ls21{letter-spacing:2.553602pt;}
.ls10{letter-spacing:9.807937pt;}
.ls19{letter-spacing:11.290365pt;}
.lse{letter-spacing:11.744657pt;}
.ls13{letter-spacing:12.045925pt;}
.ls16{letter-spacing:12.392908pt;}
.ls3{letter-spacing:12.545440pt;}
.ls4{letter-spacing:12.899309pt;}
.ls18{letter-spacing:12.899316pt;}
.ls1b{letter-spacing:14.011338pt;}
.ls9{letter-spacing:14.164363pt;}
.ls1a{letter-spacing:14.312606pt;}
.ls27{letter-spacing:15.814162pt;}
.ls29{letter-spacing:16.115430pt;}
.ls15{letter-spacing:19.343298pt;}
.lsf{letter-spacing:19.606309pt;}
.ls2e{letter-spacing:19.744988pt;}
.ls17{letter-spacing:20.036379pt;}
.ls6{letter-spacing:20.036414pt;}
.ls1e{letter-spacing:21.117430pt;}
.ls14{letter-spacing:21.270455pt;}
.lsd{letter-spacing:21.418697pt;}
.ls12{letter-spacing:22.026015pt;}
.ls33{letter-spacing:22.465961pt;}
.ls2d{letter-spacing:23.675814pt;}
.ls1d{letter-spacing:24.445720pt;}
.ls2a{letter-spacing:25.325613pt;}
.ls1f{letter-spacing:29.586399pt;}
.ls28{letter-spacing:30.628881pt;}
.lsb{letter-spacing:30.796252pt;}
.ls2c{letter-spacing:33.651122pt;}
.ls2b{letter-spacing:34.258439pt;}
.ls2f{letter-spacing:36.070827pt;}
.ws1d9{word-spacing:-36.118647pt;}
.ws1c5{word-spacing:-34.306259pt;}
.ws1c7{word-spacing:-33.698942pt;}
.ws1be{word-spacing:-30.676701pt;}
.ws89{word-spacing:-23.910133pt;}
.ws1d2{word-spacing:-23.723634pt;}
.ws1e8{word-spacing:-22.513782pt;}
.wsbc{word-spacing:-21.318275pt;}
.ws1d8{word-spacing:-19.792808pt;}
.wsc0{word-spacing:-19.391118pt;}
.ws1c4{word-spacing:-16.440608pt;}
.ws1c0{word-spacing:-16.163250pt;}
.ws1b9{word-spacing:-15.861982pt;}
.wsdb{word-spacing:-14.360426pt;}
.wsdd{word-spacing:-14.059158pt;}
.wsd6{word-spacing:-11.338185pt;}
.ws6b{word-spacing:-3.254344pt;}
.ws1c8{word-spacing:-0.956405pt;}
.ws1ad{word-spacing:-0.063761pt;}
.ws12{word-spacing:-0.053134pt;}
.ws2b{word-spacing:-0.047820pt;}
.ws70{word-spacing:-0.043835pt;}
.ws1c{word-spacing:-0.042508pt;}
.ws3{word-spacing:-0.040913pt;}
.wsbe{word-spacing:-0.038255pt;}
.wsd{word-spacing:-0.037194pt;}
.ws71{word-spacing:0.000000pt;}
.ws136{word-spacing:8.930183pt;}
.ws138{word-spacing:8.933903pt;}
.ws171{word-spacing:8.956219pt;}
.ws137{word-spacing:9.064080pt;}
.ws175{word-spacing:9.636862pt;}
.ws174{word-spacing:9.677775pt;}
.ws1b{word-spacing:9.904302pt;}
.ws1a{word-spacing:10.210358pt;}
.ws172{word-spacing:10.239398pt;}
.ws173{word-spacing:10.246837pt;}
.wsc7{word-spacing:10.931199pt;}
.ws11c{word-spacing:11.089520pt;}
.ws139{word-spacing:11.106009pt;}
.wsd5{word-spacing:11.118212pt;}
.ws85{word-spacing:11.132558pt;}
.wsa6{word-spacing:11.151686pt;}
.ws1c3{word-spacing:11.156468pt;}
.ws72{word-spacing:11.185160pt;}
.ws86{word-spacing:11.194724pt;}
.ws111{word-spacing:11.199506pt;}
.ws13c{word-spacing:11.225028pt;}
.ws84{word-spacing:11.242545pt;}
.ws13e{word-spacing:11.273380pt;}
.ws19{word-spacing:11.294305pt;}
.ws23{word-spacing:11.299929pt;}
.ws119{word-spacing:11.371659pt;}
.ws24{word-spacing:11.429044pt;}
.ws9b{word-spacing:11.519902pt;}
.ws168{word-spacing:11.605979pt;}
.ws15d{word-spacing:11.658581pt;}
.ws169{word-spacing:11.663363pt;}
.ws9a{word-spacing:11.672927pt;}
.ws78{word-spacing:11.759004pt;}
.ws4b{word-spacing:11.782914pt;}
.wse9{word-spacing:11.802042pt;}
.ws5a{word-spacing:11.964631pt;}
.ws10e{word-spacing:11.978977pt;}
.wsb7{word-spacing:12.079399pt;}
.ws199{word-spacing:12.088963pt;}
.ws16{word-spacing:12.114704pt;}
.ws105{word-spacing:12.162307pt;}
.ws13d{word-spacing:12.173465pt;}
.wsb{word-spacing:12.180904pt;}
.ws13a{word-spacing:12.188343pt;}
.wsca{word-spacing:12.195781pt;}
.ws176{word-spacing:12.232975pt;}
.wsce{word-spacing:12.277607pt;}
.ws7f{word-spacing:12.280244pt;}
.ws13b{word-spacing:12.281327pt;}
.ws63{word-spacing:12.296204pt;}
.ws2{word-spacing:12.299924pt;}
.ws0{word-spacing:12.299927pt;}
.wsa{word-spacing:12.303643pt;}
.ws69{word-spacing:12.314801pt;}
.wsc8{word-spacing:12.318520pt;}
.wscd{word-spacing:12.325959pt;}
.wsc6{word-spacing:12.333398pt;}
.ws103{word-spacing:12.355714pt;}
.wsed{word-spacing:12.361539pt;}
.wsc5{word-spacing:12.363153pt;}
.ws64{word-spacing:12.385469pt;}
.ws65{word-spacing:12.389188pt;}
.wscc{word-spacing:12.392908pt;}
.wsd9{word-spacing:12.414141pt;}
.ws6a{word-spacing:12.430101pt;}
.ws104{word-spacing:12.448698pt;}
.ws13f{word-spacing:12.463575pt;}
.ws102{word-spacing:12.474733pt;}
.wsc9{word-spacing:12.482172pt;}
.ws1{word-spacing:12.489611pt;}
.ws1cc{word-spacing:12.505000pt;}
.ws99{word-spacing:12.519346pt;}
.ws188{word-spacing:12.524128pt;}
.ws101{word-spacing:12.530524pt;}
.ws9f{word-spacing:12.548038pt;}
.wscf{word-spacing:12.560279pt;}
.ws66{word-spacing:12.567717pt;}
.ws1cb{word-spacing:12.571948pt;}
.wsc{word-spacing:12.578876pt;}
.ws35{word-spacing:12.581512pt;}
.ws100{word-spacing:12.586314pt;}
.wsac{word-spacing:12.600640pt;}
.ws120{word-spacing:12.624550pt;}
.ws126{word-spacing:12.629332pt;}
.ws68{word-spacing:12.638385pt;}
.ws67{word-spacing:12.660701pt;}
.wsee{word-spacing:12.667589pt;}
.wscb{word-spacing:12.671860pt;}
.ws62{word-spacing:12.712772pt;}
.ws4a{word-spacing:12.820613pt;}
.wse0{word-spacing:12.892344pt;}
.ws153{word-spacing:12.930600pt;}
.ws114{word-spacing:12.968856pt;}
.ws6d{word-spacing:13.042774pt;}
.ws186{word-spacing:13.141009pt;}
.ws6f{word-spacing:13.202172pt;}
.ws6e{word-spacing:13.238037pt;}
.wsd1{word-spacing:13.242022pt;}
.ws1f{word-spacing:13.338927pt;}
.ws6c{word-spacing:13.377511pt;}
.ws1f2{word-spacing:13.480533pt;}
.wsb9{word-spacing:13.494879pt;}
.ws4c{word-spacing:13.523571pt;}
.ws54{word-spacing:13.533135pt;}
.ws127{word-spacing:13.571392pt;}
.wsb8{word-spacing:13.628776pt;}
.ws1f4{word-spacing:13.647904pt;}
.ws1d{word-spacing:13.649246pt;}
.ws1f3{word-spacing:13.671814pt;}
.ws1e{word-spacing:13.747001pt;}
.wsa0{word-spacing:13.791365pt;}
.ws49{word-spacing:13.820057pt;}
.ws1e4{word-spacing:13.877441pt;}
.ws14e{word-spacing:13.915698pt;}
.ws87{word-spacing:14.073504pt;}
.ws88{word-spacing:14.092633pt;}
.ws73{word-spacing:14.102197pt;}
.wsdc{word-spacing:14.106979pt;}
.ws7b{word-spacing:14.150017pt;}
.ws121{word-spacing:14.178709pt;}
.ws122{word-spacing:14.183491pt;}
.wsda{word-spacing:14.245657pt;}
.wsa5{word-spacing:14.384336pt;}
.ws3c{word-spacing:14.393900pt;}
.ws15e{word-spacing:14.441721pt;}
.ws51{word-spacing:14.465631pt;}
.ws18a{word-spacing:14.479977pt;}
.ws1e3{word-spacing:14.484759pt;}
.wsf8{word-spacing:14.532579pt;}
.wsc4{word-spacing:14.566053pt;}
.ws177{word-spacing:14.609091pt;}
.ws129{word-spacing:14.637784pt;}
.ws10{word-spacing:14.649007pt;}
.ws141{word-spacing:14.680822pt;}
.wse{word-spacing:14.718081pt;}
.ws8a{word-spacing:14.742988pt;}
.ws11a{word-spacing:14.781244pt;}
.wsf{word-spacing:14.813722pt;}
.wsfd{word-spacing:14.824283pt;}
.ws181{word-spacing:15.001218pt;}
.ws128{word-spacing:15.010782pt;}
.ws11{word-spacing:15.063451pt;}
.wsd7{word-spacing:15.082512pt;}
.wsf2{word-spacing:15.312049pt;}
.wsf3{word-spacing:15.345524pt;}
.ws7e{word-spacing:15.388562pt;}
.ws194{word-spacing:15.474638pt;}
.wsc3{word-spacing:15.479420pt;}
.ws7d{word-spacing:15.527241pt;}
.ws19d{word-spacing:15.594189pt;}
.ws92{word-spacing:15.651573pt;}
.wse4{word-spacing:15.689829pt;}
.wsd2{word-spacing:15.732868pt;}
.ws52{word-spacing:15.742432pt;}
.wseb{word-spacing:15.751996pt;}
.ws145{word-spacing:15.766342pt;}
.ws161{word-spacing:15.771124pt;}
.ws10a{word-spacing:15.780688pt;}
.wsff{word-spacing:15.785470pt;}
.ws19b{word-spacing:15.790252pt;}
.wse5{word-spacing:15.809380pt;}
.wsb0{word-spacing:15.818944pt;}
.ws148{word-spacing:15.828508pt;}
.ws19c{word-spacing:15.833290pt;}
.ws1b5{word-spacing:15.838072pt;}
.wsc1{word-spacing:15.847636pt;}
.ws5c{word-spacing:15.861982pt;}
.ws1b4{word-spacing:15.866764pt;}
.ws146{word-spacing:15.876329pt;}
.ws15f{word-spacing:15.905021pt;}
.wsae{word-spacing:15.909803pt;}
.ws1a8{word-spacing:15.924149pt;}
.ws1ee{word-spacing:15.943277pt;}
.ws10c{word-spacing:15.948059pt;}
.ws197{word-spacing:15.952841pt;}
.ws16e{word-spacing:15.957623pt;}
.ws5e{word-spacing:15.967187pt;}
.ws1ac{word-spacing:15.976751pt;}
.ws1a7{word-spacing:15.986315pt;}
.ws187{word-spacing:15.991097pt;}
.ws160{word-spacing:15.995879pt;}
.ws147{word-spacing:16.019789pt;}
.ws1f0{word-spacing:16.062828pt;}
.ws1c2{word-spacing:16.067610pt;}
.wse3{word-spacing:16.077174pt;}
.wsaa{word-spacing:16.081956pt;}
.ws1f1{word-spacing:16.091520pt;}
.wsec{word-spacing:16.115430pt;}
.ws1ab{word-spacing:16.158468pt;}
.ws11e{word-spacing:16.168032pt;}
.wse1{word-spacing:16.182378pt;}
.wse2{word-spacing:16.211070pt;}
.ws134{word-spacing:16.292365pt;}
.ws16d{word-spacing:16.431044pt;}
.wsa8{word-spacing:16.450172pt;}
.wsb6{word-spacing:16.493210pt;}
.ws1ae{word-spacing:16.574504pt;}
.wsd8{word-spacing:16.593633pt;}
.ws140{word-spacing:16.607979pt;}
.wsa9{word-spacing:16.636671pt;}
.ws7c{word-spacing:16.689273pt;}
.ws8d{word-spacing:16.703619pt;}
.ws48{word-spacing:16.784914pt;}
.ws39{word-spacing:16.804042pt;}
.ws170{word-spacing:16.813606pt;}
.ws94{word-spacing:16.827952pt;}
.ws93{word-spacing:16.899682pt;}
.ws108{word-spacing:16.990541pt;}
.ws149{word-spacing:17.071835pt;}
.ws154{word-spacing:17.196168pt;}
.ws3d{word-spacing:17.224860pt;}
.ws1a3{word-spacing:17.243988pt;}
.ws8e{word-spacing:17.267898pt;}
.ws34{word-spacing:17.277462pt;}
.ws33{word-spacing:17.325283pt;}
.ws179{word-spacing:17.401795pt;}
.ws9e{word-spacing:17.420923pt;}
.ws1dd{word-spacing:17.573948pt;}
.ws37{word-spacing:17.669589pt;}
.ws14{word-spacing:17.709518pt;}
.ws182{word-spacing:17.712627pt;}
.ws47{word-spacing:17.722191pt;}
.ws1de{word-spacing:17.741319pt;}
.ws184{word-spacing:17.798703pt;}
.ws124{word-spacing:17.846524pt;}
.ws38{word-spacing:17.860870pt;}
.ws1df{word-spacing:17.879998pt;}
.ws183{word-spacing:17.946946pt;}
.ws13{word-spacing:17.964560pt;}
.ws15{word-spacing:17.980500pt;}
.ws17f{word-spacing:18.162137pt;}
.ws12b{word-spacing:18.176483pt;}
.ws12e{word-spacing:18.214740pt;}
.ws77{word-spacing:18.262560pt;}
.wsa4{word-spacing:18.267342pt;}
.wsf4{word-spacing:18.286470pt;}
.ws53{word-spacing:18.310380pt;}
.ws1dc{word-spacing:18.396457pt;}
.ws198{word-spacing:18.406021pt;}
.ws76{word-spacing:18.420367pt;}
.ws41{word-spacing:18.449059pt;}
.wsc2{word-spacing:18.453841pt;}
.ws40{word-spacing:18.549481pt;}
.wsa7{word-spacing:18.582956pt;}
.ws189{word-spacing:18.602084pt;}
.ws1bf{word-spacing:18.621212pt;}
.ws116{word-spacing:18.659468pt;}
.ws191{word-spacing:18.822057pt;}
.ws1d4{word-spacing:18.865095pt;}
.ws190{word-spacing:18.932044pt;}
.ws9d{word-spacing:19.113761pt;}
.wsbf{word-spacing:19.118543pt;}
.ws1d3{word-spacing:19.156799pt;}
.ws56{word-spacing:19.166363pt;}
.ws14d{word-spacing:19.214183pt;}
.ws97{word-spacing:19.266785pt;}
.ws143{word-spacing:19.281132pt;}
.ws96{word-spacing:19.295478pt;}
.ws115{word-spacing:19.305042pt;}
.wsa2{word-spacing:19.319388pt;}
.ws55{word-spacing:19.357644pt;}
.wsbd{word-spacing:19.364235pt;}
.ws98{word-spacing:19.367208pt;}
.ws144{word-spacing:19.415028pt;}
.ws95{word-spacing:19.467631pt;}
.wsab{word-spacing:19.472413pt;}
.ws42{word-spacing:19.491541pt;}
.ws1b3{word-spacing:19.501105pt;}
.ws166{word-spacing:19.525015pt;}
.wsaf{word-spacing:19.548925pt;}
.ws44{word-spacing:19.558489pt;}
.ws43{word-spacing:19.596746pt;}
.ws12c{word-spacing:19.620655pt;}
.ws1d6{word-spacing:19.649348pt;}
.ws1d7{word-spacing:19.697168pt;}
.ws193{word-spacing:19.701950pt;}
.ws165{word-spacing:19.730642pt;}
.ws1b7{word-spacing:19.797590pt;}
.ws164{word-spacing:19.864539pt;}
.wsd0{word-spacing:20.012469pt;}
.ws1b8{word-spacing:20.022346pt;}
.ws1af{word-spacing:20.089294pt;}
.ws11b{word-spacing:20.151460pt;}
.ws3a{word-spacing:20.218409pt;}
.ws185{word-spacing:20.266229pt;}
.ws1f6{word-spacing:20.419254pt;}
.ws1f5{word-spacing:20.433600pt;}
.ws61{word-spacing:20.490984pt;}
.ws46{word-spacing:20.658355pt;}
.ws15b{word-spacing:21.026571pt;}
.ws91{word-spacing:21.045699pt;}
.ws106{word-spacing:21.060045pt;}
.ws75{word-spacing:21.126994pt;}
.ws14b{word-spacing:21.131776pt;}
.ws8c{word-spacing:21.174814pt;}
.ws18b{word-spacing:21.184378pt;}
.ws5d{word-spacing:21.187625pt;}
.wsba{word-spacing:21.198724pt;}
.ws1b6{word-spacing:21.200377pt;}
.ws1a4{word-spacing:21.206753pt;}
.wsbb{word-spacing:21.208288pt;}
.wse6{word-spacing:21.217852pt;}
.wse7{word-spacing:21.251327pt;}
.ws45{word-spacing:21.390005pt;}
.ws8b{word-spacing:21.428261pt;}
.ws10b{word-spacing:21.429915pt;}
.ws1c9{word-spacing:21.571722pt;}
.ws118{word-spacing:21.653017pt;}
.wsb3{word-spacing:21.662581pt;}
.ws1ca{word-spacing:21.686491pt;}
.ws10f{word-spacing:21.700837pt;}
.wsad{word-spacing:21.829952pt;}
.wsfe{word-spacing:21.987759pt;}
.ws21{word-spacing:21.997323pt;}
.ws20{word-spacing:22.030797pt;}
.ws132{word-spacing:22.255552pt;}
.ws60{word-spacing:22.260334pt;}
.ws107{word-spacing:22.289026pt;}
.ws16f{word-spacing:22.303372pt;}
.ws17e{word-spacing:22.341629pt;}
.ws1e5{word-spacing:22.384667pt;}
.ws196{word-spacing:22.489871pt;}
.ws19f{word-spacing:22.537692pt;}
.ws3b{word-spacing:22.571166pt;}
.ws1e6{word-spacing:22.585512pt;}
.ws109{word-spacing:22.642896pt;}
.ws2d{word-spacing:22.705063pt;}
.ws1e7{word-spacing:22.719409pt;}
.ws195{word-spacing:22.815049pt;}
.ws1ea{word-spacing:22.987202pt;}
.ws2a{word-spacing:22.996766pt;}
.ws2c{word-spacing:23.020676pt;}
.ws1eb{word-spacing:23.044587pt;}
.ws22{word-spacing:23.145009pt;}
.ws1cf{word-spacing:23.288470pt;}
.ws14a{word-spacing:23.379328pt;}
.ws1d0{word-spacing:23.393674pt;}
.wsa1{word-spacing:23.441495pt;}
.ws4f{word-spacing:23.513225pt;}
.ws17{word-spacing:23.566287pt;}
.ws1d5{word-spacing:23.594520pt;}
.ws1d1{word-spacing:23.627994pt;}
.ws9c{word-spacing:23.690160pt;}
.ws1ce{word-spacing:23.838403pt;}
.ws1ec{word-spacing:23.996210pt;}
.ws135{word-spacing:24.053594pt;}
.ws1c1{word-spacing:24.067940pt;}
.ws18e{word-spacing:24.072722pt;}
.wsde{word-spacing:24.082286pt;}
.wsb4{word-spacing:24.197055pt;}
.wsf0{word-spacing:24.216183pt;}
.wsdf{word-spacing:24.259221pt;}
.ws15a{word-spacing:24.297477pt;}
.ws5f{word-spacing:24.330952pt;}
.wsf6{word-spacing:24.431374pt;}
.ws28{word-spacing:24.455284pt;}
.ws131{word-spacing:24.498323pt;}
.ws3f{word-spacing:24.589181pt;}
.ws1ef{word-spacing:24.598745pt;}
.ws27{word-spacing:24.608309pt;}
.ws29{word-spacing:24.627437pt;}
.ws180{word-spacing:24.665694pt;}
.ws16b{word-spacing:24.718296pt;}
.wsef{word-spacing:24.746988pt;}
.wsf1{word-spacing:24.890449pt;}
.ws7a{word-spacing:24.952615pt;}
.ws17a{word-spacing:25.062602pt;}
.ws3e{word-spacing:25.172588pt;}
.ws1e9{word-spacing:25.210845pt;}
.ws155{word-spacing:25.282575pt;}
.ws90{word-spacing:25.406908pt;}
.ws4{word-spacing:25.440193pt;}
.ws6{word-spacing:25.501829pt;}
.ws9{word-spacing:25.532647pt;}
.ws7{word-spacing:25.571169pt;}
.ws5{word-spacing:25.655918pt;}
.wsd3{word-spacing:25.665137pt;}
.ws192{word-spacing:25.693829pt;}
.ws8{word-spacing:25.802313pt;}
.wsd4{word-spacing:25.865982pt;}
.ws12a{word-spacing:25.971187pt;}
.ws18{word-spacing:26.010482pt;}
.wsb2{word-spacing:26.109866pt;}
.ws1b1{word-spacing:26.186378pt;}
.wsb1{word-spacing:26.258108pt;}
.wsfb{word-spacing:26.712401pt;}
.ws1a1{word-spacing:26.822388pt;}
.ws1a2{word-spacing:26.855862pt;}
.ws12d{word-spacing:27.228860pt;}
.ws1e1{word-spacing:27.329282pt;}
.ws1e2{word-spacing:27.391449pt;}
.ws110{word-spacing:27.410577pt;}
.ws79{word-spacing:27.482307pt;}
.wsfc{word-spacing:27.491871pt;}
.ws14f{word-spacing:27.683152pt;}
.ws50{word-spacing:27.711845pt;}
.ws158{word-spacing:27.907908pt;}
.ws167{word-spacing:27.984420pt;}
.ws163{word-spacing:27.993984pt;}
.ws12f{word-spacing:28.013112pt;}
.ws59{word-spacing:28.080061pt;}
.ws31{word-spacing:28.175701pt;}
.ws57{word-spacing:28.190047pt;}
.ws18f{word-spacing:28.194829pt;}
.ws58{word-spacing:28.223509pt;}
.ws117{word-spacing:28.285688pt;}
.ws178{word-spacing:28.304816pt;}
.ws18c{word-spacing:28.429149pt;}
.ws17d{word-spacing:28.472187pt;}
.ws2f{word-spacing:28.500879pt;}
.ws19a{word-spacing:28.591737pt;}
.ws36{word-spacing:28.606084pt;}
.ws30{word-spacing:28.615648pt;}
.ws10d{word-spacing:28.692160pt;}
.ws2e{word-spacing:28.854745pt;}
.ws130{word-spacing:28.993428pt;}
.ws152{word-spacing:29.017338pt;}
.ws151{word-spacing:29.031684pt;}
.ws11f{word-spacing:29.495540pt;}
.ws1ba{word-spacing:29.505105pt;}
.wse8{word-spacing:29.677257pt;}
.ws8f{word-spacing:29.878103pt;}
.ws16c{word-spacing:29.940269pt;}
.wsb5{word-spacing:30.055038pt;}
.ws1ed{word-spacing:30.327613pt;}
.ws1bb{word-spacing:30.351523pt;}
.ws1bc{word-spacing:30.408908pt;}
.ws133{word-spacing:30.423254pt;}
.wsf9{word-spacing:30.490202pt;}
.ws81{word-spacing:30.504548pt;}
.ws82{word-spacing:30.576279pt;}
.ws1bd{word-spacing:30.581061pt;}
.ws83{word-spacing:30.628881pt;}
.ws80{word-spacing:30.777124pt;}
.ws74{word-spacing:30.997097pt;}
.ws112{word-spacing:31.006661pt;}
.ws142{word-spacing:31.279236pt;}
.wsf7{word-spacing:31.293583pt;}
.ws123{word-spacing:31.374877pt;}
.ws25{word-spacing:31.413133pt;}
.ws11d{word-spacing:31.628324pt;}
.ws1e0{word-spacing:31.666581pt;}
.ws125{word-spacing:31.714401pt;}
.ws1da{word-spacing:31.719183pt;}
.ws1c6{word-spacing:31.862644pt;}
.ws162{word-spacing:32.015669pt;}
.ws1db{word-spacing:32.092181pt;}
.ws1cd{word-spacing:32.393449pt;}
.ws4e{word-spacing:32.661242pt;}
.ws5b{word-spacing:33.225521pt;}
.ws16a{word-spacing:33.526789pt;}
.ws157{word-spacing:33.588955pt;}
.ws156{word-spacing:33.746762pt;}
.ws19e{word-spacing:34.038466pt;}
.ws14c{word-spacing:34.086286pt;}
.wsea{word-spacing:34.095850pt;}
.wsa3{word-spacing:34.382772pt;}
.ws17c{word-spacing:34.674475pt;}
.ws17b{word-spacing:34.803590pt;}
.ws26{word-spacing:34.966179pt;}
.wsf5{word-spacing:35.874764pt;}
.ws150{word-spacing:35.946494pt;}
.ws159{word-spacing:36.104301pt;}
.ws18d{word-spacing:37.677588pt;}
.wsfa{word-spacing:38.012330pt;}
.ws113{word-spacing:38.629211pt;}
.ws15c{word-spacing:38.868313pt;}
.ws1a0{word-spacing:39.054812pt;}
.ws4d{word-spacing:39.169580pt;}
.ws32{word-spacing:40.087730pt;}
.ws1b0{word-spacing:41.268890pt;}
.ws1b2{word-spacing:47.853741pt;}
.ws1a9{word-spacing:64.155670pt;}
.ws1a6{word-spacing:280.169378pt;}
.ws1a5{word-spacing:300.540812pt;}
.ws1aa{word-spacing:346.309589pt;}
._32{margin-left:-33.990646pt;}
._31{margin-left:-32.914690pt;}
._33{margin-left:-31.881772pt;}
._2e{margin-left:-30.472640pt;}
._30{margin-left:-24.192273pt;}
._34{margin-left:-23.073279pt;}
._17{margin-left:-21.079174pt;}
._18{margin-left:-18.720988pt;}
._2f{margin-left:-16.177596pt;}
._1b{margin-left:-14.403464pt;}
._1a{margin-left:-11.094302pt;}
._35{margin-left:-9.874885pt;}
._2{margin-left:-1.479269pt;}
._0{width:0.914933pt;}
._1f{width:8.100766pt;}
._1e{width:9.889778pt;}
._16{width:10.793034pt;}
._5{width:12.305989pt;}
._3{width:13.211404pt;}
._6{width:14.469608pt;}
._c{width:15.622881pt;}
._10{width:16.789696pt;}
._d{width:18.511225pt;}
._14{width:20.253171pt;}
._20{width:21.323057pt;}
._4{width:22.248548pt;}
._9{width:23.919697pt;}
._12{width:25.387780pt;}
._1{width:26.495699pt;}
._2c{width:27.482307pt;}
._f{width:28.763890pt;}
._b{width:29.815936pt;}
._15{width:30.911020pt;}
._7{width:32.546473pt;}
._e{width:33.598519pt;}
._11{width:34.507104pt;}
._8{width:36.003879pt;}
._1c{width:37.156347pt;}
._21{width:38.677032pt;}
._1d{width:39.619091pt;}
._a{width:41.082391pt;}
._2b{width:42.416577pt;}
._2d{width:48.891441pt;}
._26{width:257.837314pt;}
._28{width:260.802170pt;}
._29{width:292.650468pt;}
._2a{width:297.575955pt;}
._27{width:315.030353pt;}
._25{width:321.007886pt;}
._24{width:324.976968pt;}
._23{width:355.347620pt;}
._22{width:356.351845pt;}
._13{width:1053.945982pt;}
._19{width:2275.340890pt;}
.fs8{font-size:24.792000pt;}
.fs3{font-size:29.397333pt;}
.fs7{font-size:31.876267pt;}
.fsf{font-size:32.000000pt;}
.fs0{font-size:37.193600pt;}
.fs10{font-size:38.254933pt;}
.fsc{font-size:39.849600pt;}
.fs4{font-size:42.507733pt;}
.fsd{font-size:42.666667pt;}
.fs9{font-size:44.631467pt;}
.fs6{font-size:47.820267pt;}
.fse{font-size:48.000000pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:63.760533pt;}
.fs1{font-size:77.044800pt;}
.fsb{font-size:79.701333pt;}
.fsa{font-size:102.017067pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:2.666667pt;}
.y69{bottom:28.497600pt;}
.y1e5{bottom:74.975824pt;}
.y131{bottom:74.982968pt;}
.y66{bottom:74.985013pt;}
.y1ac{bottom:74.985669pt;}
.y56{bottom:74.985893pt;}
.ybc{bottom:74.986629pt;}
.yf8{bottom:75.740581pt;}
.y177{bottom:76.119661pt;}
.y74{bottom:84.434838pt;}
.y65{bottom:88.289160pt;}
.yf7{bottom:89.044732pt;}
.y176{bottom:89.423812pt;}
.y1e4{bottom:89.716421pt;}
.y55{bottom:90.254907pt;}
.ybb{bottom:90.255640pt;}
.y130{bottom:90.479125pt;}
.y1ab{bottom:91.464533pt;}
.y73{bottom:99.930996pt;}
.y63{bottom:100.233067pt;}
.y64{bottom:101.518000pt;}
.yf6{bottom:102.273565pt;}
.y175{bottom:102.651716pt;}
.y1e3{bottom:104.910115pt;}
.y54{bottom:105.523920pt;}
.yba{bottom:105.524651pt;}
.y12f{bottom:105.975282pt;}
.y13a{bottom:112.326738pt;}
.y62{bottom:114.821853pt;}
.y72{bottom:115.502470pt;}
.yf5{bottom:115.577716pt;}
.y174{bottom:115.955867pt;}
.y1aa{bottom:116.560533pt;}
.y1e2{bottom:119.650713pt;}
.y12e{bottom:121.396123pt;}
.yb9{bottom:121.398589pt;}
.y139{bottom:125.555572pt;}
.y53{bottom:126.538533pt;}
.y60{bottom:128.126000pt;}
.y61{bottom:128.428200pt;}
.yf4{bottom:128.881867pt;}
.y71{bottom:131.073944pt;}
.y5f{bottom:132.283467pt;}
.y1e1{bottom:134.391310pt;}
.yb8{bottom:136.667922pt;}
.y12d{bottom:136.892280pt;}
.y138{bottom:138.859723pt;}
.y5e{bottom:141.430360pt;}
.y70{bottom:146.570102pt;}
.y1e0{bottom:149.509687pt;}
.y52{bottom:151.558933pt;}
.yb7{bottom:151.936933pt;}
.yb5{bottom:151.937256pt;}
.y137{bottom:152.163873pt;}
.y12c{bottom:152.388438pt;}
.y5d{bottom:154.658267pt;}
.yb6{bottom:157.228267pt;}
.y5c{bottom:158.815733pt;}
.y6f{bottom:162.141576pt;}
.y1de{bottom:164.250284pt;}
.y1df{bottom:164.628064pt;}
.y136{bottom:165.468024pt;}
.yb4{bottom:167.206267pt;}
.yb2{bottom:167.212136pt;}
.y12b{bottom:167.884595pt;}
.y5b{bottom:167.961693pt;}
.y1a9{bottom:168.860003pt;}
.yb3{bottom:172.497600pt;}
.y6e{bottom:177.637733pt;}
.y135{bottom:178.695928pt;}
.y1dd{bottom:179.443979pt;}
.y5a{bottom:181.265853pt;}
.yb1{bottom:182.481148pt;}
.y12a{bottom:183.305436pt;}
.y1a8{bottom:184.961087pt;}
.y134{bottom:192.000079pt;}
.y1dc{bottom:194.184576pt;}
.y58{bottom:194.570000pt;}
.y59{bottom:194.796880pt;}
.yb0{bottom:197.750159pt;}
.y57{bottom:198.651867pt;}
.y129{bottom:198.801593pt;}
.y1a7{bottom:201.062171pt;}
.y51{bottom:203.870080pt;}
.y133{bottom:205.304229pt;}
.y1db{bottom:208.925173pt;}
.yaf{bottom:213.094487pt;}
.y128{bottom:214.297750pt;}
.y1a6{bottom:217.163255pt;}
.y132{bottom:218.532133pt;}
.y50{bottom:219.744013pt;}
.y1da{bottom:224.043550pt;}
.yc4{bottom:226.694909pt;}
.yae{bottom:228.363498pt;}
.y127{bottom:229.793908pt;}
.y1a5{bottom:233.264338pt;}
.y32{bottom:234.104293pt;}
.y4f{bottom:235.693280pt;}
.y1d9{bottom:238.784147pt;}
.y33{bottom:239.470800pt;}
.yc3{bottom:239.999060pt;}
.yad{bottom:243.632509pt;}
.y126{bottom:245.214748pt;}
.y1a4{bottom:249.365422pt;}
.y31{bottom:250.356013pt;}
.y4e{bottom:251.642533pt;}
.yc2{bottom:253.303210pt;}
.y1d8{bottom:253.524745pt;}
.yac{bottom:258.901520pt;}
.y125{bottom:260.710906pt;}
.y1a3{bottom:265.466506pt;}
.yc1{bottom:266.531114pt;}
.y30{bottom:266.532413pt;}
.y4d{bottom:267.591787pt;}
.y1d7{bottom:268.718439pt;}
.yab{bottom:274.170531pt;}
.y124{bottom:276.207063pt;}
.yc0{bottom:279.835265pt;}
.y1a2{bottom:281.567590pt;}
.y2f{bottom:282.708813pt;}
.y1d6{bottom:283.459036pt;}
.y4c{bottom:283.541040pt;}
.yaa{bottom:290.044469pt;}
.y123{bottom:291.703221pt;}
.ybf{bottom:293.139416pt;}
.y1a1{bottom:297.668674pt;}
.y1d5{bottom:298.577413pt;}
.y2e{bottom:298.960533pt;}
.y4b{bottom:299.490293pt;}
.ya9{bottom:305.313480pt;}
.ybe{bottom:306.368249pt;}
.y122{bottom:307.124061pt;}
.y1d4{bottom:313.318011pt;}
.y1a0{bottom:313.769757pt;}
.y2d{bottom:315.136933pt;}
.y2b{bottom:315.137080pt;}
.y4a{bottom:315.439547pt;}
.ybd{bottom:319.672400pt;}
.y2c{bottom:320.428267pt;}
.ya8{bottom:320.582491pt;}
.y121{bottom:322.620219pt;}
.y1d1{bottom:328.058608pt;}
.y1d2{bottom:328.209242pt;}
.y1d3{bottom:328.436388pt;}
.y19f{bottom:329.870841pt;}
.y2a{bottom:331.388800pt;}
.y48{bottom:331.392853pt;}
.ya7{bottom:335.851502pt;}
.y49{bottom:336.680267pt;}
.y120{bottom:338.116376pt;}
.y1cf{bottom:342.874522pt;}
.y1d0{bottom:343.252302pt;}
.y19e{bottom:345.971925pt;}
.y47{bottom:347.266800pt;}
.y29{bottom:347.565200pt;}
.ya6{bottom:351.120513pt;}
.y11d{bottom:353.611887pt;}
.y11f{bottom:353.612533pt;}
.y1ce{bottom:357.992899pt;}
.y11e{bottom:358.903867pt;}
.y19d{bottom:362.073009pt;}
.y46{bottom:363.216053pt;}
.y28{bottom:363.741600pt;}
.y26{bottom:363.742120pt;}
.ya5{bottom:366.466037pt;}
.y11c{bottom:369.108045pt;}
.y27{bottom:369.108533pt;}
.y1cd{bottom:372.733496pt;}
.y19c{bottom:378.174093pt;}
.y45{bottom:379.165307pt;}
.y25{bottom:379.993827pt;}
.ya4{bottom:381.735048pt;}
.y11b{bottom:384.528885pt;}
.y1cc{bottom:387.851874pt;}
.y19b{bottom:394.275176pt;}
.y44{bottom:395.114560pt;}
.y24{bottom:396.170227pt;}
.ya3{bottom:397.004059pt;}
.y11a{bottom:400.025043pt;}
.y1cb{bottom:402.592471pt;}
.y19a{bottom:410.376260pt;}
.y43{bottom:411.063813pt;}
.ya2{bottom:412.273070pt;}
.y23{bottom:412.649093pt;}
.y6a{bottom:413.026667pt;}
.y117{bottom:415.517179pt;}
.y119{bottom:415.521200pt;}
.y1ca{bottom:417.786165pt;}
.y118{bottom:420.812400pt;}
.y199{bottom:426.477344pt;}
.y42{bottom:427.013067pt;}
.ya0{bottom:427.542082pt;}
.ya1{bottom:427.919862pt;}
.y22{bottom:428.825493pt;}
.y1c9{bottom:432.526762pt;}
.y116{bottom:436.607112pt;}
.y198{bottom:442.503111pt;}
.y9f{bottom:442.811093pt;}
.y41{bottom:442.962320pt;}
.y21{bottom:445.077213pt;}
.y1c8{bottom:447.645140pt;}
.y115{bottom:452.783513pt;}
.y9e{bottom:458.156616pt;}
.y197{bottom:458.604195pt;}
.y40{bottom:458.911573pt;}
.y20{bottom:461.253613pt;}
.y1c7{bottom:462.385737pt;}
.y9d{bottom:473.955237pt;}
.y196{bottom:474.705278pt;}
.y3f{bottom:474.785520pt;}
.y114{bottom:477.199346pt;}
.y1f{bottom:477.505333pt;}
.y1c6{bottom:477.579431pt;}
.y9c{bottom:489.224248pt;}
.y3e{bottom:490.734773pt;}
.y195{bottom:490.806362pt;}
.y1c5{bottom:492.320028pt;}
.y113{bottom:492.695503pt;}
.y1e{bottom:493.681733pt;}
.y1c{bottom:493.681880pt;}
.y1d{bottom:498.973067pt;}
.y9b{bottom:504.493259pt;}
.y194{bottom:506.907446pt;}
.y1c4{bottom:507.060625pt;}
.y3d{bottom:507.138320pt;}
.y112{bottom:508.191661pt;}
.y1b{bottom:509.858280pt;}
.y9a{bottom:519.762270pt;}
.y1c3{bottom:522.179003pt;}
.y193{bottom:523.008530pt;}
.y3c{bottom:523.087573pt;}
.y111{bottom:523.612501pt;}
.y1a{bottom:526.110000pt;}
.y99{bottom:535.107794pt;}
.y1c2{bottom:536.919600pt;}
.y3b{bottom:539.036827pt;}
.y110{bottom:539.108659pt;}
.y192{bottom:539.109613pt;}
.y19{bottom:542.286400pt;}
.y17{bottom:542.286680pt;}
.y18{bottom:547.577733pt;}
.y98{bottom:550.376805pt;}
.y10f{bottom:554.604816pt;}
.y3a{bottom:554.986080pt;}
.y191{bottom:555.210697pt;}
.y16{bottom:558.538400pt;}
.y157{bottom:559.672392pt;}
.y173{bottom:559.673050pt;}
.y1c1{bottom:560.730533pt;}
.y97{bottom:565.645816pt;}
.y10e{bottom:570.100973pt;}
.y39{bottom:570.935333pt;}
.y37{bottom:570.936093pt;}
.y190{bottom:571.311781pt;}
.y15{bottom:574.714800pt;}
.y156{bottom:575.243867pt;}
.y154{bottom:575.244329pt;}
.y172{bottom:575.244524pt;}
.y38{bottom:576.226667pt;}
.y155{bottom:580.535200pt;}
.y96{bottom:580.914827pt;}
.y10d{bottom:585.521814pt;}
.y36{bottom:586.810027pt;}
.y18f{bottom:587.412865pt;}
.y153{bottom:590.815803pt;}
.y171{bottom:590.815999pt;}
.y14{bottom:590.891200pt;}
.y95{bottom:596.183838pt;}
.y10c{bottom:601.017971pt;}
.y35{bottom:602.759280pt;}
.y18e{bottom:603.513949pt;}
.y152{bottom:606.311961pt;}
.y170{bottom:606.312156pt;}
.y94{bottom:611.452850pt;}
.y1c0{bottom:613.036650pt;}
.y13{bottom:615.987200pt;}
.y10b{bottom:616.514129pt;}
.y34{bottom:618.708533pt;}
.y18d{bottom:619.615032pt;}
.y151{bottom:621.883435pt;}
.y16f{bottom:621.883630pt;}
.y93{bottom:626.797178pt;}
.y1bf{bottom:628.457490pt;}
.y10a{bottom:632.010286pt;}
.y18c{bottom:635.716116pt;}
.y150{bottom:637.379592pt;}
.y16e{bottom:637.379788pt;}
.y92{bottom:642.066189pt;}
.y1be{bottom:643.878331pt;}
.y109{bottom:647.431127pt;}
.y189{bottom:651.816215pt;}
.y18b{bottom:651.817200pt;}
.y12{bottom:652.798040pt;}
.y7{bottom:652.798920pt;}
.y14f{bottom:652.951067pt;}
.y14d{bottom:652.951161pt;}
.y16d{bottom:652.951262pt;}
.y18a{bottom:657.108533pt;}
.y8f{bottom:657.335134pt;}
.y91{bottom:657.335200pt;}
.y14e{bottom:658.242267pt;}
.y1bd{bottom:659.299171pt;}
.y90{bottom:662.626533pt;}
.y108{bottom:662.927284pt;}
.y188{bottom:667.917299pt;}
.y14c{bottom:668.522635pt;}
.y16c{bottom:668.522737pt;}
.y11{bottom:668.748013pt;}
.y6{bottom:674.040187pt;}
.y1bc{bottom:674.720012pt;}
.y107{bottom:678.423441pt;}
.y8e{bottom:678.425067pt;}
.y187{bottom:684.018383pt;}
.y14b{bottom:684.018792pt;}
.y16b{bottom:684.018894pt;}
.y10{bottom:684.697973pt;}
.y1bb{bottom:690.140852pt;}
.y106{bottom:693.919599pt;}
.y5{bottom:695.356760pt;}
.yf3{bottom:698.532759pt;}
.y14a{bottom:699.590267pt;}
.y16a{bottom:699.590368pt;}
.ydf{bottom:699.590627pt;}
.y148{bottom:699.591245pt;}
.y186{bottom:700.119467pt;}
.yf{bottom:700.647933pt;}
.y8c{bottom:702.917021pt;}
.y149{bottom:704.881733pt;}
.y1ba{bottom:705.561693pt;}
.y8d{bottom:708.207733pt;}
.y4{bottom:708.585600pt;}
.y105{bottom:709.415756pt;}
.yf2{bottom:714.028917pt;}
.y169{bottom:715.086526pt;}
.yde{bottom:715.086785pt;}
.y147{bottom:715.087402pt;}
.ye{bottom:716.597907pt;}
.y8b{bottom:718.186032pt;}
.y1b9{bottom:720.982533pt;}
.y104{bottom:724.836597pt;}
.y185{bottom:725.215467pt;}
.yf1{bottom:729.600391pt;}
.y168{bottom:730.658000pt;}
.ydd{bottom:730.658259pt;}
.y146{bottom:730.658877pt;}
.y166{bottom:730.660929pt;}
.yd{bottom:732.547867pt;}
.y8a{bottom:733.455043pt;}
.y167{bottom:735.949333pt;}
.y103{bottom:740.332754pt;}
.yf0{bottom:745.171865pt;}
.y1b8{bottom:745.398133pt;}
.ydc{bottom:746.229733pt;}
.yda{bottom:746.229920pt;}
.y145{bottom:746.230351pt;}
.y165{bottom:746.232403pt;}
.y89{bottom:748.724054pt;}
.ydb{bottom:751.521067pt;}
.y102{bottom:755.828912pt;}
.yef{bottom:760.668023pt;}
.yd9{bottom:761.726078pt;}
.y144{bottom:761.726508pt;}
.y164{bottom:761.728561pt;}
.y88{bottom:764.069578pt;}
.yc{bottom:764.371467pt;}
.ya{bottom:764.371613pt;}
.yb{bottom:769.284800pt;}
.y101{bottom:771.325069pt;}
.yee{bottom:776.239497pt;}
.y143{bottom:777.297983pt;}
.y163{bottom:777.300035pt;}
.y183{bottom:777.520347pt;}
.y87{bottom:779.338589pt;}
.y8{bottom:780.321067pt;}
.y184{bottom:782.815467pt;}
.yd8{bottom:782.891328pt;}
.y9{bottom:785.234400pt;}
.y100{bottom:786.745909pt;}
.y1f4{bottom:788.334577pt;}
.y201{bottom:788.335773pt;}
.yed{bottom:791.735655pt;}
.y142{bottom:792.794140pt;}
.y162{bottom:792.796192pt;}
.y182{bottom:792.941187pt;}
.y86{bottom:794.607600pt;}
.y84{bottom:794.607922pt;}
.y1{bottom:797.631200pt;}
.y1b7{bottom:797.708901pt;}
.y85{bottom:799.899067pt;}
.yff{bottom:802.242067pt;}
.y1f3{bottom:802.923345pt;}
.y200{bottom:802.924541pt;}
.yec{bottom:807.307129pt;}
.yd7{bottom:807.307161pt;}
.y181{bottom:808.362028pt;}
.y141{bottom:808.365614pt;}
.y83{bottom:809.876933pt;}
.y81{bottom:809.878050pt;}
.y3{bottom:810.860040pt;}
.y161{bottom:813.961442pt;}
.y1b6{bottom:814.187765pt;}
.y82{bottom:815.168267pt;}
.y1f2{bottom:817.512113pt;}
.y1ff{bottom:817.513309pt;}
.yeb{bottom:822.878603pt;}
.yd6{bottom:822.878635pt;}
.yfe{bottom:823.332000pt;}
.y180{bottom:823.858185pt;}
.y140{bottom:823.937089pt;}
.y80{bottom:825.147061pt;}
.y1b5{bottom:830.666629pt;}
.y1f1{bottom:832.176198pt;}
.y1fe{bottom:832.177393pt;}
.y2{bottom:837.467467pt;}
.yea{bottom:838.374761pt;}
.yd5{bottom:838.374792pt;}
.y160{bottom:838.377275pt;}
.y17f{bottom:839.279026pt;}
.y13f{bottom:839.433246pt;}
.y7f{bottom:840.491389pt;}
.y1f0{bottom:846.764966pt;}
.y1fd{bottom:846.766161pt;}
.y1b4{bottom:847.145493pt;}
.yfd{bottom:848.503733pt;}
.yd2{bottom:853.946109pt;}
.ye9{bottom:853.946235pt;}
.yd4{bottom:853.946267pt;}
.y15f{bottom:853.948749pt;}
.y17e{bottom:854.699866pt;}
.y7e{bottom:855.760400pt;}
.y7c{bottom:855.764980pt;}
.yd3{bottom:859.237600pt;}
.y13e{bottom:860.598496pt;}
.y7d{bottom:861.051733pt;}
.y1ee{bottom:861.353734pt;}
.y1fc{bottom:861.354929pt;}
.y1ef{bottom:861.731514pt;}
.y1b3{bottom:863.624357pt;}
.yd1{bottom:869.442267pt;}
.ye8{bottom:869.442392pt;}
.ycf{bottom:869.442753pt;}
.y15e{bottom:869.444907pt;}
.y17d{bottom:870.120707pt;}
.y7b{bottom:871.033991pt;}
.yd0{bottom:874.809200pt;}
.y1ec{bottom:876.019014pt;}
.y1fb{bottom:876.020209pt;}
.y1ed{bottom:876.094331pt;}
.y1b2{bottom:880.103221pt;}
.ye7{bottom:885.013867pt;}
.yce{bottom:885.014227pt;}
.y13d{bottom:885.014329pt;}
.ye5{bottom:885.016102pt;}
.y15d{bottom:885.016381pt;}
.y17c{bottom:885.541547pt;}
.y7a{bottom:886.303002pt;}
.y6d{bottom:888.706667pt;}
.ye6{bottom:890.305200pt;}
.y1eb{bottom:890.607782pt;}
.y1fa{bottom:890.608977pt;}
.y68{bottom:892.346133pt;}
.y1b1{bottom:896.204304pt;}
.ycd{bottom:900.585702pt;}
.y13c{bottom:900.585803pt;}
.ye4{bottom:900.587577pt;}
.y15c{bottom:900.587855pt;}
.yfc{bottom:900.811754pt;}
.y17b{bottom:900.962388pt;}
.y79{bottom:901.572013pt;}
.y6b{bottom:902.040000pt;}
.y1ea{bottom:905.196549pt;}
.y1f9{bottom:905.197745pt;}
.y1b0{bottom:912.683168pt;}
.ycc{bottom:916.081859pt;}
.y13b{bottom:916.081961pt;}
.ye3{bottom:916.083734pt;}
.y15b{bottom:916.084013pt;}
.yfb{bottom:916.307911pt;}
.y17a{bottom:916.458545pt;}
.y78{bottom:916.841024pt;}
.y1e9{bottom:919.785317pt;}
.y1f8{bottom:919.786513pt;}
.y1af{bottom:929.086715pt;}
.ycb{bottom:931.653333pt;}
.yc9{bottom:931.653435pt;}
.ye2{bottom:931.655208pt;}
.y15a{bottom:931.655487pt;}
.yfa{bottom:931.804069pt;}
.y179{bottom:931.879386pt;}
.y77{bottom:932.186548pt;}
.y1e8{bottom:934.450598pt;}
.y1f7{bottom:934.451793pt;}
.yca{bottom:936.944667pt;}
.y1ae{bottom:945.565579pt;}
.y67{bottom:946.393467pt;}
.yc8{bottom:947.149592pt;}
.ye1{bottom:947.151366pt;}
.y159{bottom:947.151645pt;}
.yf9{bottom:947.224909pt;}
.y178{bottom:947.300226pt;}
.y76{bottom:947.455559pt;}
.y1e7{bottom:949.039365pt;}
.y1f6{bottom:949.040561pt;}
.y1ad{bottom:962.044443pt;}
.yc7{bottom:962.721067pt;}
.ye0{bottom:962.722840pt;}
.y158{bottom:962.723119pt;}
.y75{bottom:962.724570pt;}
.y1e6{bottom:963.628133pt;}
.y1f5{bottom:963.629329pt;}
.yc5{bottom:995.527333pt;}
.yc6{bottom:1015.373333pt;}
.h19{height:10.666667pt;}
.h17{height:14.666667pt;}
.he{height:21.618624pt;}
.h7{height:27.545301pt;}
.hc{height:28.433630pt;}
.h1a{height:30.112000pt;}
.h10{height:32.313182pt;}
.hf{height:32.432819pt;}
.h11{height:33.176691pt;}
.h4{height:34.850403pt;}
.h1b{height:34.887597pt;}
.h2{height:34.924790pt;}
.h5{height:34.961984pt;}
.h14{height:39.777863pt;}
.h1c{height:39.777871pt;}
.h8{height:39.829746pt;}
.h9{height:39.914762pt;}
.hd{height:41.842733pt;}
.h16{height:41.875000pt;}
.hb{height:42.655678pt;}
.h1d{height:44.951051pt;}
.h18{height:45.168000pt;}
.h6{height:49.786433pt;}
.ha{height:59.807380pt;}
.h3{height:72.422112pt;}
.h13{height:74.919253pt;}
.h12{height:85.898370pt;}
.h15{height:426.653333pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w2{width:13.333333pt;}
.w5{width:46.773333pt;}
.w4{width:49.426667pt;}
.w6{width:73.653333pt;}
.w3{width:110.480000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:4.000000pt;}
.x24{left:10.666667pt;}
.x1{left:56.466133pt;}
.x1e{left:60.094400pt;}
.x21{left:62.588933pt;}
.x22{left:67.048800pt;}
.x44{left:68.409467pt;}
.x15{left:72.414067pt;}
.x59{left:74.910227pt;}
.x58{left:75.892933pt;}
.x18{left:82.242533pt;}
.x20{left:98.570053pt;}
.x5b{left:104.391421pt;}
.x3b{left:109.152667pt;}
.x3c{left:124.800000pt;}
.x1f{left:140.901213pt;}
.x41{left:155.943200pt;}
.x45{left:166.299200pt;}
.x42{left:176.730667pt;}
.x39{left:183.684933pt;}
.x3f{left:188.522800pt;}
.x3a{left:198.651867pt;}
.x40{left:206.815733pt;}
.x16{left:208.629867pt;}
.x17{left:226.620400pt;}
.x2{left:229.114933pt;}
.x3d{left:240.907067pt;}
.x3e{left:256.629867pt;}
.x49{left:267.288133pt;}
.x13{left:276.812533pt;}
.x14{left:287.622000pt;}
.x4a{left:296.919600pt;}
.x3{left:305.234533pt;}
.x4{left:313.398400pt;}
.xd{left:322.166800pt;}
.x11{left:336.226667pt;}
.x4d{left:338.116400pt;}
.x48{left:343.483333pt;}
.x5a{left:345.979408pt;}
.x12{left:348.018800pt;}
.x4e{left:353.310133pt;}
.x46{left:356.409333pt;}
.x4f{left:365.858133pt;}
.x47{left:372.661333pt;}
.x5{left:396.623600pt;}
.xe{left:398.059733pt;}
.x6{left:404.787333pt;}
.xf{left:406.223467pt;}
.x1a{left:407.131013pt;}
.x51{left:413.102267pt;}
.x30{left:419.072720pt;}
.x19{left:423.080267pt;}
.x52{left:425.347841pt;}
.x57{left:426.629425pt;}
.x29{left:428.673867pt;}
.x2a{left:440.844000pt;}
.x53{left:478.035016pt;}
.x54{left:480.681868pt;}
.x7{left:489.070800pt;}
.x4b{left:491.640800pt;}
.x8{left:497.234533pt;}
.x4c{left:505.927467pt;}
.x50{left:509.406549pt;}
.x35{left:514.242400pt;}
.x2e{left:518.399867pt;}
.x10{left:520.592000pt;}
.x36{left:531.703733pt;}
.x33{left:534.878533pt;}
.x2f{left:536.012400pt;}
.x34{left:546.973067pt;}
.x1b{left:550.147867pt;}
.x1c{left:578.418800pt;}
.x9{left:590.664400pt;}
.x56{left:595.576036pt;}
.xa{left:598.828267pt;}
.x25{left:603.213333pt;}
.x31{left:618.330207pt;}
.x1d{left:622.790400pt;}
.x55{left:633.903979pt;}
.x43{left:641.083333pt;}
.x37{left:646.752667pt;}
.x26{left:654.266667pt;}
.x38{left:662.706667pt;}
.xb{left:663.911600pt;}
.x2d{left:668.825067pt;}
.xc{left:672.075333pt;}
.x32{left:674.721061pt;}
.x27{left:692.560400pt;}
.x28{left:707.603067pt;}
.x2b{left:728.692667pt;}
.x2c{left:733.303733pt;}
}


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