
/* 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_aa0996e031b1.woff")format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_b0595d85bfa8.woff")format("woff");}.ff2{font-family:ff2;line-height:1.079590;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_580462e098a1.woff")format("woff");}.ff3{font-family:ff3;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_5771bfeabbcb.woff")format("woff");}.ff4{font-family:ff4;line-height:1.079590;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_8d10f41ee6a9.woff")format("woff");}.ff5{font-family:ff5;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_e195804c58cf.woff")format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_2d088eb4c9bd.woff")format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_7f20eb0085de.woff")format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_98d390ad7923.woff")format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_fb7187d4f3aa.woff")format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_8d10f41ee6a9.woff")format("woff");}.ffb{font-family:ffb;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_1a68763949b5.woff")format("woff");}.ffc{font-family:ffc;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_775a250c92c4.woff")format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_8d10f41ee6a9.woff")format("woff");}.ffe{font-family:ffe;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_e9f889743bf5.woff")format("woff");}.fff{font-family:fff;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url("fonts/font_0015_52deedb2614d.woff")format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url("fonts/font_0016_3a2e2fc17034.woff")format("woff");}.ff11{font-family:ff11;line-height:0.923340;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_8d10f41ee6a9.woff")format("woff");}.ff12{font-family:ff12;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url("fonts/font_0018_aeb323b627fb.woff")format("woff");}.ff13{font-family:ff13;line-height:1.070312;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_0c23d92d75fd.woff")format("woff");}.ff14{font-family:ff14;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url("fonts/font_0020_6a9b5e19223c.woff")format("woff");}.ff15{font-family:ff15;line-height:0.935547;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_067726b83ccd.woff")format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.239997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239997,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.481848px;}
.v1{vertical-align:27.971400px;}
.v2{vertical-align:30.231648px;}
.ls38{letter-spacing:-0.043200px;}
.ls39{letter-spacing:-0.014400px;}
.ls2a{letter-spacing:-0.009600px;}
.ls2c{letter-spacing:-0.007200px;}
.ls2b{letter-spacing:-0.005400px;}
.ls1{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.012000px;}
.ls3a{letter-spacing:0.014400px;}
.ls29{letter-spacing:0.031104px;}
.ls4{letter-spacing:0.050544px;}
.lsd{letter-spacing:0.058320px;}
.ls6{letter-spacing:0.066096px;}
.ls2f{letter-spacing:0.223344px;}
.ls30{letter-spacing:0.232848px;}
.ls2e{letter-spacing:0.251856px;}
.ls26{letter-spacing:0.267264px;}
.ls2d{letter-spacing:0.278880px;}
.ls1b{letter-spacing:0.295200px;}
.lsf{letter-spacing:0.303696px;}
.ls7{letter-spacing:0.318816px;}
.lse{letter-spacing:0.319680px;}
.ls3f{letter-spacing:0.325008px;}
.ls23{letter-spacing:0.340992px;}
.ls25{letter-spacing:0.346320px;}
.ls3c{letter-spacing:0.348336px;}
.ls37{letter-spacing:0.356976px;}
.ls40{letter-spacing:0.362304px;}
.ls34{letter-spacing:0.371952px;}
.ls24{letter-spacing:0.372960px;}
.ls35{letter-spacing:0.377856px;}
.ls27{letter-spacing:0.383760px;}
.ls31{letter-spacing:0.389664px;}
.ls17{letter-spacing:0.395568px;}
.ls33{letter-spacing:0.400320px;}
.ls16{letter-spacing:0.401472px;}
.ls2{letter-spacing:0.406320px;}
.ls19{letter-spacing:0.407376px;}
.ls11{letter-spacing:0.413280px;}
.ls21{letter-spacing:0.419184px;}
.ls3{letter-spacing:0.425088px;}
.ls1d{letter-spacing:0.430992px;}
.ls13{letter-spacing:0.436896px;}
.ls15{letter-spacing:0.442800px;}
.ls18{letter-spacing:0.448704px;}
.lsa{letter-spacing:0.454608px;}
.ls5{letter-spacing:0.460512px;}
.lsc{letter-spacing:0.466416px;}
.ls1c{letter-spacing:0.472320px;}
.ls1f{letter-spacing:0.478224px;}
.ls14{letter-spacing:0.484128px;}
.ls1a{letter-spacing:0.490032px;}
.ls20{letter-spacing:0.495936px;}
.ls12{letter-spacing:0.501840px;}
.ls1e{letter-spacing:0.507744px;}
.ls36{letter-spacing:0.513648px;}
.ls9{letter-spacing:0.519552px;}
.ls22{letter-spacing:0.525456px;}
.lsb{letter-spacing:0.560880px;}
.ls3d{letter-spacing:0.589680px;}
.ls10{letter-spacing:0.590400px;}
.ls3e{letter-spacing:0.609120px;}
.ls3b{letter-spacing:0.641520px;}
.ls8{letter-spacing:24.046992px;}
.ls32{letter-spacing:26.742000px;}
.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;}
}
.ws8{word-spacing:-17.003520px;}
.ws9{word-spacing:-16.914960px;}
.ws6{word-spacing:-16.879536px;}
.ws2{word-spacing:-12.835200px;}
.ws5{word-spacing:-10.874736px;}
.ws7{word-spacing:-10.866960px;}
.ws4{word-spacing:-10.859184px;}
.wsa{word-spacing:-10.839744px;}
.ws3{word-spacing:-10.008000px;}
.ws55{word-spacing:-8.406720px;}
.ws54{word-spacing:-3.945600px;}
.wsb4{word-spacing:-1.281600px;}
.ws51{word-spacing:-1.185600px;}
.ws114{word-spacing:-0.356400px;}
.ws12e{word-spacing:-0.239760px;}
.ws120{word-spacing:-0.220320px;}
.ws4a{word-spacing:-0.212544px;}
.ws2b{word-spacing:-0.200736px;}
.ws3d{word-spacing:-0.194832px;}
.ws156{word-spacing:-0.188928px;}
.wsb7{word-spacing:-0.183024px;}
.ws14{word-spacing:-0.177120px;}
.ws86{word-spacing:-0.171216px;}
.wscc{word-spacing:-0.165312px;}
.ws5f{word-spacing:-0.159408px;}
.ws32{word-spacing:-0.153504px;}
.wsb{word-spacing:-0.149184px;}
.ws15{word-spacing:-0.147600px;}
.ws50{word-spacing:-0.143856px;}
.ws7e{word-spacing:-0.141696px;}
.ws12{word-spacing:-0.138528px;}
.ws71{word-spacing:-0.135792px;}
.wsdd{word-spacing:-0.129888px;}
.wsc{word-spacing:-0.127872px;}
.ws4f{word-spacing:-0.123984px;}
.ws15f{word-spacing:-0.122544px;}
.wsd7{word-spacing:-0.118080px;}
.ws101{word-spacing:-0.112176px;}
.wsd{word-spacing:-0.108576px;}
.ws57{word-spacing:-0.095040px;}
.ws69{word-spacing:-0.094464px;}
.ws56{word-spacing:-0.085536px;}
.ws58{word-spacing:-0.080784px;}
.ws97{word-spacing:-0.076752px;}
.ws0{word-spacing:-0.072000px;}
.ws64{word-spacing:-0.064944px;}
.ws13{word-spacing:-0.063936px;}
.ws59{word-spacing:-0.036000px;}
.ws113{word-spacing:-0.023616px;}
.ws33{word-spacing:-0.021600px;}
.ws1{word-spacing:0.000000px;}
.ws10c{word-spacing:0.007200px;}
.ws53{word-spacing:0.010800px;}
.ws5a{word-spacing:0.014400px;}
.ws52{word-spacing:0.016200px;}
.wsb3{word-spacing:0.028800px;}
.ws15d{word-spacing:0.106560px;}
.ws146{word-spacing:0.218448px;}
.ws4b{word-spacing:0.324720px;}
.ws13a{word-spacing:0.401472px;}
.ws119{word-spacing:0.448704px;}
.ws38{word-spacing:0.519552px;}
.wsd0{word-spacing:0.525456px;}
.ws157{word-spacing:0.732096px;}
.ws107{word-spacing:0.974160px;}
.ws15c{word-spacing:0.991872px;}
.ws17{word-spacing:1.015488px;}
.wsfd{word-spacing:1.281168px;}
.ws1c{word-spacing:1.369728px;}
.ws1d{word-spacing:1.440576px;}
.ws74{word-spacing:1.535040px;}
.ws61{word-spacing:1.564560px;}
.wse4{word-spacing:1.588176px;}
.ws48{word-spacing:1.659024px;}
.wsb9{word-spacing:1.771200px;}
.ws152{word-spacing:1.777104px;}
.ws31{word-spacing:1.783008px;}
.ws1e{word-spacing:2.036880px;}
.wsd4{word-spacing:2.125440px;}
.ws6b{word-spacing:2.172672px;}
.wsa8{word-spacing:2.420640px;}
.ws142{word-spacing:2.538720px;}
.ws147{word-spacing:2.544624px;}
.wsfa{word-spacing:2.591856px;}
.ws35{word-spacing:2.597760px;}
.wsae{word-spacing:2.674512px;}
.wsbb{word-spacing:2.704032px;}
.wsf8{word-spacing:3.046464px;}
.ws6a{word-spacing:3.176352px;}
.wsc8{word-spacing:3.223584px;}
.ws67{word-spacing:3.241296px;}
.ws85{word-spacing:3.259008px;}
.wsce{word-spacing:3.276720px;}
.ws87{word-spacing:3.583728px;}
.ws14d{word-spacing:3.690000px;}
.ws103{word-spacing:3.713616px;}
.ws111{word-spacing:3.725424px;}
.wsdf{word-spacing:3.926160px;}
.ws82{word-spacing:4.120992px;}
.ws75{word-spacing:4.126896px;}
.ws132{word-spacing:4.168224px;}
.ws143{word-spacing:4.174128px;}
.wsed{word-spacing:4.333536px;}
.wsf6{word-spacing:4.380768px;}
.wse2{word-spacing:4.404384px;}
.ws158{word-spacing:4.516560px;}
.ws1f{word-spacing:4.616928px;}
.ws7d{word-spacing:4.693680px;}
.ws2c{word-spacing:4.729104px;}
.ws145{word-spacing:4.799952px;}
.ws88{word-spacing:4.858992px;}
.ws9f{word-spacing:4.864896px;}
.wsdc{word-spacing:4.876704px;}
.ws136{word-spacing:4.894416px;}
.ws13d{word-spacing:4.906224px;}
.ws66{word-spacing:5.042016px;}
.wsab{word-spacing:5.059728px;}
.ws70{word-spacing:5.260464px;}
.ws100{word-spacing:5.567472px;}
.ws121{word-spacing:5.579280px;}
.ws5b{word-spacing:5.591088px;}
.wscd{word-spacing:5.602896px;}
.ws42{word-spacing:5.673744px;}
.ws29{word-spacing:5.732784px;}
.wse3{word-spacing:6.022080px;}
.ws14f{word-spacing:6.128352px;}
.ws2a{word-spacing:6.323184px;}
.ws137{word-spacing:6.340896px;}
.ws2e{word-spacing:6.376320px;}
.wseb{word-spacing:6.541632px;}
.wsb0{word-spacing:6.553440px;}
.wsd3{word-spacing:6.571152px;}
.ws15b{word-spacing:6.577056px;}
.wsd5{word-spacing:6.972624px;}
.ws49{word-spacing:6.990336px;}
.ws79{word-spacing:7.013952px;}
.ws10e{word-spacing:7.043472px;}
.ws8c{word-spacing:7.208784px;}
.ws92{word-spacing:7.563024px;}
.ws3c{word-spacing:7.580736px;}
.ws108{word-spacing:7.598448px;}
.ws7f{word-spacing:7.657488px;}
.ws6c{word-spacing:7.681104px;}
.wsd9{word-spacing:7.834608px;}
.ws27{word-spacing:7.870032px;}
.ws28{word-spacing:7.881840px;}
.ws26{word-spacing:7.893648px;}
.wsbd{word-spacing:7.994016px;}
.ws12f{word-spacing:8.011728px;}
.ws83{word-spacing:8.489952px;}
.wsc4{word-spacing:8.531280px;}
.ws89{word-spacing:8.590320px;}
.wsff{word-spacing:8.743824px;}
.ws153{word-spacing:8.773344px;}
.wse0{word-spacing:8.802864px;}
.ws11a{word-spacing:8.808768px;}
.ws21{word-spacing:8.814672px;}
.ws20{word-spacing:8.820576px;}
.ws116{word-spacing:8.838288px;}
.ws124{word-spacing:8.926848px;}
.ws77{word-spacing:9.027216px;}
.wscb{word-spacing:9.068544px;}
.ws81{word-spacing:9.098064px;}
.ws7c{word-spacing:9.192528px;}
.ws11d{word-spacing:9.322416px;}
.ws118{word-spacing:9.346032px;}
.wsaa{word-spacing:9.351936px;}
.wsad{word-spacing:9.363744px;}
.wsb5{word-spacing:9.912816px;}
.wsa9{word-spacing:9.954144px;}
.ws104{word-spacing:10.308384px;}
.wsd6{word-spacing:10.337904px;}
.ws9b{word-spacing:10.408752px;}
.ws9a{word-spacing:10.692144px;}
.ws36{word-spacing:10.727568px;}
.ws68{word-spacing:10.745280px;}
.ws72{word-spacing:10.798416px;}
.wsf7{word-spacing:10.845648px;}
.ws14b{word-spacing:10.916496px;}
.wsa3{word-spacing:10.963728px;}
.wsfc{word-spacing:10.993248px;}
.ws150{word-spacing:10.999152px;}
.ws91{word-spacing:11.134944px;}
.ws94{word-spacing:11.188080px;}
.wsc7{word-spacing:11.229408px;}
.ws5e{word-spacing:11.247120px;}
.ws117{word-spacing:11.412432px;}
.ws1b{word-spacing:11.949696px;}
.ws1a{word-spacing:11.979216px;}
.ws130{word-spacing:12.002832px;}
.ws13b{word-spacing:12.274416px;}
.ws129{word-spacing:12.333456px;}
.ws11c{word-spacing:12.492864px;}
.wsc1{word-spacing:12.516480px;}
.ws6e{word-spacing:12.599136px;}
.ws106{word-spacing:12.628656px;}
.ws47{word-spacing:12.976992px;}
.wsbf{word-spacing:13.183632px;}
.ws4d{word-spacing:13.213152px;}
.ws12a{word-spacing:13.219056px;}
.wsc5{word-spacing:13.230864px;}
.ws18{word-spacing:13.549680px;}
.ws19{word-spacing:13.573296px;}
.ws8e{word-spacing:13.720896px;}
.ws10b{word-spacing:13.726800px;}
.wsec{word-spacing:13.750416px;}
.wsaf{word-spacing:13.791744px;}
.ws115{word-spacing:14.051520px;}
.wsac{word-spacing:14.340816px;}
.ws159{word-spacing:14.376240px;}
.wsda{word-spacing:14.659632px;}
.ws105{word-spacing:14.665536px;}
.ws45{word-spacing:14.689152px;}
.ws44{word-spacing:14.700960px;}
.ws46{word-spacing:14.771808px;}
.ws154{word-spacing:14.966640px;}
.ws8a{word-spacing:15.196896px;}
.ws43{word-spacing:15.261840px;}
.ws11f{word-spacing:15.627888px;}
.ws22{word-spacing:15.716448px;}
.ws23{word-spacing:15.745968px;}
.ws34{word-spacing:15.822720px;}
.ws24{word-spacing:15.940800px;}
.ws7b{word-spacing:15.970320px;}
.ws62{word-spacing:16.088400px;}
.ws78{word-spacing:16.147440px;}
.wsf3{word-spacing:16.295040px;}
.ws4c{word-spacing:16.460352px;}
.ws3e{word-spacing:16.478064px;}
.wsf4{word-spacing:16.507584px;}
.ws14c{word-spacing:16.997616px;}
.wsee{word-spacing:17.038944px;}
.ws95{word-spacing:17.086176px;}
.ws110{word-spacing:17.528976px;}
.wsf1{word-spacing:17.841888px;}
.wsb2{word-spacing:17.924544px;}
.wsf0{word-spacing:18.101664px;}
.ws6d{word-spacing:18.231552px;}
.wsb6{word-spacing:18.597600px;}
.ws144{word-spacing:18.668448px;}
.ws141{word-spacing:19.241136px;}
.wsdb{word-spacing:19.247040px;}
.wse9{word-spacing:19.264752px;}
.ws14e{word-spacing:19.441872px;}
.wsa7{word-spacing:19.471392px;}
.ws98{word-spacing:19.813824px;}
.ws125{word-spacing:19.890576px;}
.wsd8{word-spacing:19.943712px;}
.ws140{word-spacing:19.949616px;}
.ws127{word-spacing:20.380608px;}
.wsa6{word-spacing:20.640384px;}
.ws5d{word-spacing:21.207168px;}
.wse6{word-spacing:21.248496px;}
.wsc6{word-spacing:21.927456px;}
.ws16{word-spacing:22.281696px;}
.ws40{word-spacing:22.405680px;}
.wsba{word-spacing:22.647744px;}
.ws65{word-spacing:22.700880px;}
.ws123{word-spacing:22.736304px;}
.wsd1{word-spacing:22.742208px;}
.ws139{word-spacing:23.196816px;}
.ws126{word-spacing:23.220432px;}
.ws128{word-spacing:23.261760px;}
.ws11{word-spacing:23.492016px;}
.ws10{word-spacing:23.527440px;}
.wsf{word-spacing:23.616000px;}
.wse{word-spacing:23.669136px;}
.ws10d{word-spacing:23.757696px;}
.wsfb{word-spacing:23.787216px;}
.ws63{word-spacing:23.804928px;}
.ws131{word-spacing:23.846256px;}
.ws90{word-spacing:23.999760px;}
.ws135{word-spacing:24.348096px;}
.ws25{word-spacing:24.542928px;}
.ws8d{word-spacing:24.844032px;}
.ws7a{word-spacing:25.275024px;}
.ws30{word-spacing:26.284608px;}
.wsc2{word-spacing:26.568000px;}
.wse1{word-spacing:26.627040px;}
.ws122{word-spacing:27.022608px;}
.ws41{word-spacing:27.052128px;}
.ws73{word-spacing:27.412272px;}
.ws13c{word-spacing:27.530352px;}
.ws8f{word-spacing:27.902304px;}
.ws148{word-spacing:28.368720px;}
.ws3a{word-spacing:28.445472px;}
.ws133{word-spacing:28.569456px;}
.ws11e{word-spacing:29.071296px;}
.ws96{word-spacing:30.346560px;}
.ws9e{word-spacing:30.470544px;}
.wsea{word-spacing:30.582720px;}
.wsbe{word-spacing:30.736224px;}
.ws2d{word-spacing:30.748032px;}
.ws60{word-spacing:30.925152px;}
.ws151{word-spacing:31.037328px;}
.ws134{word-spacing:31.545072px;}
.ws11b{word-spacing:31.674960px;}
.ws9d{word-spacing:31.976064px;}
.wsfe{word-spacing:32.094144px;}
.wsa1{word-spacing:32.412960px;}
.wsd2{word-spacing:32.613696px;}
.ws12d{word-spacing:33.198192px;}
.wse5{word-spacing:33.221808px;}
.wsbc{word-spacing:33.257232px;}
.ws84{word-spacing:33.286752px;}
.ws14a{word-spacing:34.438032px;}
.ws155{word-spacing:34.727328px;}
.wsc3{word-spacing:34.975296px;}
.ws37{word-spacing:35.660160px;}
.ws4e{word-spacing:35.766432px;}
.wsb8{word-spacing:37.142064px;}
.wsf2{word-spacing:37.484496px;}
.ws2f{word-spacing:38.057184px;}
.ws109{word-spacing:38.222496px;}
.ws3f{word-spacing:38.476368px;}
.ws80{word-spacing:38.629872px;}
.ws3b{word-spacing:38.635776px;}
.wse7{word-spacing:39.403296px;}
.ws9c{word-spacing:40.932432px;}
.wsc9{word-spacing:41.629104px;}
.ws160{word-spacing:41.659632px;}
.ws149{word-spacing:42.337584px;}
.wsa2{word-spacing:43.288128px;}
.ws138{word-spacing:43.683696px;}
.ws93{word-spacing:44.640144px;}
.ws161{word-spacing:45.208080px;}
.wsc0{word-spacing:45.767808px;}
.ws5c{word-spacing:46.582560px;}
.ws13e{word-spacing:48.318336px;}
.ws76{word-spacing:48.578112px;}
.ws10f{word-spacing:49.203936px;}
.ws102{word-spacing:50.715360px;}
.wsf5{word-spacing:51.040080px;}
.ws39{word-spacing:54.057024px;}
.wsb1{word-spacing:54.913104px;}
.ws13f{word-spacing:55.804608px;}
.ws8b{word-spacing:57.971376px;}
.wsca{word-spacing:59.925600px;}
.wsde{word-spacing:59.943312px;}
.ws6f{word-spacing:60.539616px;}
.wsa0{word-spacing:60.811200px;}
.ws15a{word-spacing:67.712976px;}
.ws15e{word-spacing:71.416512px;}
.wse8{word-spacing:72.200016px;}
.wscf{word-spacing:73.274544px;}
.ws99{word-spacing:74.396304px;}
.wsf9{word-spacing:78.251616px;}
.ws12c{word-spacing:80.034624px;}
.wsef{word-spacing:82.254528px;}
.wsa4{word-spacing:86.611680px;}
.ws112{word-spacing:86.664816px;}
.ws10a{word-spacing:93.283200px;}
.wsa5{word-spacing:94.428576px;}
.ws12b{word-spacing:147.859776px;}
._4{margin-left:-20.016000px;}
._a{margin-left:-17.978400px;}
._d{margin-left:-14.500800px;}
._c{margin-left:-13.286400px;}
._9{margin-left:-10.982400px;}
._2{margin-left:-9.307200px;}
._7{margin-left:-7.977600px;}
._0{margin-left:-6.239016px;}
._8{margin-left:-5.133600px;}
._5{margin-left:-3.974400px;}
._6{margin-left:-2.671200px;}
._3{margin-left:-1.512000px;}
._b{width:1.207008px;}
._1{width:12.835200px;}
.fc6{color:rgb(129,160,215);}
.fc3{color:rgb(64,108,108);}
.fc5{color:rgb(95,95,95);}
.fc4{color:rgb(69,69,69);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(16,17,17);}
.fc0{color:rgb(28,28,27);}
.fsc{font-size:28.800000px;}
.fs7{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fsa{font-size:48.000000px;}
.fs1{font-size:48.972000px;}
.fs6{font-size:53.280000px;}
.fsb{font-size:54.000000px;}
.fs5{font-size:59.040000px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:64.800000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:83.520000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y12{bottom:42.520500px;}
.yda{bottom:106.092384px;}
.y188{bottom:106.789992px;}
.yad{bottom:106.852344px;}
.y4d{bottom:111.469674px;}
.y119{bottom:113.691804px;}
.y5b{bottom:116.146650px;}
.y151{bottom:116.870316px;}
.yd9{bottom:123.371916px;}
.y187{bottom:124.069524px;}
.yac{bottom:124.131876px;}
.y6{bottom:127.151250px;}
.y4c{bottom:128.749206px;}
.y5a{bottom:129.110208px;}
.y118{bottom:130.971336px;}
.y150{bottom:134.149848px;}
.yd8{bottom:140.651448px;}
.y186{bottom:141.349056px;}
.yab{bottom:141.411408px;}
.y64{bottom:142.513500px;}
.y4b{bottom:146.028738px;}
.y117{bottom:148.249392px;}
.y14f{bottom:151.429380px;}
.yd7{bottom:157.930980px;}
.y185{bottom:158.268444px;}
.yaa{bottom:158.329320px;}
.y4a{bottom:162.946650px;}
.y116{bottom:165.528924px;}
.y65{bottom:166.159500px;}
.y5c{bottom:166.759500px;}
.y14e{bottom:168.708912px;}
.yd6{bottom:174.848892px;}
.y184{bottom:175.546500px;}
.ya9{bottom:175.608852px;}
.y49{bottom:180.233664px;}
.y115{bottom:182.808456px;}
.y66{bottom:185.777700px;}
.y14d{bottom:185.988444px;}
.y5d{bottom:186.377100px;}
.yd5{bottom:192.128424px;}
.y183{bottom:192.838386px;}
.ya8{bottom:192.888384px;}
.y48{bottom:197.513196px;}
.y114{bottom:199.726368px;}
.y14c{bottom:203.266500px;}
.y67{bottom:205.395900px;}
.y5e{bottom:205.995900px;}
.yd4{bottom:209.407956px;}
.y182{bottom:210.116442px;}
.ya7{bottom:210.167916px;}
.y47{bottom:214.792728px;}
.y113{bottom:217.005900px;}
.y14b{bottom:220.905930px;}
.y68{bottom:225.012750px;}
.y5f{bottom:225.613500px;}
.yd3{bottom:226.687488px;}
.y181{bottom:227.394498px;}
.ya6{bottom:227.445972px;}
.y46{bottom:232.070784px;}
.y112{bottom:234.285432px;}
.y14a{bottom:239.626650px;}
.yd2{bottom:243.965544px;}
.y69{bottom:244.630950px;}
.y180{bottom:244.672554px;}
.ya5{bottom:244.725504px;}
.y60{bottom:245.232300px;}
.y45{bottom:249.350316px;}
.y111{bottom:251.564964px;}
.y149{bottom:258.352260px;}
.yd1{bottom:261.245076px;}
.y17f{bottom:261.952086px;}
.ya4{bottom:262.005036px;}
.y6a{bottom:264.249150px;}
.y61{bottom:264.849900px;}
.y44{bottom:266.629848px;}
.y110{bottom:268.844496px;}
.y148{bottom:275.631792px;}
.yd0{bottom:278.524608px;}
.y17e{bottom:279.231618px;}
.ya3{bottom:279.284568px;}
.y6b{bottom:283.867350px;}
.y43{bottom:283.909380px;}
.y62{bottom:284.467500px;}
.y10f{bottom:286.124028px;}
.y147{bottom:292.911324px;}
.ycf{bottom:295.802664px;}
.y17d{bottom:296.509674px;}
.ya2{bottom:296.564100px;}
.y42{bottom:301.188912px;}
.y10e{bottom:303.402084px;}
.y6c{bottom:303.485550px;}
.y63{bottom:304.086300px;}
.y146{bottom:310.189380px;}
.yce{bottom:313.082196px;}
.y17c{bottom:313.789206px;}
.ya1{bottom:313.843632px;}
.y6d{bottom:317.625000px;}
.y41{bottom:318.468444px;}
.y10d{bottom:320.681616px;}
.y145{bottom:327.468912px;}
.ycd{bottom:330.361728px;}
.y17b{bottom:331.068738px;}
.ya0{bottom:331.121688px;}
.y40{bottom:335.746500px;}
.y10c{bottom:337.961148px;}
.y59{bottom:342.589992px;}
.y144{bottom:344.748444px;}
.y11{bottom:344.875500px;}
.ycc{bottom:347.639784px;}
.y17a{bottom:347.986650px;}
.y9f{bottom:348.041076px;}
.y3f{bottom:353.386500px;}
.y10b{bottom:355.239204px;}
.y58{bottom:359.869524px;}
.y143{bottom:362.026500px;}
.ycb{bottom:364.559172px;}
.y9e{bottom:365.319132px;}
.y179{bottom:365.986650px;}
.y10{bottom:366.475500px;}
.y10a{bottom:372.518736px;}
.y3e{bottom:373.546500px;}
.y57{bottom:377.149056px;}
.y142{bottom:379.666500px;}
.yca{bottom:381.837228px;}
.y9d{bottom:382.597188px;}
.y178{bottom:386.165004px;}
.yf{bottom:388.075500px;}
.y109{bottom:389.438124px;}
.y3d{bottom:390.837300px;}
.y56{bottom:394.068444px;}
.yc9{bottom:399.115284px;}
.y9c{bottom:399.875244px;}
.y141{bottom:400.546500px;}
.y177{bottom:403.443060px;}
.y108{bottom:406.717656px;}
.y3c{bottom:408.115356px;}
.y55{bottom:411.346500px;}
.yc8{bottom:416.394816px;}
.y9b{bottom:417.153300px;}
.y176{bottom:420.722592px;}
.y140{bottom:421.066500px;}
.y107{bottom:423.997188px;}
.y3b{bottom:425.394888px;}
.y54{bottom:428.629998px;}
.yc7{bottom:433.674348px;}
.y9a{bottom:434.431356px;}
.y175{bottom:438.002124px;}
.y13f{bottom:441.240330px;}
.y106{bottom:441.276720px;}
.y3a{bottom:442.672944px;}
.y53{bottom:445.909530px;}
.ye{bottom:447.979500px;}
.yc6{bottom:450.952404px;}
.y99{bottom:451.709412px;}
.y1ad{bottom:455.266500px;}
.y174{bottom:455.281656px;}
.y13e{bottom:458.518386px;}
.y105{bottom:458.556252px;}
.y39{bottom:459.951000px;}
.y52{bottom:463.189062px;}
.yc5{bottom:468.231936px;}
.y98{bottom:468.987468px;}
.yd{bottom:469.579500px;}
.y173{bottom:472.199568px;}
.y1ac{bottom:475.786650px;}
.y13d{bottom:475.796442px;}
.y104{bottom:475.835784px;}
.y38{bottom:476.870388px;}
.y51{bottom:480.468594px;}
.yc4{bottom:485.511468px;}
.y97{bottom:486.265524px;}
.y172{bottom:489.479100px;}
.yc{bottom:491.179500px;}
.y1ab{bottom:492.343008px;}
.y13c{bottom:493.074498px;}
.y103{bottom:493.115316px;}
.y37{bottom:494.148444px;}
.y50{bottom:497.752158px;}
.yc3{bottom:502.789524px;}
.y96{bottom:503.543580px;}
.y171{bottom:506.757156px;}
.y1aa{bottom:507.823512px;}
.y13b{bottom:510.352554px;}
.y102{bottom:510.394848px;}
.y36{bottom:511.426500px;}
.yb{bottom:512.779500px;}
.y4f{bottom:515.031690px;}
.yc2{bottom:520.069056px;}
.y95{bottom:520.821636px;}
.y1a9{bottom:523.305348px;}
.y170{bottom:524.035212px;}
.y13a{bottom:527.632086px;}
.y101{bottom:527.674380px;}
.y35{bottom:529.426500px;}
.y4e{bottom:532.309746px;}
.ya{bottom:534.379500px;}
.yc1{bottom:537.348588px;}
.y94{bottom:538.099692px;}
.y1a8{bottom:539.145492px;}
.y16f{bottom:541.313268px;}
.y139{bottom:544.910142px;}
.y100{bottom:544.953912px;}
.y34{bottom:549.588444px;}
.yc0{bottom:554.266500px;}
.y1a7{bottom:554.625996px;}
.y93{bottom:555.019080px;}
.y9{bottom:555.979500px;}
.y16e{bottom:558.591324px;}
.y138{bottom:562.188198px;}
.yff{bottom:562.233444px;}
.y33{bottom:566.866500px;}
.y1a6{bottom:570.106500px;}
.ybf{bottom:571.185492px;}
.y92{bottom:572.298612px;}
.y16d{bottom:575.869380px;}
.y8{bottom:577.579500px;}
.y137{bottom:579.107586px;}
.yfe{bottom:579.151356px;}
.y32{bottom:584.158926px;}
.ybe{bottom:586.665996px;}
.y1a5{bottom:586.666650px;}
.y91{bottom:589.576668px;}
.y16c{bottom:593.148912px;}
.y136{bottom:596.387118px;}
.yfd{bottom:596.430888px;}
.y7{bottom:599.179500px;}
.y31{bottom:601.076838px;}
.ybd{bottom:602.146500px;}
.y90{bottom:606.856200px;}
.y1a4{bottom:607.546650px;}
.y16b{bottom:610.428444px;}
.y135{bottom:613.666650px;}
.yfc{bottom:613.710420px;}
.ybc{bottom:614.752230px;}
.y30{bottom:618.356370px;}
.y8f{bottom:624.134256px;}
.y16a{bottom:627.706500px;}
.y1a3{bottom:628.066650px;}
.y134{bottom:630.950394px;}
.yfb{bottom:630.988476px;}
.y2f{bottom:635.635902px;}
.y8e{bottom:641.412312px;}
.y169{bottom:644.986650px;}
.ydc{bottom:648.060750px;}
.y133{bottom:648.229926px;}
.y1a2{bottom:648.250908px;}
.yfa{bottom:648.268008px;}
.y2e{bottom:652.913958px;}
.y8d{bottom:658.691844px;}
.y168{bottom:663.728424px;}
.y132{bottom:665.509458px;}
.y1a1{bottom:665.528964px;}
.yf9{bottom:665.546064px;}
.ydb{bottom:669.063150px;}
.y2d{bottom:670.193490px;}
.y8c{bottom:675.971376px;}
.y167{bottom:681.006480px;}
.y131{bottom:682.788990px;}
.y1a0{bottom:682.807020px;}
.yf8{bottom:682.824120px;}
.y2c{bottom:687.473022px;}
.y5{bottom:689.592150px;}
.y8b{bottom:693.249432px;}
.y166{bottom:698.284536px;}
.y130{bottom:700.068522px;}
.y19f{bottom:700.085076px;}
.yf7{bottom:700.102176px;}
.y2b{bottom:704.751078px;}
.y8a{bottom:710.528964px;}
.y165{bottom:715.564068px;}
.y12f{bottom:717.348054px;}
.y19e{bottom:717.363132px;}
.yf6{bottom:717.380232px;}
.y4{bottom:719.592750px;}
.y2a{bottom:722.030610px;}
.y89{bottom:727.808496px;}
.y164{bottom:732.842124px;}
.y12e{bottom:734.627586px;}
.y19d{bottom:734.641188px;}
.yf5{bottom:734.658288px;}
.y29{bottom:739.310142px;}
.y88{bottom:744.726408px;}
.ydd{bottom:747.573000px;}
.y163{bottom:750.120180px;}
.y12d{bottom:751.907118px;}
.y19c{bottom:751.919244px;}
.yf4{bottom:751.937820px;}
.y28{bottom:756.588198px;}
.y87{bottom:762.005940px;}
.y162{bottom:767.398236px;}
.y12c{bottom:769.186650px;}
.y19b{bottom:769.197300px;}
.yf3{bottom:769.217352px;}
.y27{bottom:773.867730px;}
.ye0{bottom:777.442200px;}
.y86{bottom:779.285472px;}
.y3{bottom:781.284450px;}
.y161{bottom:784.676292px;}
.y12b{bottom:786.116148px;}
.y19a{bottom:786.116688px;}
.yf2{bottom:786.135264px;}
.y26{bottom:790.788594px;}
.y85{bottom:796.565004px;}
.ydf{bottom:798.442800px;}
.y160{bottom:801.954348px;}
.y12a{bottom:803.395680px;}
.y199{bottom:803.396220px;}
.yf1{bottom:803.414796px;}
.y25{bottom:808.066650px;}
.y2{bottom:811.285050px;}
.y84{bottom:813.844536px;}
.y15f{bottom:818.873736px;}
.yde{bottom:819.443400px;}
.y198{bottom:820.674276px;}
.y129{bottom:820.675212px;}
.yf0{bottom:820.694328px;}
.y83{bottom:831.124068px;}
.y15e{bottom:836.153268px;}
.y197{bottom:837.953808px;}
.y128{bottom:837.954744px;}
.yef{bottom:837.972384px;}
.y1{bottom:841.285650px;}
.y24{bottom:843.348444px;}
.y82{bottom:848.403600px;}
.y15d{bottom:853.431324px;}
.ybb{bottom:855.232482px;}
.y196{bottom:855.233340px;}
.y127{bottom:855.234276px;}
.yee{bottom:855.250440px;}
.y23{bottom:860.626500px;}
.y81{bottom:865.681656px;}
.y15c{bottom:870.710856px;}
.yba{bottom:872.510538px;}
.y195{bottom:872.512872px;}
.y126{bottom:872.513808px;}
.yed{bottom:872.528496px;}
.y22{bottom:877.185348px;}
.y80{bottom:882.961188px;}
.y15b{bottom:887.990388px;}
.yb9{bottom:889.788594px;}
.y194{bottom:889.790928px;}
.y125{bottom:889.793340px;}
.yec{bottom:889.806552px;}
.y21{bottom:892.665852px;}
.y7f{bottom:900.240720px;}
.y15a{bottom:905.268444px;}
.y193{bottom:907.070460px;}
.y124{bottom:907.071396px;}
.yeb{bottom:907.084608px;}
.yb8{bottom:907.142496px;}
.y20{bottom:908.505996px;}
.y7e{bottom:917.520252px;}
.y159{bottom:922.546500px;}
.y1f{bottom:923.986500px;}
.y192{bottom:924.349992px;}
.y123{bottom:924.350928px;}
.yea{bottom:924.362664px;}
.yb7{bottom:924.422028px;}
.y7d{bottom:934.438164px;}
.y158{bottom:940.186500px;}
.y1e{bottom:940.188444px;}
.y191{bottom:941.628048px;}
.y122{bottom:941.630460px;}
.ye9{bottom:941.640720px;}
.yb6{bottom:941.700084px;}
.y7c{bottom:951.716220px;}
.y1d{bottom:957.468738px;}
.y157{bottom:958.906650px;}
.y190{bottom:958.907580px;}
.y121{bottom:958.909992px;}
.ye8{bottom:958.918776px;}
.yb5{bottom:958.979616px;}
.y7b{bottom:968.994276px;}
.y1c{bottom:974.386650px;}
.y18f{bottom:975.826968px;}
.y120{bottom:975.827904px;}
.y156{bottom:975.833736px;}
.ye7{bottom:975.838164px;}
.yb4{bottom:975.899004px;}
.y7a{bottom:986.272332px;}
.y1b{bottom:992.745924px;}
.y18e{bottom:993.106500px;}
.y11f{bottom:993.107436px;}
.y155{bottom:993.111792px;}
.ye6{bottom:993.116220px;}
.yb3{bottom:993.177060px;}
.y79{bottom:1003.550388px;}
.y11e{bottom:1010.386968px;}
.y154{bottom:1010.389848px;}
.y18d{bottom:1010.391288px;}
.ye5{bottom:1010.394276px;}
.yb2{bottom:1010.455116px;}
.y1a{bottom:1016.866500px;}
.y78{bottom:1020.828444px;}
.y11d{bottom:1027.666500px;}
.y153{bottom:1027.669380px;}
.y18c{bottom:1027.670820px;}
.ye4{bottom:1027.672332px;}
.yb1{bottom:1027.734648px;}
.y77{bottom:1038.106500px;}
.y19{bottom:1040.626650px;}
.y152{bottom:1044.948912px;}
.y18b{bottom:1044.950352px;}
.ye3{bottom:1044.950388px;}
.y11c{bottom:1045.012380px;}
.yb0{bottom:1045.014180px;}
.y76{bottom:1055.746500px;}
.y18{bottom:1061.506650px;}
.ye2{bottom:1062.228444px;}
.y18a{bottom:1062.229884px;}
.y11b{bottom:1062.291912px;}
.yaf{bottom:1062.292236px;}
.y75{bottom:1076.626500px;}
.ye1{bottom:1079.506500px;}
.y189{bottom:1079.507940px;}
.y11a{bottom:1079.571444px;}
.yae{bottom:1079.571768px;}
.y17{bottom:1082.386650px;}
.y74{bottom:1095.707022px;}
.y16{bottom:1106.866770px;}
.y73{bottom:1109.746806px;}
.y72{bottom:1123.426626px;}
.y15{bottom:1126.666950px;}
.y71{bottom:1137.106446px;}
.y70{bottom:1155.826488px;}
.y14{bottom:1160.866950px;}
.y6f{bottom:1175.986848px;}
.y6e{bottom:1197.227100px;}
.y13{bottom:1197.587100px;}
.h16{height:34.619062px;}
.h13{height:34.968750px;}
.h6{height:35.640000px;}
.h12{height:38.789297px;}
.h9{height:38.815312px;}
.h14{height:39.339844px;}
.h1a{height:40.860703px;}
.hc{height:42.982734px;}
.h7{height:43.011562px;}
.h15{height:45.463098px;}
.h1d{height:45.813516px;}
.h18{height:46.385156px;}
.h1c{height:47.176172px;}
.ha{height:47.988281px;}
.h19{height:49.245910px;}
.h1b{height:50.766328px;}
.h17{height:52.114585px;}
.h5{height:52.148438px;}
.hf{height:52.417969px;}
.h10{height:52.453125px;}
.h8{height:53.586563px;}
.hd{height:58.537351px;}
.he{height:58.538527px;}
.h11{height:58.542055px;}
.hb{height:60.804844px;}
.h4{height:62.578125px;}
.h2{height:63.624355px;}
.h3{height:73.007812px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:108.447600px;}
.x8{left:131.095728px;}
.x3{left:161.575500px;}
.x7{left:204.891000px;}
.x2{left:284.883000px;}
.x1{left:286.476000px;}
.x6{left:374.247000px;}
.x4{left:433.944000px;}
.x9{left:473.489972px;}
.x14{left:476.472900px;}
.x17{left:478.734150px;}
.x16{left:480.184050px;}
.x23{left:481.964016px;}
.x15{left:483.236400px;}
.x13{left:488.482500px;}
.x19{left:499.763100px;}
.x18{left:501.252150px;}
.x20{left:523.597800px;}
.x22{left:534.777600px;}
.x1b{left:566.839500px;}
.x1f{left:569.703000px;}
.x21{left:571.107000px;}
.x1a{left:573.267900px;}
.x12{left:613.725300px;}
.xd{left:656.939700px;}
.xe{left:664.054500px;}
.x11{left:666.425700px;}
.x1d{left:690.241500px;}
.x10{left:692.511300px;}
.x1e{left:695.747700px;}
.xc{left:704.368500px;}
.xf{left:728.084100px;}
.xb{left:759.580500px;}
.x1c{left:788.488836px;}
.xa{left:791.486796px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.761643pt;}
.v1{vertical-align:24.863467pt;}
.v2{vertical-align:26.872576pt;}
.ls38{letter-spacing:-0.038400pt;}
.ls39{letter-spacing:-0.012800pt;}
.ls2a{letter-spacing:-0.008533pt;}
.ls2c{letter-spacing:-0.006400pt;}
.ls2b{letter-spacing:-0.004800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.010667pt;}
.ls3a{letter-spacing:0.012800pt;}
.ls29{letter-spacing:0.027648pt;}
.ls4{letter-spacing:0.044928pt;}
.lsd{letter-spacing:0.051840pt;}
.ls6{letter-spacing:0.058752pt;}
.ls2f{letter-spacing:0.198528pt;}
.ls30{letter-spacing:0.206976pt;}
.ls2e{letter-spacing:0.223872pt;}
.ls26{letter-spacing:0.237568pt;}
.ls2d{letter-spacing:0.247893pt;}
.ls1b{letter-spacing:0.262400pt;}
.lsf{letter-spacing:0.269952pt;}
.ls7{letter-spacing:0.283392pt;}
.lse{letter-spacing:0.284160pt;}
.ls3f{letter-spacing:0.288896pt;}
.ls23{letter-spacing:0.303104pt;}
.ls25{letter-spacing:0.307840pt;}
.ls3c{letter-spacing:0.309632pt;}
.ls37{letter-spacing:0.317312pt;}
.ls40{letter-spacing:0.322048pt;}
.ls34{letter-spacing:0.330624pt;}
.ls24{letter-spacing:0.331520pt;}
.ls35{letter-spacing:0.335872pt;}
.ls27{letter-spacing:0.341120pt;}
.ls31{letter-spacing:0.346368pt;}
.ls17{letter-spacing:0.351616pt;}
.ls33{letter-spacing:0.355840pt;}
.ls16{letter-spacing:0.356864pt;}
.ls2{letter-spacing:0.361173pt;}
.ls19{letter-spacing:0.362112pt;}
.ls11{letter-spacing:0.367360pt;}
.ls21{letter-spacing:0.372608pt;}
.ls3{letter-spacing:0.377856pt;}
.ls1d{letter-spacing:0.383104pt;}
.ls13{letter-spacing:0.388352pt;}
.ls15{letter-spacing:0.393600pt;}
.ls18{letter-spacing:0.398848pt;}
.lsa{letter-spacing:0.404096pt;}
.ls5{letter-spacing:0.409344pt;}
.lsc{letter-spacing:0.414592pt;}
.ls1c{letter-spacing:0.419840pt;}
.ls1f{letter-spacing:0.425088pt;}
.ls14{letter-spacing:0.430336pt;}
.ls1a{letter-spacing:0.435584pt;}
.ls20{letter-spacing:0.440832pt;}
.ls12{letter-spacing:0.446080pt;}
.ls1e{letter-spacing:0.451328pt;}
.ls36{letter-spacing:0.456576pt;}
.ls9{letter-spacing:0.461824pt;}
.ls22{letter-spacing:0.467072pt;}
.lsb{letter-spacing:0.498560pt;}
.ls3d{letter-spacing:0.524160pt;}
.ls10{letter-spacing:0.524800pt;}
.ls3e{letter-spacing:0.541440pt;}
.ls3b{letter-spacing:0.570240pt;}
.ls8{letter-spacing:21.375104pt;}
.ls32{letter-spacing:23.770667pt;}
.ws8{word-spacing:-15.114240pt;}
.ws9{word-spacing:-15.035520pt;}
.ws6{word-spacing:-15.004032pt;}
.ws2{word-spacing:-11.409067pt;}
.ws5{word-spacing:-9.666432pt;}
.ws7{word-spacing:-9.659520pt;}
.ws4{word-spacing:-9.652608pt;}
.wsa{word-spacing:-9.635328pt;}
.ws3{word-spacing:-8.896000pt;}
.ws55{word-spacing:-7.472640pt;}
.ws54{word-spacing:-3.507200pt;}
.wsb4{word-spacing:-1.139200pt;}
.ws51{word-spacing:-1.053867pt;}
.ws114{word-spacing:-0.316800pt;}
.ws12e{word-spacing:-0.213120pt;}
.ws120{word-spacing:-0.195840pt;}
.ws4a{word-spacing:-0.188928pt;}
.ws2b{word-spacing:-0.178432pt;}
.ws3d{word-spacing:-0.173184pt;}
.ws156{word-spacing:-0.167936pt;}
.wsb7{word-spacing:-0.162688pt;}
.ws14{word-spacing:-0.157440pt;}
.ws86{word-spacing:-0.152192pt;}
.wscc{word-spacing:-0.146944pt;}
.ws5f{word-spacing:-0.141696pt;}
.ws32{word-spacing:-0.136448pt;}
.wsb{word-spacing:-0.132608pt;}
.ws15{word-spacing:-0.131200pt;}
.ws50{word-spacing:-0.127872pt;}
.ws7e{word-spacing:-0.125952pt;}
.ws12{word-spacing:-0.123136pt;}
.ws71{word-spacing:-0.120704pt;}
.wsdd{word-spacing:-0.115456pt;}
.wsc{word-spacing:-0.113664pt;}
.ws4f{word-spacing:-0.110208pt;}
.ws15f{word-spacing:-0.108928pt;}
.wsd7{word-spacing:-0.104960pt;}
.ws101{word-spacing:-0.099712pt;}
.wsd{word-spacing:-0.096512pt;}
.ws57{word-spacing:-0.084480pt;}
.ws69{word-spacing:-0.083968pt;}
.ws56{word-spacing:-0.076032pt;}
.ws58{word-spacing:-0.071808pt;}
.ws97{word-spacing:-0.068224pt;}
.ws0{word-spacing:-0.064000pt;}
.ws64{word-spacing:-0.057728pt;}
.ws13{word-spacing:-0.056832pt;}
.ws59{word-spacing:-0.032000pt;}
.ws113{word-spacing:-0.020992pt;}
.ws33{word-spacing:-0.019200pt;}
.ws1{word-spacing:0.000000pt;}
.ws10c{word-spacing:0.006400pt;}
.ws53{word-spacing:0.009600pt;}
.ws5a{word-spacing:0.012800pt;}
.ws52{word-spacing:0.014400pt;}
.wsb3{word-spacing:0.025600pt;}
.ws15d{word-spacing:0.094720pt;}
.ws146{word-spacing:0.194176pt;}
.ws4b{word-spacing:0.288640pt;}
.ws13a{word-spacing:0.356864pt;}
.ws119{word-spacing:0.398848pt;}
.ws38{word-spacing:0.461824pt;}
.wsd0{word-spacing:0.467072pt;}
.ws157{word-spacing:0.650752pt;}
.ws107{word-spacing:0.865920pt;}
.ws15c{word-spacing:0.881664pt;}
.ws17{word-spacing:0.902656pt;}
.wsfd{word-spacing:1.138816pt;}
.ws1c{word-spacing:1.217536pt;}
.ws1d{word-spacing:1.280512pt;}
.ws74{word-spacing:1.364480pt;}
.ws61{word-spacing:1.390720pt;}
.wse4{word-spacing:1.411712pt;}
.ws48{word-spacing:1.474688pt;}
.wsb9{word-spacing:1.574400pt;}
.ws152{word-spacing:1.579648pt;}
.ws31{word-spacing:1.584896pt;}
.ws1e{word-spacing:1.810560pt;}
.wsd4{word-spacing:1.889280pt;}
.ws6b{word-spacing:1.931264pt;}
.wsa8{word-spacing:2.151680pt;}
.ws142{word-spacing:2.256640pt;}
.ws147{word-spacing:2.261888pt;}
.wsfa{word-spacing:2.303872pt;}
.ws35{word-spacing:2.309120pt;}
.wsae{word-spacing:2.377344pt;}
.wsbb{word-spacing:2.403584pt;}
.wsf8{word-spacing:2.707968pt;}
.ws6a{word-spacing:2.823424pt;}
.wsc8{word-spacing:2.865408pt;}
.ws67{word-spacing:2.881152pt;}
.ws85{word-spacing:2.896896pt;}
.wsce{word-spacing:2.912640pt;}
.ws87{word-spacing:3.185536pt;}
.ws14d{word-spacing:3.280000pt;}
.ws103{word-spacing:3.300992pt;}
.ws111{word-spacing:3.311488pt;}
.wsdf{word-spacing:3.489920pt;}
.ws82{word-spacing:3.663104pt;}
.ws75{word-spacing:3.668352pt;}
.ws132{word-spacing:3.705088pt;}
.ws143{word-spacing:3.710336pt;}
.wsed{word-spacing:3.852032pt;}
.wsf6{word-spacing:3.894016pt;}
.wse2{word-spacing:3.915008pt;}
.ws158{word-spacing:4.014720pt;}
.ws1f{word-spacing:4.103936pt;}
.ws7d{word-spacing:4.172160pt;}
.ws2c{word-spacing:4.203648pt;}
.ws145{word-spacing:4.266624pt;}
.ws88{word-spacing:4.319104pt;}
.ws9f{word-spacing:4.324352pt;}
.wsdc{word-spacing:4.334848pt;}
.ws136{word-spacing:4.350592pt;}
.ws13d{word-spacing:4.361088pt;}
.ws66{word-spacing:4.481792pt;}
.wsab{word-spacing:4.497536pt;}
.ws70{word-spacing:4.675968pt;}
.ws100{word-spacing:4.948864pt;}
.ws121{word-spacing:4.959360pt;}
.ws5b{word-spacing:4.969856pt;}
.wscd{word-spacing:4.980352pt;}
.ws42{word-spacing:5.043328pt;}
.ws29{word-spacing:5.095808pt;}
.wse3{word-spacing:5.352960pt;}
.ws14f{word-spacing:5.447424pt;}
.ws2a{word-spacing:5.620608pt;}
.ws137{word-spacing:5.636352pt;}
.ws2e{word-spacing:5.667840pt;}
.wseb{word-spacing:5.814784pt;}
.wsb0{word-spacing:5.825280pt;}
.wsd3{word-spacing:5.841024pt;}
.ws15b{word-spacing:5.846272pt;}
.wsd5{word-spacing:6.197888pt;}
.ws49{word-spacing:6.213632pt;}
.ws79{word-spacing:6.234624pt;}
.ws10e{word-spacing:6.260864pt;}
.ws8c{word-spacing:6.407808pt;}
.ws92{word-spacing:6.722688pt;}
.ws3c{word-spacing:6.738432pt;}
.ws108{word-spacing:6.754176pt;}
.ws7f{word-spacing:6.806656pt;}
.ws6c{word-spacing:6.827648pt;}
.wsd9{word-spacing:6.964096pt;}
.ws27{word-spacing:6.995584pt;}
.ws28{word-spacing:7.006080pt;}
.ws26{word-spacing:7.016576pt;}
.wsbd{word-spacing:7.105792pt;}
.ws12f{word-spacing:7.121536pt;}
.ws83{word-spacing:7.546624pt;}
.wsc4{word-spacing:7.583360pt;}
.ws89{word-spacing:7.635840pt;}
.wsff{word-spacing:7.772288pt;}
.ws153{word-spacing:7.798528pt;}
.wse0{word-spacing:7.824768pt;}
.ws11a{word-spacing:7.830016pt;}
.ws21{word-spacing:7.835264pt;}
.ws20{word-spacing:7.840512pt;}
.ws116{word-spacing:7.856256pt;}
.ws124{word-spacing:7.934976pt;}
.ws77{word-spacing:8.024192pt;}
.wscb{word-spacing:8.060928pt;}
.ws81{word-spacing:8.087168pt;}
.ws7c{word-spacing:8.171136pt;}
.ws11d{word-spacing:8.286592pt;}
.ws118{word-spacing:8.307584pt;}
.wsaa{word-spacing:8.312832pt;}
.wsad{word-spacing:8.323328pt;}
.wsb5{word-spacing:8.811392pt;}
.wsa9{word-spacing:8.848128pt;}
.ws104{word-spacing:9.163008pt;}
.wsd6{word-spacing:9.189248pt;}
.ws9b{word-spacing:9.252224pt;}
.ws9a{word-spacing:9.504128pt;}
.ws36{word-spacing:9.535616pt;}
.ws68{word-spacing:9.551360pt;}
.ws72{word-spacing:9.598592pt;}
.wsf7{word-spacing:9.640576pt;}
.ws14b{word-spacing:9.703552pt;}
.wsa3{word-spacing:9.745536pt;}
.wsfc{word-spacing:9.771776pt;}
.ws150{word-spacing:9.777024pt;}
.ws91{word-spacing:9.897728pt;}
.ws94{word-spacing:9.944960pt;}
.wsc7{word-spacing:9.981696pt;}
.ws5e{word-spacing:9.997440pt;}
.ws117{word-spacing:10.144384pt;}
.ws1b{word-spacing:10.621952pt;}
.ws1a{word-spacing:10.648192pt;}
.ws130{word-spacing:10.669184pt;}
.ws13b{word-spacing:10.910592pt;}
.ws129{word-spacing:10.963072pt;}
.ws11c{word-spacing:11.104768pt;}
.wsc1{word-spacing:11.125760pt;}
.ws6e{word-spacing:11.199232pt;}
.ws106{word-spacing:11.225472pt;}
.ws47{word-spacing:11.535104pt;}
.wsbf{word-spacing:11.718784pt;}
.ws4d{word-spacing:11.745024pt;}
.ws12a{word-spacing:11.750272pt;}
.wsc5{word-spacing:11.760768pt;}
.ws18{word-spacing:12.044160pt;}
.ws19{word-spacing:12.065152pt;}
.ws8e{word-spacing:12.196352pt;}
.ws10b{word-spacing:12.201600pt;}
.wsec{word-spacing:12.222592pt;}
.wsaf{word-spacing:12.259328pt;}
.ws115{word-spacing:12.490240pt;}
.wsac{word-spacing:12.747392pt;}
.ws159{word-spacing:12.778880pt;}
.wsda{word-spacing:13.030784pt;}
.ws105{word-spacing:13.036032pt;}
.ws45{word-spacing:13.057024pt;}
.ws44{word-spacing:13.067520pt;}
.ws46{word-spacing:13.130496pt;}
.ws154{word-spacing:13.303680pt;}
.ws8a{word-spacing:13.508352pt;}
.ws43{word-spacing:13.566080pt;}
.ws11f{word-spacing:13.891456pt;}
.ws22{word-spacing:13.970176pt;}
.ws23{word-spacing:13.996416pt;}
.ws34{word-spacing:14.064640pt;}
.ws24{word-spacing:14.169600pt;}
.ws7b{word-spacing:14.195840pt;}
.ws62{word-spacing:14.300800pt;}
.ws78{word-spacing:14.353280pt;}
.wsf3{word-spacing:14.484480pt;}
.ws4c{word-spacing:14.631424pt;}
.ws3e{word-spacing:14.647168pt;}
.wsf4{word-spacing:14.673408pt;}
.ws14c{word-spacing:15.108992pt;}
.wsee{word-spacing:15.145728pt;}
.ws95{word-spacing:15.187712pt;}
.ws110{word-spacing:15.581312pt;}
.wsf1{word-spacing:15.859456pt;}
.wsb2{word-spacing:15.932928pt;}
.wsf0{word-spacing:16.090368pt;}
.ws6d{word-spacing:16.205824pt;}
.wsb6{word-spacing:16.531200pt;}
.ws144{word-spacing:16.594176pt;}
.ws141{word-spacing:17.103232pt;}
.wsdb{word-spacing:17.108480pt;}
.wse9{word-spacing:17.124224pt;}
.ws14e{word-spacing:17.281664pt;}
.wsa7{word-spacing:17.307904pt;}
.ws98{word-spacing:17.612288pt;}
.ws125{word-spacing:17.680512pt;}
.wsd8{word-spacing:17.727744pt;}
.ws140{word-spacing:17.732992pt;}
.ws127{word-spacing:18.116096pt;}
.wsa6{word-spacing:18.347008pt;}
.ws5d{word-spacing:18.850816pt;}
.wse6{word-spacing:18.887552pt;}
.wsc6{word-spacing:19.491072pt;}
.ws16{word-spacing:19.805952pt;}
.ws40{word-spacing:19.916160pt;}
.wsba{word-spacing:20.131328pt;}
.ws65{word-spacing:20.178560pt;}
.ws123{word-spacing:20.210048pt;}
.wsd1{word-spacing:20.215296pt;}
.ws139{word-spacing:20.619392pt;}
.ws126{word-spacing:20.640384pt;}
.ws128{word-spacing:20.677120pt;}
.ws11{word-spacing:20.881792pt;}
.ws10{word-spacing:20.913280pt;}
.wsf{word-spacing:20.992000pt;}
.wse{word-spacing:21.039232pt;}
.ws10d{word-spacing:21.117952pt;}
.wsfb{word-spacing:21.144192pt;}
.ws63{word-spacing:21.159936pt;}
.ws131{word-spacing:21.196672pt;}
.ws90{word-spacing:21.333120pt;}
.ws135{word-spacing:21.642752pt;}
.ws25{word-spacing:21.815936pt;}
.ws8d{word-spacing:22.083584pt;}
.ws7a{word-spacing:22.466688pt;}
.ws30{word-spacing:23.364096pt;}
.wsc2{word-spacing:23.616000pt;}
.wse1{word-spacing:23.668480pt;}
.ws122{word-spacing:24.020096pt;}
.ws41{word-spacing:24.046336pt;}
.ws73{word-spacing:24.366464pt;}
.ws13c{word-spacing:24.471424pt;}
.ws8f{word-spacing:24.802048pt;}
.ws148{word-spacing:25.216640pt;}
.ws3a{word-spacing:25.284864pt;}
.ws133{word-spacing:25.395072pt;}
.ws11e{word-spacing:25.841152pt;}
.ws96{word-spacing:26.974720pt;}
.ws9e{word-spacing:27.084928pt;}
.wsea{word-spacing:27.184640pt;}
.wsbe{word-spacing:27.321088pt;}
.ws2d{word-spacing:27.331584pt;}
.ws60{word-spacing:27.489024pt;}
.ws151{word-spacing:27.588736pt;}
.ws134{word-spacing:28.040064pt;}
.ws11b{word-spacing:28.155520pt;}
.ws9d{word-spacing:28.423168pt;}
.wsfe{word-spacing:28.528128pt;}
.wsa1{word-spacing:28.811520pt;}
.wsd2{word-spacing:28.989952pt;}
.ws12d{word-spacing:29.509504pt;}
.wse5{word-spacing:29.530496pt;}
.wsbc{word-spacing:29.561984pt;}
.ws84{word-spacing:29.588224pt;}
.ws14a{word-spacing:30.611584pt;}
.ws155{word-spacing:30.868736pt;}
.wsc3{word-spacing:31.089152pt;}
.ws37{word-spacing:31.697920pt;}
.ws4e{word-spacing:31.792384pt;}
.wsb8{word-spacing:33.015168pt;}
.wsf2{word-spacing:33.319552pt;}
.ws2f{word-spacing:33.828608pt;}
.ws109{word-spacing:33.975552pt;}
.ws3f{word-spacing:34.201216pt;}
.ws80{word-spacing:34.337664pt;}
.ws3b{word-spacing:34.342912pt;}
.wse7{word-spacing:35.025152pt;}
.ws9c{word-spacing:36.384384pt;}
.wsc9{word-spacing:37.003648pt;}
.ws160{word-spacing:37.030784pt;}
.ws149{word-spacing:37.633408pt;}
.wsa2{word-spacing:38.478336pt;}
.ws138{word-spacing:38.829952pt;}
.ws93{word-spacing:39.680128pt;}
.ws161{word-spacing:40.184960pt;}
.wsc0{word-spacing:40.682496pt;}
.ws5c{word-spacing:41.406720pt;}
.ws13e{word-spacing:42.949632pt;}
.ws76{word-spacing:43.180544pt;}
.ws10f{word-spacing:43.736832pt;}
.ws102{word-spacing:45.080320pt;}
.wsf5{word-spacing:45.368960pt;}
.ws39{word-spacing:48.050688pt;}
.wsb1{word-spacing:48.811648pt;}
.ws13f{word-spacing:49.604096pt;}
.ws8b{word-spacing:51.530112pt;}
.wsca{word-spacing:53.267200pt;}
.wsde{word-spacing:53.282944pt;}
.ws6f{word-spacing:53.812992pt;}
.wsa0{word-spacing:54.054400pt;}
.ws15a{word-spacing:60.189312pt;}
.ws15e{word-spacing:63.481344pt;}
.wse8{word-spacing:64.177792pt;}
.wscf{word-spacing:65.132928pt;}
.ws99{word-spacing:66.130048pt;}
.wsf9{word-spacing:69.556992pt;}
.ws12c{word-spacing:71.141888pt;}
.wsef{word-spacing:73.115136pt;}
.wsa4{word-spacing:76.988160pt;}
.ws112{word-spacing:77.035392pt;}
.ws10a{word-spacing:82.918400pt;}
.wsa5{word-spacing:83.936512pt;}
.ws12b{word-spacing:131.430912pt;}
._4{margin-left:-17.792000pt;}
._a{margin-left:-15.980800pt;}
._d{margin-left:-12.889600pt;}
._c{margin-left:-11.810133pt;}
._9{margin-left:-9.762133pt;}
._2{margin-left:-8.273067pt;}
._7{margin-left:-7.091200pt;}
._0{margin-left:-5.545792pt;}
._8{margin-left:-4.563200pt;}
._5{margin-left:-3.532800pt;}
._6{margin-left:-2.374400pt;}
._3{margin-left:-1.344000pt;}
._b{width:1.072896pt;}
._1{width:11.409067pt;}
.fsc{font-size:25.600000pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fsa{font-size:42.666667pt;}
.fs1{font-size:43.530667pt;}
.fs6{font-size:47.360000pt;}
.fsb{font-size:48.000000pt;}
.fs5{font-size:52.480000pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:57.600000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.240000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:37.796000pt;}
.yda{bottom:94.304341pt;}
.y188{bottom:94.924437pt;}
.yad{bottom:94.979861pt;}
.y4d{bottom:99.084155pt;}
.y119{bottom:101.059381pt;}
.y5b{bottom:103.241467pt;}
.y151{bottom:103.884725pt;}
.yd9{bottom:109.663925pt;}
.y187{bottom:110.284021pt;}
.yac{bottom:110.339445pt;}
.y6{bottom:113.023333pt;}
.y4c{bottom:114.443739pt;}
.y5a{bottom:114.764629pt;}
.y118{bottom:116.418965pt;}
.y150{bottom:119.244309pt;}
.yd8{bottom:125.023509pt;}
.y186{bottom:125.643605pt;}
.yab{bottom:125.699029pt;}
.y64{bottom:126.678667pt;}
.y4b{bottom:129.803323pt;}
.y117{bottom:131.777237pt;}
.y14f{bottom:134.603893pt;}
.yd7{bottom:140.383093pt;}
.y185{bottom:140.683061pt;}
.yaa{bottom:140.737173pt;}
.y4a{bottom:144.841467pt;}
.y116{bottom:147.136821pt;}
.y65{bottom:147.697333pt;}
.y5c{bottom:148.230667pt;}
.y14e{bottom:149.963477pt;}
.yd6{bottom:155.421237pt;}
.y184{bottom:156.041333pt;}
.ya9{bottom:156.096757pt;}
.y49{bottom:160.207701pt;}
.y115{bottom:162.496405pt;}
.y66{bottom:165.135733pt;}
.y14d{bottom:165.323061pt;}
.y5d{bottom:165.668533pt;}
.yd5{bottom:170.780821pt;}
.y183{bottom:171.411899pt;}
.ya8{bottom:171.456341pt;}
.y48{bottom:175.567285pt;}
.y114{bottom:177.534549pt;}
.y14c{bottom:180.681333pt;}
.y67{bottom:182.574133pt;}
.y5e{bottom:183.107467pt;}
.yd4{bottom:186.140405pt;}
.y182{bottom:186.770171pt;}
.ya7{bottom:186.815925pt;}
.y47{bottom:190.926869pt;}
.y113{bottom:192.894133pt;}
.y14b{bottom:196.360827pt;}
.y68{bottom:200.011333pt;}
.y5f{bottom:200.545333pt;}
.yd3{bottom:201.499989pt;}
.y181{bottom:202.128443pt;}
.ya6{bottom:202.174197pt;}
.y46{bottom:206.285141pt;}
.y112{bottom:208.253717pt;}
.y14a{bottom:213.001467pt;}
.yd2{bottom:216.858261pt;}
.y69{bottom:217.449733pt;}
.y180{bottom:217.486715pt;}
.ya5{bottom:217.533781pt;}
.y60{bottom:217.984267pt;}
.y45{bottom:221.644725pt;}
.y111{bottom:223.613301pt;}
.y149{bottom:229.646453pt;}
.yd1{bottom:232.217845pt;}
.y17f{bottom:232.846299pt;}
.ya4{bottom:232.893365pt;}
.y6a{bottom:234.888133pt;}
.y61{bottom:235.422133pt;}
.y44{bottom:237.004309pt;}
.y110{bottom:238.972885pt;}
.y148{bottom:245.006037pt;}
.yd0{bottom:247.577429pt;}
.y17e{bottom:248.205883pt;}
.ya3{bottom:248.252949pt;}
.y6b{bottom:252.326533pt;}
.y43{bottom:252.363893pt;}
.y62{bottom:252.860000pt;}
.y10f{bottom:254.332469pt;}
.y147{bottom:260.365621pt;}
.ycf{bottom:262.935701pt;}
.y17d{bottom:263.564155pt;}
.ya2{bottom:263.612533pt;}
.y42{bottom:267.723477pt;}
.y10e{bottom:269.690741pt;}
.y6c{bottom:269.764933pt;}
.y63{bottom:270.298933pt;}
.y146{bottom:275.723893pt;}
.yce{bottom:278.295285pt;}
.y17c{bottom:278.923739pt;}
.ya1{bottom:278.972117pt;}
.y6d{bottom:282.333333pt;}
.y41{bottom:283.083061pt;}
.y10d{bottom:285.050325pt;}
.y145{bottom:291.083477pt;}
.ycd{bottom:293.654869pt;}
.y17b{bottom:294.283323pt;}
.ya0{bottom:294.330389pt;}
.y40{bottom:298.441333pt;}
.y10c{bottom:300.409909pt;}
.y59{bottom:304.524437pt;}
.y144{bottom:306.443061pt;}
.y11{bottom:306.556000pt;}
.ycc{bottom:309.013141pt;}
.y17a{bottom:309.321467pt;}
.y9f{bottom:309.369845pt;}
.y3f{bottom:314.121333pt;}
.y10b{bottom:315.768181pt;}
.y58{bottom:319.884021pt;}
.y143{bottom:321.801333pt;}
.ycb{bottom:324.052597pt;}
.y9e{bottom:324.728117pt;}
.y179{bottom:325.321467pt;}
.y10{bottom:325.756000pt;}
.y10a{bottom:331.127765pt;}
.y3e{bottom:332.041333pt;}
.y57{bottom:335.243605pt;}
.y142{bottom:337.481333pt;}
.yca{bottom:339.410869pt;}
.y9d{bottom:340.086389pt;}
.y178{bottom:343.257781pt;}
.yf{bottom:344.956000pt;}
.y109{bottom:346.167221pt;}
.y3d{bottom:347.410933pt;}
.y56{bottom:350.283061pt;}
.yc9{bottom:354.769141pt;}
.y9c{bottom:355.444661pt;}
.y141{bottom:356.041333pt;}
.y177{bottom:358.616053pt;}
.y108{bottom:361.526805pt;}
.y3c{bottom:362.769205pt;}
.y55{bottom:365.641333pt;}
.yc8{bottom:370.128725pt;}
.y9b{bottom:370.802933pt;}
.y176{bottom:373.975637pt;}
.y140{bottom:374.281333pt;}
.y107{bottom:376.886389pt;}
.y3b{bottom:378.128789pt;}
.y54{bottom:381.004443pt;}
.yc7{bottom:385.488309pt;}
.y9a{bottom:386.161205pt;}
.y175{bottom:389.335221pt;}
.y13f{bottom:392.213627pt;}
.y106{bottom:392.245973pt;}
.y3a{bottom:393.487061pt;}
.y53{bottom:396.364027pt;}
.ye{bottom:398.204000pt;}
.yc6{bottom:400.846581pt;}
.y99{bottom:401.519477pt;}
.y1ad{bottom:404.681333pt;}
.y174{bottom:404.694805pt;}
.y13e{bottom:407.571899pt;}
.y105{bottom:407.605557pt;}
.y39{bottom:408.845333pt;}
.y52{bottom:411.723611pt;}
.yc5{bottom:416.206165pt;}
.y98{bottom:416.877749pt;}
.yd{bottom:417.404000pt;}
.y173{bottom:419.732949pt;}
.y1ac{bottom:422.921467pt;}
.y13d{bottom:422.930171pt;}
.y104{bottom:422.965141pt;}
.y38{bottom:423.884789pt;}
.y51{bottom:427.083195pt;}
.yc4{bottom:431.565749pt;}
.y97{bottom:432.236021pt;}
.y172{bottom:435.092533pt;}
.yc{bottom:436.604000pt;}
.y1ab{bottom:437.638229pt;}
.y13c{bottom:438.288443pt;}
.y103{bottom:438.324725pt;}
.y37{bottom:439.243061pt;}
.y50{bottom:442.446363pt;}
.yc3{bottom:446.924021pt;}
.y96{bottom:447.594293pt;}
.y171{bottom:450.450805pt;}
.y1aa{bottom:451.398677pt;}
.y13b{bottom:453.646715pt;}
.y102{bottom:453.684309pt;}
.y36{bottom:454.601333pt;}
.yb{bottom:455.804000pt;}
.y4f{bottom:457.805947pt;}
.yc2{bottom:462.283605pt;}
.y95{bottom:462.952565pt;}
.y1a9{bottom:465.160309pt;}
.y170{bottom:465.809077pt;}
.y13a{bottom:469.006299pt;}
.y101{bottom:469.043893pt;}
.y35{bottom:470.601333pt;}
.y4e{bottom:473.164219pt;}
.ya{bottom:475.004000pt;}
.yc1{bottom:477.643189pt;}
.y94{bottom:478.310837pt;}
.y1a8{bottom:479.240437pt;}
.y16f{bottom:481.167349pt;}
.y139{bottom:484.364571pt;}
.y100{bottom:484.403477pt;}
.y34{bottom:488.523061pt;}
.yc0{bottom:492.681333pt;}
.y1a7{bottom:493.000885pt;}
.y93{bottom:493.350293pt;}
.y9{bottom:494.204000pt;}
.y16e{bottom:496.525621pt;}
.y138{bottom:499.722843pt;}
.yff{bottom:499.763061pt;}
.y33{bottom:503.881333pt;}
.y1a6{bottom:506.761333pt;}
.ybf{bottom:507.720437pt;}
.y92{bottom:508.709877pt;}
.y16d{bottom:511.883893pt;}
.y8{bottom:513.404000pt;}
.y137{bottom:514.762299pt;}
.yfe{bottom:514.801205pt;}
.y32{bottom:519.252379pt;}
.ybe{bottom:521.480885pt;}
.y1a5{bottom:521.481467pt;}
.y91{bottom:524.068149pt;}
.y16c{bottom:527.243477pt;}
.y136{bottom:530.121883pt;}
.yfd{bottom:530.160789pt;}
.y7{bottom:532.604000pt;}
.y31{bottom:534.290523pt;}
.ybd{bottom:535.241333pt;}
.y90{bottom:539.427733pt;}
.y1a4{bottom:540.041467pt;}
.y16b{bottom:542.603061pt;}
.y135{bottom:545.481467pt;}
.yfc{bottom:545.520373pt;}
.ybc{bottom:546.446427pt;}
.y30{bottom:549.650107pt;}
.y8f{bottom:554.786005pt;}
.y16a{bottom:557.961333pt;}
.y1a3{bottom:558.281467pt;}
.y134{bottom:560.844795pt;}
.yfb{bottom:560.878645pt;}
.y2f{bottom:565.009691pt;}
.y8e{bottom:570.144277pt;}
.y169{bottom:573.321467pt;}
.ydc{bottom:576.054000pt;}
.y133{bottom:576.204379pt;}
.y1a2{bottom:576.223029pt;}
.yfa{bottom:576.238229pt;}
.y2e{bottom:580.367963pt;}
.y8d{bottom:585.503861pt;}
.y168{bottom:589.980821pt;}
.y132{bottom:591.563963pt;}
.y1a1{bottom:591.581301pt;}
.yf9{bottom:591.596501pt;}
.ydb{bottom:594.722800pt;}
.y2d{bottom:595.727547pt;}
.y8c{bottom:600.863445pt;}
.y167{bottom:605.339093pt;}
.y131{bottom:606.923547pt;}
.y1a0{bottom:606.939573pt;}
.yf8{bottom:606.954773pt;}
.y2c{bottom:611.087131pt;}
.y5{bottom:612.970800pt;}
.y8b{bottom:616.221717pt;}
.y166{bottom:620.697365pt;}
.y130{bottom:622.283131pt;}
.y19f{bottom:622.297845pt;}
.yf7{bottom:622.313045pt;}
.y2b{bottom:626.445403pt;}
.y8a{bottom:631.581301pt;}
.y165{bottom:636.056949pt;}
.y12f{bottom:637.642715pt;}
.y19e{bottom:637.656117pt;}
.yf6{bottom:637.671317pt;}
.y4{bottom:639.638000pt;}
.y2a{bottom:641.804987pt;}
.y89{bottom:646.940885pt;}
.y164{bottom:651.415221pt;}
.y12e{bottom:653.002299pt;}
.y19d{bottom:653.014389pt;}
.yf5{bottom:653.029589pt;}
.y29{bottom:657.164571pt;}
.y88{bottom:661.979029pt;}
.ydd{bottom:664.509333pt;}
.y163{bottom:666.773493pt;}
.y12d{bottom:668.361883pt;}
.y19c{bottom:668.372661pt;}
.yf4{bottom:668.389173pt;}
.y28{bottom:672.522843pt;}
.y87{bottom:677.338613pt;}
.y162{bottom:682.131765pt;}
.y12c{bottom:683.721467pt;}
.y19b{bottom:683.730933pt;}
.yf3{bottom:683.748757pt;}
.y27{bottom:687.882427pt;}
.ye0{bottom:691.059733pt;}
.y86{bottom:692.698197pt;}
.y3{bottom:694.475067pt;}
.y161{bottom:697.490037pt;}
.y12b{bottom:698.769909pt;}
.y19a{bottom:698.770389pt;}
.yf2{bottom:698.786901pt;}
.y26{bottom:702.923195pt;}
.y85{bottom:708.057781pt;}
.ydf{bottom:709.726933pt;}
.y160{bottom:712.848309pt;}
.y12a{bottom:714.129493pt;}
.y199{bottom:714.129973pt;}
.yf1{bottom:714.146485pt;}
.y25{bottom:718.281467pt;}
.y2{bottom:721.142267pt;}
.y84{bottom:723.417365pt;}
.y15f{bottom:727.887765pt;}
.yde{bottom:728.394133pt;}
.y198{bottom:729.488245pt;}
.y129{bottom:729.489077pt;}
.yf0{bottom:729.506069pt;}
.y83{bottom:738.776949pt;}
.y15e{bottom:743.247349pt;}
.y197{bottom:744.847829pt;}
.y128{bottom:744.848661pt;}
.yef{bottom:744.864341pt;}
.y1{bottom:747.809467pt;}
.y24{bottom:749.643061pt;}
.y82{bottom:754.136533pt;}
.y15d{bottom:758.605621pt;}
.ybb{bottom:760.206651pt;}
.y196{bottom:760.207413pt;}
.y127{bottom:760.208245pt;}
.yee{bottom:760.222613pt;}
.y23{bottom:765.001333pt;}
.y81{bottom:769.494805pt;}
.y15c{bottom:773.965205pt;}
.yba{bottom:775.564923pt;}
.y195{bottom:775.566997pt;}
.y126{bottom:775.567829pt;}
.yed{bottom:775.580885pt;}
.y22{bottom:779.720309pt;}
.y80{bottom:784.854389pt;}
.y15b{bottom:789.324789pt;}
.yb9{bottom:790.923195pt;}
.y194{bottom:790.925269pt;}
.y125{bottom:790.927413pt;}
.yec{bottom:790.939157pt;}
.y21{bottom:793.480757pt;}
.y7f{bottom:800.213973pt;}
.y15a{bottom:804.683061pt;}
.y193{bottom:806.284853pt;}
.y124{bottom:806.285685pt;}
.yeb{bottom:806.297429pt;}
.yb8{bottom:806.348885pt;}
.y20{bottom:807.560885pt;}
.y7e{bottom:815.573557pt;}
.y159{bottom:820.041333pt;}
.y1f{bottom:821.321333pt;}
.y192{bottom:821.644437pt;}
.y123{bottom:821.645269pt;}
.yea{bottom:821.655701pt;}
.yb7{bottom:821.708469pt;}
.y7d{bottom:830.611701pt;}
.y158{bottom:835.721333pt;}
.y1e{bottom:835.723061pt;}
.y191{bottom:837.002709pt;}
.y122{bottom:837.004853pt;}
.ye9{bottom:837.013973pt;}
.yb6{bottom:837.066741pt;}
.y7c{bottom:845.969973pt;}
.y1d{bottom:851.083323pt;}
.y157{bottom:852.361467pt;}
.y190{bottom:852.362293pt;}
.y121{bottom:852.364437pt;}
.ye8{bottom:852.372245pt;}
.yb5{bottom:852.426325pt;}
.y7b{bottom:861.328245pt;}
.y1c{bottom:866.121467pt;}
.y18f{bottom:867.401749pt;}
.y120{bottom:867.402581pt;}
.y156{bottom:867.407765pt;}
.ye7{bottom:867.411701pt;}
.yb4{bottom:867.465781pt;}
.y7a{bottom:876.686517pt;}
.y1b{bottom:882.440821pt;}
.y18e{bottom:882.761333pt;}
.y11f{bottom:882.762165pt;}
.y155{bottom:882.766037pt;}
.ye6{bottom:882.769973pt;}
.yb3{bottom:882.824053pt;}
.y79{bottom:892.044789pt;}
.y11e{bottom:898.121749pt;}
.y154{bottom:898.124309pt;}
.y18d{bottom:898.125589pt;}
.ye5{bottom:898.128245pt;}
.yb2{bottom:898.182325pt;}
.y1a{bottom:903.881333pt;}
.y78{bottom:907.403061pt;}
.y11d{bottom:913.481333pt;}
.y153{bottom:913.483893pt;}
.y18c{bottom:913.485173pt;}
.ye4{bottom:913.486517pt;}
.yb1{bottom:913.541909pt;}
.y77{bottom:922.761333pt;}
.y19{bottom:925.001467pt;}
.y152{bottom:928.843477pt;}
.y18b{bottom:928.844757pt;}
.ye3{bottom:928.844789pt;}
.y11c{bottom:928.899893pt;}
.yb0{bottom:928.901493pt;}
.y76{bottom:938.441333pt;}
.y18{bottom:943.561467pt;}
.ye2{bottom:944.203061pt;}
.y18a{bottom:944.204341pt;}
.y11b{bottom:944.259477pt;}
.yaf{bottom:944.259765pt;}
.y75{bottom:957.001333pt;}
.ye1{bottom:959.561333pt;}
.y189{bottom:959.562613pt;}
.y11a{bottom:959.619061pt;}
.yae{bottom:959.619349pt;}
.y17{bottom:962.121467pt;}
.y74{bottom:973.961797pt;}
.y16{bottom:983.881573pt;}
.y73{bottom:986.441605pt;}
.y72{bottom:998.601445pt;}
.y15{bottom:1001.481733pt;}
.y71{bottom:1010.761285pt;}
.y70{bottom:1027.401323pt;}
.y14{bottom:1031.881733pt;}
.y6f{bottom:1045.321643pt;}
.y6e{bottom:1064.201867pt;}
.y13{bottom:1064.521867pt;}
.h16{height:30.772500pt;}
.h13{height:31.083333pt;}
.h6{height:31.680000pt;}
.h12{height:34.479375pt;}
.h9{height:34.502500pt;}
.h14{height:34.968750pt;}
.h1a{height:36.320625pt;}
.hc{height:38.206875pt;}
.h7{height:38.232500pt;}
.h15{height:40.411643pt;}
.h1d{height:40.723125pt;}
.h18{height:41.231250pt;}
.h1c{height:41.934375pt;}
.ha{height:42.656250pt;}
.h19{height:43.774143pt;}
.h1b{height:45.125625pt;}
.h17{height:46.324075pt;}
.h5{height:46.354167pt;}
.hf{height:46.593750pt;}
.h10{height:46.625000pt;}
.h8{height:47.632500pt;}
.hd{height:52.033201pt;}
.he{height:52.034246pt;}
.h11{height:52.037383pt;}
.hb{height:54.048750pt;}
.h4{height:55.625000pt;}
.h2{height:56.554982pt;}
.h3{height:64.895833pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.397867pt;}
.x8{left:116.529536pt;}
.x3{left:143.622667pt;}
.x7{left:182.125333pt;}
.x2{left:253.229333pt;}
.x1{left:254.645333pt;}
.x6{left:332.664000pt;}
.x4{left:385.728000pt;}
.x9{left:420.879975pt;}
.x14{left:423.531467pt;}
.x17{left:425.541467pt;}
.x16{left:426.830267pt;}
.x23{left:428.412459pt;}
.x15{left:429.543467pt;}
.x13{left:434.206667pt;}
.x19{left:444.233867pt;}
.x18{left:445.557467pt;}
.x20{left:465.420267pt;}
.x22{left:475.357867pt;}
.x1b{left:503.857333pt;}
.x1f{left:506.402667pt;}
.x21{left:507.650667pt;}
.x1a{left:509.571467pt;}
.x12{left:545.533600pt;}
.xd{left:583.946400pt;}
.xe{left:590.270667pt;}
.x11{left:592.378400pt;}
.x1d{left:613.548000pt;}
.x10{left:615.565600pt;}
.x1e{left:618.442400pt;}
.xc{left:626.105333pt;}
.xf{left:647.185867pt;}
.xb{left:675.182667pt;}
.x1c{left:700.878965pt;}
.xa{left:703.543819pt;}
}


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