
/* 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_bdfdcd4e1a66.woff")format("woff");}.ff1{font-family:ff1;line-height:1.281250;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_6456da11d91f.woff")format("woff");}.ff2{font-family:ff2;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_5c045531b0a7.woff")format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_acb697974c39.woff")format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_662a753a1c82.woff")format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_2445230ce71d.woff")format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_b641ab6714fe.woff")format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_3b097ecf01be.woff")format("woff");}.ff8{font-family:ff8;line-height:1.575000;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_79ec4979b9ab.woff")format("woff");}.ff9{font-family:ff9;line-height:1.575000;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_0e73759bc5bb.woff")format("woff");}.ffa{font-family:ffa;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:ffb;src:url("fonts/font_0010_48bb14a5ec88.woff")format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v2{vertical-align:-83.880000px;}
.v8{vertical-align:-77.040000px;}
.va{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.v3{vertical-align:38.157840px;}
.v4{vertical-align:47.156640px;}
.v9{vertical-align:68.759400px;}
.v6{vertical-align:72.000600px;}
.v7{vertical-align:75.959640px;}
.v5{vertical-align:93.957840px;}
.ls3{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls58{letter-spacing:-0.108216px;}
.ls8{letter-spacing:-0.108000px;}
.ls1e{letter-spacing:-0.093600px;}
.ls53{letter-spacing:-0.084168px;}
.ls19{letter-spacing:-0.079200px;}
.ls50{letter-spacing:-0.078156px;}
.ls5a{letter-spacing:-0.072144px;}
.ls1b{letter-spacing:-0.072000px;}
.ls34{letter-spacing:-0.070308px;}
.ls55{letter-spacing:-0.066132px;}
.ls17{letter-spacing:-0.064800px;}
.ls4f{letter-spacing:-0.060120px;}
.ls16{letter-spacing:-0.057600px;}
.ls4e{letter-spacing:-0.054108px;}
.ls1a{letter-spacing:-0.050400px;}
.ls4d{letter-spacing:-0.048096px;}
.ls14{letter-spacing:-0.043200px;}
.ls52{letter-spacing:-0.042084px;}
.ls11{letter-spacing:-0.039060px;}
.ls59{letter-spacing:-0.036072px;}
.ls12{letter-spacing:-0.036000px;}
.ls3b{letter-spacing:-0.031248px;}
.ls4c{letter-spacing:-0.030060px;}
.ls13{letter-spacing:-0.028800px;}
.ls41{letter-spacing:-0.025164px;}
.ls51{letter-spacing:-0.024048px;}
.ls38{letter-spacing:-0.023436px;}
.ls15{letter-spacing:-0.021600px;}
.ls31{letter-spacing:-0.019764px;}
.ls54{letter-spacing:-0.018036px;}
.ls36{letter-spacing:-0.016776px;}
.ls1c{letter-spacing:-0.014400px;}
.ls56{letter-spacing:-0.012024px;}
.ls37{letter-spacing:-0.008388px;}
.ls27{letter-spacing:-0.007812px;}
.ls1d{letter-spacing:-0.007200px;}
.ls57{letter-spacing:-0.006012px;}
.ls2{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.004788px;}
.ls4a{letter-spacing:0.006012px;}
.ls40{letter-spacing:0.006588px;}
.ls18{letter-spacing:0.007200px;}
.ls39{letter-spacing:0.007812px;}
.ls46{letter-spacing:0.012024px;}
.ls43{letter-spacing:0.014364px;}
.lsb{letter-spacing:0.014400px;}
.lsa{letter-spacing:0.015624px;}
.ls5b{letter-spacing:0.018036px;}
.ls22{letter-spacing:0.021600px;}
.ls49{letter-spacing:0.024048px;}
.ls5d{letter-spacing:0.030060px;}
.ls9{letter-spacing:0.031248px;}
.ls2b{letter-spacing:0.032940px;}
.ls3c{letter-spacing:0.036000px;}
.ls45{letter-spacing:0.036072px;}
.ls21{letter-spacing:0.039060px;}
.ls32{letter-spacing:0.039528px;}
.ls29{letter-spacing:0.046116px;}
.ls20{letter-spacing:0.046872px;}
.ls48{letter-spacing:0.048096px;}
.ls25{letter-spacing:0.050328px;}
.ls33{letter-spacing:0.050400px;}
.ls2a{letter-spacing:0.052704px;}
.ls44{letter-spacing:0.054108px;}
.ls3a{letter-spacing:0.058716px;}
.ls2e{letter-spacing:0.059292px;}
.ls23{letter-spacing:0.062496px;}
.ls2c{letter-spacing:0.065880px;}
.ls24{letter-spacing:0.067104px;}
.ls4{letter-spacing:0.072000px;}
.ls3e{letter-spacing:0.072468px;}
.ls35{letter-spacing:0.075492px;}
.ls3f{letter-spacing:0.079056px;}
.ls2d{letter-spacing:0.085644px;}
.ls28{letter-spacing:0.085932px;}
.ls10{letter-spacing:0.086400px;}
.ls2f{letter-spacing:0.092232px;}
.ls30{letter-spacing:0.098820px;}
.ls42{letter-spacing:0.105408px;}
.ls1{letter-spacing:0.108000px;}
.ls26{letter-spacing:0.117180px;}
.lsf{letter-spacing:0.136800px;}
.lse{letter-spacing:0.144000px;}
.ls4b{letter-spacing:0.150300px;}
.lsd{letter-spacing:0.151200px;}
.ls6{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.324000px;}
.ls5c{letter-spacing:50.260320px;}
.ls47{letter-spacing:75.089880px;}
.lsc{letter-spacing:980.784000px;}
.ls1f{letter-spacing:1311.698160px;}
.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;}
}
.ws2{word-spacing:-26.676000px;}
.wsc{word-spacing:-19.972800px;}
.wsd{word-spacing:-19.922400px;}
.ws0{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.ws11d{word-spacing:-13.857660px;}
.ws11c{word-spacing:-13.737420px;}
.ws10b{word-spacing:-13.725396px;}
.wse2{word-spacing:-13.707360px;}
.ws10a{word-spacing:-13.689324px;}
.ws10c{word-spacing:-13.647240px;}
.ws10d{word-spacing:-13.641228px;}
.wse0{word-spacing:-13.310640px;}
.wsb{word-spacing:-1.260000px;}
.ws37{word-spacing:-0.523404px;}
.ws10{word-spacing:-0.476532px;}
.wsf{word-spacing:-0.460908px;}
.wse6{word-spacing:-0.444888px;}
.ws9{word-spacing:-0.432000px;}
.wsc8{word-spacing:-0.429660px;}
.wsde{word-spacing:-0.395280px;}
.wsdc{word-spacing:-0.388692px;}
.ws109{word-spacing:-0.366732px;}
.ws13{word-spacing:-0.335916px;}
.ws12{word-spacing:-0.328104px;}
.wsa0{word-spacing:-0.257796px;}
.ws2b{word-spacing:-0.218736px;}
.ws7{word-spacing:-0.216000px;}
.wse{word-spacing:-0.203112px;}
.ws2c{word-spacing:-0.148428px;}
.ws9b{word-spacing:-0.132804px;}
.ws8{word-spacing:-0.108000px;}
.ws4{word-spacing:-0.072000px;}
.ws11{word-spacing:-0.062496px;}
.ws101{word-spacing:-0.054108px;}
.wseb{word-spacing:-0.042084px;}
.ws81{word-spacing:-0.039528px;}
.ws80{word-spacing:-0.032940px;}
.ws8b{word-spacing:-0.031248px;}
.ws7e{word-spacing:-0.026352px;}
.wsec{word-spacing:-0.024048px;}
.wsdf{word-spacing:-0.019764px;}
.ws11e{word-spacing:-0.018036px;}
.wsdb{word-spacing:-0.013176px;}
.ws108{word-spacing:-0.012024px;}
.ws7b{word-spacing:-0.006588px;}
.ws11f{word-spacing:-0.006012px;}
.ws3{word-spacing:0.000000px;}
.wse1{word-spacing:0.004788px;}
.wsf8{word-spacing:0.006012px;}
.ws7c{word-spacing:0.006588px;}
.wse5{word-spacing:0.012024px;}
.wsd7{word-spacing:0.013176px;}
.wsd8{word-spacing:0.014364px;}
.ws99{word-spacing:0.016776px;}
.wsef{word-spacing:0.018036px;}
.wsdd{word-spacing:0.019764px;}
.wse8{word-spacing:0.024048px;}
.ws2a{word-spacing:0.025164px;}
.ws7d{word-spacing:0.026352px;}
.wse3{word-spacing:0.030060px;}
.wsea{word-spacing:0.036072px;}
.ws107{word-spacing:0.042084px;}
.wsd5{word-spacing:0.043200px;}
.wse4{word-spacing:0.048096px;}
.wsda{word-spacing:0.052704px;}
.wse7{word-spacing:0.054108px;}
.wsa9{word-spacing:0.079200px;}
.wsce{word-spacing:0.086400px;}
.wsa6{word-spacing:0.100800px;}
.ws5{word-spacing:0.144000px;}
.ws32{word-spacing:0.151200px;}
.ws50{word-spacing:0.158400px;}
.ws28{word-spacing:0.165600px;}
.ws22{word-spacing:0.172800px;}
.ws1a{word-spacing:0.180000px;}
.ws3c{word-spacing:0.187200px;}
.ws1c{word-spacing:0.194400px;}
.ws27{word-spacing:0.201600px;}
.ws4a{word-spacing:0.208800px;}
.ws6{word-spacing:0.216000px;}
.ws1b{word-spacing:0.223200px;}
.ws26{word-spacing:0.237600px;}
.ws9a{word-spacing:0.285192px;}
.ws77{word-spacing:0.302400px;}
.ws3b{word-spacing:0.316800px;}
.wsa{word-spacing:0.324000px;}
.wsd6{word-spacing:0.368928px;}
.ws76{word-spacing:0.381600px;}
.ws122{word-spacing:0.384768px;}
.ws63{word-spacing:0.525600px;}
.ws7a{word-spacing:0.554400px;}
.ws8c{word-spacing:0.604800px;}
.ws123{word-spacing:1.484964px;}
.ws17{word-spacing:1.598400px;}
.ws16{word-spacing:1.728000px;}
.wsf6{word-spacing:1.833660px;}
.wsad{word-spacing:1.987200px;}
.wsac{word-spacing:2.001600px;}
.ws14{word-spacing:2.030400px;}
.ws15{word-spacing:2.102400px;}
.ws47{word-spacing:2.318400px;}
.ws46{word-spacing:2.426400px;}
.ws2d{word-spacing:2.448000px;}
.ws2f{word-spacing:2.455200px;}
.ws2e{word-spacing:2.606400px;}
.ws36{word-spacing:2.707200px;}
.ws106{word-spacing:2.891772px;}
.ws105{word-spacing:3.276540px;}
.wsc0{word-spacing:3.427200px;}
.wsc1{word-spacing:3.448800px;}
.ws113{word-spacing:3.631248px;}
.ws44{word-spacing:3.772800px;}
.ws45{word-spacing:3.787200px;}
.wsb9{word-spacing:3.808800px;}
.ws4b{word-spacing:3.873600px;}
.ws18{word-spacing:4.010400px;}
.ws19{word-spacing:4.089600px;}
.ws9d{word-spacing:4.132800px;}
.ws9e{word-spacing:4.147200px;}
.ws9c{word-spacing:4.161600px;}
.wsc2{word-spacing:6.638400px;}
.wsa5{word-spacing:6.645600px;}
.ws54{word-spacing:6.652800px;}
.ws55{word-spacing:6.667200px;}
.wsc3{word-spacing:6.674400px;}
.wsa4{word-spacing:6.717600px;}
.ws119{word-spacing:7.220412px;}
.ws118{word-spacing:7.226424px;}
.wsb3{word-spacing:7.732800px;}
.ws97{word-spacing:7.761600px;}
.wsb4{word-spacing:7.840800px;}
.ws98{word-spacing:7.862400px;}
.ws96{word-spacing:7.941600px;}
.ws75{word-spacing:8.143200px;}
.ws74{word-spacing:8.193600px;}
.ws25{word-spacing:8.294400px;}
.wsfd{word-spacing:8.308584px;}
.ws90{word-spacing:8.539200px;}
.ws8f{word-spacing:8.661600px;}
.wsf9{word-spacing:8.681328px;}
.wsfa{word-spacing:8.687340px;}
.wsb7{word-spacing:8.812800px;}
.wsb8{word-spacing:8.827200px;}
.ws112{word-spacing:9.384732px;}
.ws111{word-spacing:9.390744px;}
.ws86{word-spacing:9.554400px;}
.ws85{word-spacing:9.561600px;}
.ws84{word-spacing:9.878400px;}
.ws87{word-spacing:9.885600px;}
.ws82{word-spacing:9.914400px;}
.ws83{word-spacing:10.072800px;}
.wsf1{word-spacing:10.106172px;}
.wsf0{word-spacing:10.118196px;}
.ws79{word-spacing:10.958400px;}
.ws60{word-spacing:10.965600px;}
.ws5f{word-spacing:11.030400px;}
.ws78{word-spacing:11.073600px;}
.ws31{word-spacing:11.145600px;}
.ws93{word-spacing:11.304000px;}
.ws91{word-spacing:11.311200px;}
.ws30{word-spacing:11.354400px;}
.ws92{word-spacing:11.527200px;}
.wsf4{word-spacing:11.549052px;}
.wsf5{word-spacing:11.555064px;}
.wsbc{word-spacing:11.692800px;}
.wsbd{word-spacing:11.721600px;}
.wsa8{word-spacing:11.952000px;}
.ws29{word-spacing:12.038400px;}
.ws58{word-spacing:12.060000px;}
.ws24{word-spacing:12.067200px;}
.ws1e{word-spacing:12.081600px;}
.ws20{word-spacing:12.088800px;}
.ws1f{word-spacing:12.103200px;}
.ws21{word-spacing:12.110400px;}
.ws1d{word-spacing:12.117600px;}
.ws59{word-spacing:12.254400px;}
.ws8d{word-spacing:12.787200px;}
.ws8e{word-spacing:13.032000px;}
.ws94{word-spacing:13.507200px;}
.wsc4{word-spacing:13.521600px;}
.wsc5{word-spacing:13.586400px;}
.ws95{word-spacing:13.752000px;}
.wsfc{word-spacing:14.410764px;}
.wsfb{word-spacing:14.428800px;}
.ws3f{word-spacing:14.918400px;}
.ws3e{word-spacing:14.932800px;}
.ws40{word-spacing:14.954400px;}
.ws5e{word-spacing:15.033600px;}
.ws52{word-spacing:15.616800px;}
.ws71{word-spacing:15.645600px;}
.ws70{word-spacing:15.681600px;}
.ws51{word-spacing:15.832800px;}
.ws53{word-spacing:16.020000px;}
.wsb2{word-spacing:16.358400px;}
.wsba{word-spacing:16.365600px;}
.wsb1{word-spacing:16.380000px;}
.wsbb{word-spacing:16.430400px;}
.wsaa{word-spacing:17.467200px;}
.wsab{word-spacing:17.496000px;}
.ws89{word-spacing:17.784000px;}
.ws67{word-spacing:17.820000px;}
.ws88{word-spacing:17.834400px;}
.ws66{word-spacing:17.913600px;}
.ws8a{word-spacing:17.935200px;}
.ws23{word-spacing:18.072000px;}
.ws72{word-spacing:21.074400px;}
.ws73{word-spacing:21.124800px;}
.ws62{word-spacing:21.787200px;}
.ws61{word-spacing:21.794400px;}
.ws6e{word-spacing:22.507200px;}
.ws6d{word-spacing:22.579200px;}
.ws121{word-spacing:22.701312px;}
.ws120{word-spacing:22.713336px;}
.ws6f{word-spacing:22.824000px;}
.ws42{word-spacing:23.220000px;}
.ws41{word-spacing:23.371200px;}
.ws104{word-spacing:23.428764px;}
.ws34{word-spacing:23.896800px;}
.ws35{word-spacing:23.911200px;}
.ws33{word-spacing:24.040800px;}
.ws5d{word-spacing:24.278400px;}
.ws5c{word-spacing:24.451200px;}
.ws110{word-spacing:24.865632px;}
.ws10f{word-spacing:24.877656px;}
.wsa2{word-spacing:25.027200px;}
.wsa3{word-spacing:25.128000px;}
.ws3d{word-spacing:25.351200px;}
.wsed{word-spacing:25.947792px;}
.wsee{word-spacing:25.959816px;}
.ws6c{word-spacing:26.474400px;}
.ws9f{word-spacing:26.748000px;}
.wsd3{word-spacing:26.798400px;}
.wsd4{word-spacing:26.841600px;}
.wsc6{word-spacing:27.108000px;}
.ws49{word-spacing:27.165600px;}
.wsc7{word-spacing:27.172800px;}
.ws48{word-spacing:27.180000px;}
.ws38{word-spacing:27.532800px;}
.ws3a{word-spacing:27.568800px;}
.ws39{word-spacing:27.626400px;}
.wsae{word-spacing:28.224000px;}
.wsb0{word-spacing:28.252800px;}
.wsaf{word-spacing:28.432800px;}
.wsf3{word-spacing:30.270420px;}
.wsbe{word-spacing:30.391200px;}
.wsbf{word-spacing:30.405600px;}
.wsf7{word-spacing:33.480828px;}
.ws5a{word-spacing:35.092800px;}
.ws5b{word-spacing:35.114400px;}
.wsb5{word-spacing:38.073600px;}
.wsb6{word-spacing:38.116800px;}
.wsa7{word-spacing:38.692800px;}
.wsf2{word-spacing:39.637116px;}
.ws4e{word-spacing:41.565600px;}
.ws4f{word-spacing:41.608800px;}
.ws6a{word-spacing:41.954400px;}
.ws114{word-spacing:42.150132px;}
.ws57{word-spacing:48.391200px;}
.ws56{word-spacing:48.420000px;}
.wsd0{word-spacing:48.765600px;}
.wscf{word-spacing:49.053600px;}
.wsd2{word-spacing:50.212800px;}
.wsd1{word-spacing:50.234400px;}
.ws4c{word-spacing:50.558400px;}
.ws4d{word-spacing:50.774400px;}
.wscd{word-spacing:53.820000px;}
.wscc{word-spacing:54.165600px;}
.ws43{word-spacing:54.871200px;}
.ws64{word-spacing:54.914400px;}
.ws65{word-spacing:55.677600px;}
.wsc9{word-spacing:62.460000px;}
.ws6b{word-spacing:62.467200px;}
.ws69{word-spacing:63.892800px;}
.ws68{word-spacing:63.907200px;}
.wsd9{word-spacing:79.932204px;}
.wscb{word-spacing:87.602400px;}
.wsca{word-spacing:87.868800px;}
.wsa1{word-spacing:98.114400px;}
.ws103{word-spacing:141.756948px;}
.ws100{word-spacing:141.762960px;}
.ws102{word-spacing:141.805044px;}
.wsff{word-spacing:141.817068px;}
.wsfe{word-spacing:141.823080px;}
.wse9{word-spacing:141.835104px;}
.ws11b{word-spacing:142.117668px;}
.ws117{word-spacing:142.123680px;}
.ws11a{word-spacing:142.165764px;}
.ws116{word-spacing:142.177788px;}
.ws115{word-spacing:142.183800px;}
.ws10e{word-spacing:142.195824px;}
.ws7f{word-spacing:1115.289108px;}
._18{margin-left:-51.120000px;}
._1d{margin-left:-35.640000px;}
._12{margin-left:-24.112800px;}
._34{margin-left:-13.707360px;}
._7{margin-left:-11.880000px;}
._1{margin-left:-1.080000px;}
._0{width:1.188000px;}
._a{width:3.513600px;}
._9{width:4.924800px;}
._10{width:6.732000px;}
._6{width:8.899200px;}
._b{width:10.641600px;}
._3{width:11.880000px;}
._c{width:12.960000px;}
._e{width:15.926400px;}
._1b{width:19.800000px;}
._26{width:25.560000px;}
._1a{width:27.720000px;}
._14{width:29.520000px;}
._17{width:31.536000px;}
._1c{width:33.120000px;}
._13{width:34.920000px;}
._11{width:38.880000px;}
._15{width:39.960000px;}
._24{width:48.168000px;}
._8{width:51.120000px;}
._19{width:52.488000px;}
._16{width:54.720000px;}
._d{width:59.040000px;}
._25{width:60.480000px;}
._4{width:63.000000px;}
._27{width:65.664000px;}
._21{width:68.038404px;}
._5{width:71.280000px;}
._2{width:79.200000px;}
._f{width:83.160000px;}
._23{width:84.592668px;}
._20{width:110.493780px;}
._35{width:114.479964px;}
._32{width:119.187372px;}
._33{width:141.840756px;}
._22{width:161.637012px;}
._38{width:189.040800px;}
._28{width:192.240000px;}
._1e{width:205.552068px;}
._31{width:209.163588px;}
._30{width:227.548500px;}
._37{width:241.225800px;}
._3a{width:267.371640px;}
._39{width:300.401688px;}
._2b{width:310.663536px;}
._2e{width:314.774448px;}
._2f{width:397.495272px;}
._36{width:399.298872px;}
._2a{width:861.536592px;}
._2c{width:1058.046036px;}
._1f{width:1115.216664px;}
._2d{width:1445.183100px;}
._29{width:1950.535296px;}
.fc2{color:rgb(15,36,62);}
.fc1{color:rgb(13,27,67);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:11.880000px;}
.fs2{font-size:41.760000px;}
.fs7{font-size:47.880000px;}
.fs3{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:78.120000px;}
.fs5{font-size:83.880000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:44.100000px;}
.y1e{bottom:66.060000px;}
.y1d{bottom:86.580000px;}
.y1c{bottom:106.920000px;}
.y6b{bottom:108.030450px;}
.y10a{bottom:116.850450px;}
.y1b{bottom:127.260000px;}
.y6a{bottom:129.000450px;}
.yea{bottom:132.060600px;}
.yc4{bottom:142.680450px;}
.y109{bottom:146.910450px;}
.y1a{bottom:147.600000px;}
.y69{bottom:150.060450px;}
.ye9{bottom:153.030600px;}
.yc3{bottom:163.740450px;}
.y19{bottom:168.120000px;}
.ye8{bottom:174.000600px;}
.y108{bottom:176.880450px;}
.y68{bottom:180.030450px;}
.yc2{bottom:184.710450px;}
.y18{bottom:188.460000px;}
.y190{bottom:191.100450px;}
.y94{bottom:192.540450px;}
.ye7{bottom:195.060600px;}
.y67{bottom:201.000450px;}
.yc1{bottom:205.680450px;}
.y107{bottom:206.850450px;}
.y17{bottom:208.800000px;}
.y18f{bottom:211.980600px;}
.y93{bottom:213.240450px;}
.ye6{bottom:216.030600px;}
.y16{bottom:229.140000px;}
.y18e{bottom:229.170450px;}
.y66{bottom:231.060450px;}
.y92{bottom:233.940450px;}
.ybd{bottom:236.191290px;}
.y106{bottom:236.910450px;}
.ye5{bottom:246.000600px;}
.y18d{bottom:247.170600px;}
.y15{bottom:249.660000px;}
.y91{bottom:254.640450px;}
.ybc{bottom:255.181200px;}
.yc0{bottom:255.182850px;}
.y65{bottom:261.030450px;}
.y18c{bottom:264.360450px;}
.y105{bottom:266.880450px;}
.ye4{bottom:267.060600px;}
.y14{bottom:270.000000px;}
.ybb{bottom:274.080600px;}
.ybf{bottom:274.082250px;}
.y90{bottom:275.340450px;}
.y64{bottom:282.000450px;}
.y18b{bottom:282.266550px;}
.y13{bottom:290.340000px;}
.yba{bottom:293.070450px;}
.ybe{bottom:293.072100px;}
.y8f{bottom:296.040450px;}
.y104{bottom:296.850450px;}
.ye3{bottom:297.030600px;}
.y18a{bottom:299.551050px;}
.y12{bottom:310.860000px;}
.y63{bottom:312.060450px;}
.y189{bottom:316.736280px;}
.ye2{bottom:318.000600px;}
.y44{bottom:319.260450px;}
.yb9{bottom:321.690450px;}
.y8e{bottom:325.740450px;}
.y1ed{bottom:326.820450px;}
.y103{bottom:326.910450px;}
.y11{bottom:331.200000px;}
.y62{bottom:333.030450px;}
.y188{bottom:333.930600px;}
.y1bf{bottom:339.780450px;}
.y43{bottom:340.230450px;}
.y1ec{bottom:346.350450px;}
.y8d{bottom:346.440450px;}
.ye1{bottom:348.060600px;}
.y187{bottom:351.120450px;}
.y10{bottom:351.540000px;}
.yb8{bottom:354.990600px;}
.yb7{bottom:354.998760px;}
.y102{bottom:356.880450px;}
.y1be{bottom:360.660600px;}
.y61{bottom:363.000450px;}
.y1eb{bottom:363.630450px;}
.y8c{bottom:367.140450px;}
.ye0{bottom:369.030600px;}
.y42{bottom:370.200450px;}
.y186{bottom:371.820750px;}
.yf{bottom:371.880000px;}
.y135{bottom:372.180450px;}
.yb6{bottom:373.889850px;}
.y101{bottom:377.850450px;}
.y1ea{bottom:381.540450px;}
.y8b{bottom:387.840450px;}
.y185{bottom:388.920450px;}
.ydf{bottom:390.000600px;}
.y41{bottom:391.260450px;}
.ye{bottom:391.500000px;}
.y132{bottom:391.981200px;}
.y131{bottom:391.989360px;}
.y60{bottom:393.060450px;}
.y1bd{bottom:395.850750px;}
.y1e9{bottom:398.820450px;}
.y100{bottom:398.910450px;}
.y184{bottom:406.920750px;}
.y8a{bottom:408.540450px;}
.y130{bottom:410.880450px;}
.yb5{bottom:410.970450px;}
.y40{bottom:412.230450px;}
.yd{bottom:412.560000px;}
.y1bc{bottom:413.040600px;}
.y5f{bottom:414.030450px;}
.y1e8{bottom:416.726580px;}
.yff{bottom:419.880450px;}
.yde{bottom:420.060600px;}
.y183{bottom:424.110600px;}
.y15c{bottom:425.910600px;}
.y89{bottom:429.240450px;}
.y12f{bottom:430.689510px;}
.yb4{bottom:430.771200px;}
.y1bb{bottom:431.036580px;}
.y3f{bottom:433.200450px;}
.y134{bottom:433.200600px;}
.y1e7{bottom:433.920900px;}
.ydd{bottom:441.030600px;}
.yc{bottom:441.540000px;}
.y182{bottom:442.016100px;}
.y5e{bottom:444.000450px;}
.y1ba{bottom:448.230900px;}
.y12e{bottom:449.580600px;}
.yb3{bottom:449.761050px;}
.yfe{bottom:449.850450px;}
.y159{bottom:450.039510px;}
.y1e6{bottom:451.196280px;}
.y133{bottom:456.601200px;}
.y88{bottom:458.850450px;}
.y181{bottom:459.300600px;}
.y3e{bottom:463.260450px;}
.y5d{bottom:465.060450px;}
.y1b9{bottom:465.416130px;}
.y1e5{bottom:468.390600px;}
.y12d{bottom:468.570450px;}
.yb2{bottom:468.660450px;}
.y158{bottom:468.930600px;}
.yfd{bottom:470.910450px;}
.ydc{bottom:471.000600px;}
.y180{bottom:476.490450px;}
.yb{bottom:479.340000px;}
.y87{bottom:479.910450px;}
.y1b8{bottom:482.610450px;}
.y3d{bottom:484.230450px;}
.y1e4{bottom:485.580450px;}
.y157{bottom:488.739510px;}
.y15b{bottom:491.250750px;}
.ydb{bottom:492.060600px;}
.y12c{bottom:492.690600px;}
.y17f{bottom:494.400600px;}
.y5c{bottom:495.030450px;}
.yb1{bottom:497.370600px;}
.y1b7{bottom:499.890450px;}
.y86{bottom:500.880450px;}
.y1e3{bottom:503.576280px;}
.y3c{bottom:505.200450px;}
.y156{bottom:507.630600px;}
.y17e{bottom:511.680600px;}
.yda{bottom:513.030600px;}
.y15a{bottom:514.651350px;}
.y12b{bottom:516.090600px;}
.ya{bottom:517.140000px;}
.y12a{bottom:517.261050px;}
.y1b6{bottom:520.500750px;}
.y1e2{bottom:520.770600px;}
.y85{bottom:521.850450px;}
.y5b{bottom:525.000450px;}
.y3b{bottom:526.260450px;}
.y155{bottom:526.620450px;}
.y17d{bottom:529.591200px;}
.yae{bottom:530.579940px;}
.yb0{bottom:530.580000px;}
.y1b5{bottom:537.600450px;}
.y1e1{bottom:538.680450px;}
.y84{bottom:542.910450px;}
.yd9{bottom:543.189540px;}
.y5a{bottom:546.060450px;}
.y17c{bottom:546.781050px;}
.y3a{bottom:547.230450px;}
.yad{bottom:549.569850px;}
.y154{bottom:550.740450px;}
.yaf{bottom:554.069550px;}
.y9{bottom:554.940000px;}
.y1b4{bottom:555.600600px;}
.y1e0{bottom:555.960450px;}
.y17b{bottom:564.061050px;}
.yd8{bottom:565.590450px;}
.y129{bottom:567.840450px;}
.y39{bottom:568.200450px;}
.y1b3{bottom:572.790450px;}
.y83{bottom:572.880450px;}
.yfc{bottom:573.069540px;}
.y1df{bottom:573.866100px;}
.y153{bottom:574.140450px;}
.y152{bottom:575.310450px;}
.y59{bottom:576.030450px;}
.y17a{bottom:581.250750px;}
.yac{bottom:586.650450px;}
.y125{bottom:587.550540px;}
.y126{bottom:587.550600px;}
.y38{bottom:589.260450px;}
.y1b2{bottom:590.786280px;}
.y1de{bottom:591.150600px;}
.y8{bottom:592.740000px;}
.y82{bottom:593.850450px;}
.yfb{bottom:595.470450px;}
.y58{bottom:597.000450px;}
.y179{bottom:598.440600px;}
.yd7{bottom:605.910450px;}
.yab{bottom:606.360600px;}
.y124{bottom:606.540450px;}
.y1b1{bottom:607.980600px;}
.y1dd{bottom:608.340450px;}
.y178{bottom:615.630450px;}
.y37{bottom:619.230450px;}
.y151{bottom:622.380450px;}
.y81{bottom:624.009540px;}
.y1b0{bottom:625.170450px;}
.yaa{bottom:625.350600px;}
.y1dc{bottom:626.250450px;}
.y123{bottom:626.250600px;}
.y7{bottom:626.580000px;}
.yd6{bottom:626.880450px;}
.y57{bottom:627.060450px;}
.y128{bottom:628.771650px;}
.y177{bottom:633.628980px;}
.yfa{bottom:636.240300px;}
.y36{bottom:640.200450px;}
.y1af{bottom:643.170600px;}
.y1db{bottom:643.530450px;}
.y14e{bottom:643.899360px;}
.ya9{bottom:644.340450px;}
.y122{bottom:645.240600px;}
.y80{bottom:646.410450px;}
.yd5{bottom:647.850450px;}
.y56{bottom:648.030450px;}
.y176{bottom:650.823300px;}
.y6{bottom:651.780000px;}
.y127{bottom:652.261200px;}
.y1ae{bottom:660.360450px;}
.y35{bottom:661.260450px;}
.y1da{bottom:661.441050px;}
.y14d{bottom:662.790450px;}
.y121{bottom:664.230450px;}
.y175{bottom:668.098830px;}
.yf9{bottom:669.450450px;}
.ya8{bottom:672.960450px;}
.y5{bottom:676.980000px;}
.yd4{bottom:678.001890px;}
.y55{bottom:678.189540px;}
.y1ad{bottom:678.361200px;}
.y1d9{bottom:678.630900px;}
.y34{bottom:682.230450px;}
.y14c{bottom:682.591200px;}
.y150{bottom:685.110600px;}
.y174{bottom:685.293150px;}
.y7f{bottom:686.730450px;}
.y120{bottom:688.350450px;}
.y1ac{bottom:695.551050px;}
.y1d8{bottom:695.910900px;}
.yd3{bottom:700.500450px;}
.y54{bottom:700.590450px;}
.y14b{bottom:701.490600px;}
.yf8{bottom:702.030450px;}
.y4{bottom:702.180000px;}
.y173{bottom:702.478380px;}
.y33{bottom:703.200450px;}
.ya6{bottom:706.170540px;}
.ya7{bottom:706.170600px;}
.y7e{bottom:707.700450px;}
.y14f{bottom:708.511200px;}
.y11f{bottom:711.750450px;}
.y1ab{bottom:712.740900px;}
.y11e{bottom:712.831050px;}
.y1d7{bottom:713.100600px;}
.y172{bottom:719.672700px;}
.y14a{bottom:720.480450px;}
.y32{bottom:724.260450px;}
.ya5{bottom:725.160450px;}
.y3{bottom:727.380000px;}
.y7d{bottom:728.670450px;}
.y1aa{bottom:729.930600px;}
.y1d6{bottom:730.290450px;}
.yf7{bottom:732.000450px;}
.y53{bottom:740.910450px;}
.yd2{bottom:741.270450px;}
.y149{bottom:744.600450px;}
.y31{bottom:745.230450px;}
.y1a9{bottom:747.120450px;}
.y1d5{bottom:748.287930px;}
.y7c{bottom:749.730450px;}
.y171{bottom:754.142550px;}
.y2{bottom:756.540000px;}
.ya4{bottom:758.730450px;}
.y52{bottom:761.880450px;}
.yf6{bottom:762.060450px;}
.y11d{bottom:763.410450px;}
.y1a8{bottom:765.118080px;}
.y1d4{bottom:765.482250px;}
.y30{bottom:766.200450px;}
.y148{bottom:768.000450px;}
.y147{bottom:769.170450px;}
.y170{bottom:771.323310px;}
.yd1{bottom:774.390450px;}
.y7b{bottom:779.700450px;}
.y1a7{bottom:782.312400px;}
.y1d3{bottom:782.671950px;}
.y51{bottom:782.850450px;}
.yf5{bottom:783.030450px;}
.y2f{bottom:787.260450px;}
.y11c{bottom:787.621050px;}
.y16f{bottom:788.517630px;}
.y1a6{bottom:799.587780px;}
.y1d2{bottom:799.857300px;}
.y7a{bottom:800.670450px;}
.yf4{bottom:804.000450px;}
.y16e{bottom:805.711950px;}
.yd0{bottom:807.060450px;}
.y2e{bottom:808.230450px;}
.y50{bottom:813.001890px;}
.y146{bottom:816.240450px;}
.y1a5{bottom:816.782100px;}
.y1d1{bottom:817.141800px;}
.ya3{bottom:818.760450px;}
.y16d{bottom:822.983010px;}
.yf3{bottom:825.060450px;}
.y79{bottom:830.730450px;}
.y1a4{bottom:833.971950px;}
.y4f{bottom:835.500450px;}
.ycf{bottom:837.030450px;}
.y2d{bottom:838.200450px;}
.y16c{bottom:840.177330px;}
.y145{bottom:842.160450px;}
.ya2{bottom:843.960450px;}
.yf2{bottom:846.030450px;}
.y1a3{bottom:851.161800px;}
.y1d0{bottom:851.521350px;}
.y78{bottom:851.700450px;}
.y16b{bottom:857.371650px;}
.y118{bottom:857.910540px;}
.y119{bottom:857.910600px;}
.yce{bottom:867.000450px;}
.y1a2{bottom:868.437330px;}
.y1cf{bottom:868.711200px;}
.ya1{bottom:873.660450px;}
.y16a{bottom:874.556850px;}
.y4e{bottom:875.730450px;}
.yf1{bottom:876.189540px;}
.y117{bottom:876.900450px;}
.y77{bottom:881.670450px;}
.y1a1{bottom:885.631650px;}
.y1ce{bottom:885.986730px;}
.ycd{bottom:888.060450px;}
.y144{bottom:889.230450px;}
.y169{bottom:891.841350px;}
.ya0{bottom:894.360450px;}
.y115{bottom:896.610750px;}
.y4d{bottom:896.700450px;}
.y2c{bottom:898.230450px;}
.yf0{bottom:898.590450px;}
.y76{bottom:902.730450px;}
.y1a0{bottom:902.821350px;}
.y1cd{bottom:903.181050px;}
.y168{bottom:909.026730px;}
.ycc{bottom:909.030450px;}
.y9f{bottom:915.060450px;}
.y11b{bottom:915.420450px;}
.y114{bottom:915.600750px;}
.y142{bottom:919.749360px;}
.y19f{bottom:920.011200px;}
.y1cc{bottom:920.366280px;}
.y75{bottom:923.700450px;}
.y167{bottom:926.221050px;}
.y4c{bottom:926.851890px;}
.y2b{bottom:928.200450px;}
.ycb{bottom:930.000450px;}
.y113{bottom:934.590600px;}
.y9e{bottom:935.760450px;}
.y19e{bottom:937.196550px;}
.y1cb{bottom:937.560600px;}
.y141{bottom:938.640450px;}
.yef{bottom:938.910450px;}
.y11a{bottom:940.260600px;}
.y166{bottom:943.406400px;}
.y4b{bottom:949.350450px;}
.yca{bottom:951.060450px;}
.y116{bottom:953.580540px;}
.y112{bottom:953.580600px;}
.y74{bottom:953.670450px;}
.y19d{bottom:954.481050px;}
.y1ca{bottom:954.840600px;}
.y9d{bottom:956.460450px;}
.y2a{bottom:958.260450px;}
.y13f{bottom:958.350750px;}
.yee{bottom:959.880450px;}
.y165{bottom:960.690900px;}
.y19c{bottom:971.670750px;}
.y1c9{bottom:972.030450px;}
.y111{bottom:972.570450px;}
.y73{bottom:974.730450px;}
.y9c{bottom:977.160450px;}
.y13e{bottom:977.340750px;}
.y164{bottom:977.880600px;}
.y29{bottom:978.960450px;}
.yed{bottom:980.850450px;}
.yc9{bottom:981.219540px;}
.y19b{bottom:988.860600px;}
.y4a{bottom:989.580450px;}
.y1c8{bottom:989.936550px;}
.y163{bottom:995.070450px;}
.y72{bottom:995.700450px;}
.y13d{bottom:996.330600px;}
.y110{bottom:996.690450px;}
.y28{bottom:999.660450px;}
.yec{bottom:1001.910450px;}
.y143{bottom:1002.000600px;}
.yc8{bottom:1003.620450px;}
.y19a{bottom:1006.050450px;}
.y9b{bottom:1006.860450px;}
.y1c7{bottom:1007.221050px;}
.y49{bottom:1010.550450px;}
.y162{bottom:1013.071050px;}
.y140{bottom:1015.320540px;}
.y13c{bottom:1015.320600px;}
.y10f{bottom:1020.000450px;}
.y27{bottom:1020.360450px;}
.y10e{bottom:1021.170750px;}
.yeb{bottom:1022.880450px;}
.y199{bottom:1024.050900px;}
.y1c6{bottom:1024.410900px;}
.y71{bottom:1025.670450px;}
.y9a{bottom:1027.560450px;}
.y161{bottom:1030.260750px;}
.y13b{bottom:1034.310450px;}
.y48{bottom:1040.701890px;}
.y26{bottom:1041.060450px;}
.y198{bottom:1041.240600px;}
.y1c5{bottom:1041.600600px;}
.yc7{bottom:1043.850450px;}
.y70{bottom:1046.730450px;}
.y160{bottom:1047.450600px;}
.y99{bottom:1048.260450px;}
.y13a{bottom:1058.430450px;}
.y197{bottom:1058.520600px;}
.y1c4{bottom:1058.790450px;}
.y10d{bottom:1058.880600px;}
.y47{bottom:1063.200450px;}
.y15f{bottom:1064.640450px;}
.yc6{bottom:1064.910450px;}
.y6f{bottom:1067.700450px;}
.y98{bottom:1068.960450px;}
.y25{bottom:1071.208350px;}
.y196{bottom:1075.710450px;}
.y1c3{bottom:1076.790600px;}
.y10c{bottom:1077.870450px;}
.y139{bottom:1081.830450px;}
.y15e{bottom:1082.640600px;}
.y138{bottom:1082.910750px;}
.yc5{bottom:1085.880450px;}
.y97{bottom:1089.660450px;}
.y195{bottom:1093.615950px;}
.y194{bottom:1093.620450px;}
.y24{bottom:1093.638630px;}
.y1c2{bottom:1093.980450px;}
.y6e{bottom:1097.670450px;}
.y15d{bottom:1099.830450px;}
.y46{bottom:1103.970450px;}
.y10b{bottom:1107.210450px;}
.y96{bottom:1110.360450px;}
.y193{bottom:1110.900450px;}
.y1c1{bottom:1111.980450px;}
.y23{bottom:1116.039540px;}
.y6d{bottom:1118.730450px;}
.y137{bottom:1120.620450px;}
.y192{bottom:1128.810450px;}
.y45{bottom:1137.090450px;}
.y22{bottom:1138.440450px;}
.y6c{bottom:1139.700450px;}
.y1c0{bottom:1139.790600px;}
.y136{bottom:1139.970450px;}
.y95{bottom:1140.060450px;}
.y191{bottom:1154.010450px;}
.y21{bottom:1195.050270px;}
.y20{bottom:1195.140450px;}
.y1{bottom:1247.400000px;}
.h1b{height:12.390469px;}
.h1e{height:43.909277px;}
.h5{height:50.832000px;}
.h7{height:59.722560px;}
.h8{height:62.703281px;}
.h18{height:64.148040px;}
.hc{height:68.710781px;}
.h3{height:70.628906px;}
.h1a{height:70.664062px;}
.ha{height:75.093750px;}
.h4{height:76.248000px;}
.h9{height:81.476719px;}
.hb{height:87.484219px;}
.he{height:106.868621px;}
.h6{height:115.992000px;}
.h19{height:132.907440px;}
.h1c{height:133.268040px;}
.h1d{height:133.286040px;}
.h16{height:140.710781px;}
.h10{height:140.711381px;}
.h17{height:141.073181px;}
.h13{height:141.073781px;}
.h14{height:144.275141px;}
.h15{height:144.307781px;}
.h12{height:144.670181px;}
.h11{height:144.670421px;}
.hf{height:162.280541px;}
.hd{height:162.668621px;}
.h2{height:1262.866500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.396500px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w3{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:42.480000px;}
.x2{left:80.820000px;}
.x4{left:106.285950px;}
.x33{left:114.390000px;}
.x6{left:119.781000px;}
.x11{left:148.860000px;}
.x14{left:151.290000px;}
.x31{left:152.460000px;}
.x2c{left:157.410000px;}
.x9{left:159.390000px;}
.x38{left:165.510000px;}
.x12{left:175.590000px;}
.x7{left:177.726510px;}
.x2d{left:179.009700px;}
.x5{left:184.230000px;}
.x3a{left:187.109700px;}
.x39{left:192.503880px;}
.x15{left:204.480000px;}
.x2e{left:206.018610px;}
.x17{left:212.669700px;}
.x3b{left:214.118610px;}
.x19{left:228.695010px;}
.x28{left:233.009400px;}
.x34{left:241.109400px;}
.x26{left:244.529250px;}
.x1d{left:246.420300px;}
.xd{left:263.338470px;}
.x2f{left:277.380000px;}
.x23{left:288.805590px;}
.x1e{left:309.429270px;}
.x32{left:314.730000px;}
.x10{left:326.693790px;}
.x30{left:327.960000px;}
.x22{left:331.559700px;}
.x35{left:335.609100px;}
.x20{left:346.223790px;}
.x8{left:360.812400px;}
.x1a{left:374.405580px;}
.xf{left:375.479730px;}
.xe{left:378.721710px;}
.xb{left:384.659250px;}
.x1b{left:386.279820px;}
.x1f{left:388.447650px;}
.x29{left:408.508800px;}
.x13{left:412.293780px;}
.x21{left:416.700000px;}
.x1c{left:419.580000px;}
.xa{left:422.550000px;}
.xc{left:427.410000px;}
.x3{left:446.490000px;}
.x2a{left:525.508200px;}
.x24{left:531.090000px;}
.x36{left:533.608200px;}
.x18{left:606.058950px;}
.x27{left:628.288500px;}
.x16{left:680.399550px;}
.x25{left:691.110000px;}
.x2b{left:696.328650px;}
.x37{left:704.428650px;}
@media print{
.v2{vertical-align:-74.560000pt;}
.v8{vertical-align:-68.480000pt;}
.va{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.v3{vertical-align:33.918080pt;}
.v4{vertical-align:41.917013pt;}
.v9{vertical-align:61.119467pt;}
.v6{vertical-align:64.000533pt;}
.v7{vertical-align:67.519680pt;}
.v5{vertical-align:83.518080pt;}
.ls3{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls58{letter-spacing:-0.096192pt;}
.ls8{letter-spacing:-0.096000pt;}
.ls1e{letter-spacing:-0.083200pt;}
.ls53{letter-spacing:-0.074816pt;}
.ls19{letter-spacing:-0.070400pt;}
.ls50{letter-spacing:-0.069472pt;}
.ls5a{letter-spacing:-0.064128pt;}
.ls1b{letter-spacing:-0.064000pt;}
.ls34{letter-spacing:-0.062496pt;}
.ls55{letter-spacing:-0.058784pt;}
.ls17{letter-spacing:-0.057600pt;}
.ls4f{letter-spacing:-0.053440pt;}
.ls16{letter-spacing:-0.051200pt;}
.ls4e{letter-spacing:-0.048096pt;}
.ls1a{letter-spacing:-0.044800pt;}
.ls4d{letter-spacing:-0.042752pt;}
.ls14{letter-spacing:-0.038400pt;}
.ls52{letter-spacing:-0.037408pt;}
.ls11{letter-spacing:-0.034720pt;}
.ls59{letter-spacing:-0.032064pt;}
.ls12{letter-spacing:-0.032000pt;}
.ls3b{letter-spacing:-0.027776pt;}
.ls4c{letter-spacing:-0.026720pt;}
.ls13{letter-spacing:-0.025600pt;}
.ls41{letter-spacing:-0.022368pt;}
.ls51{letter-spacing:-0.021376pt;}
.ls38{letter-spacing:-0.020832pt;}
.ls15{letter-spacing:-0.019200pt;}
.ls31{letter-spacing:-0.017568pt;}
.ls54{letter-spacing:-0.016032pt;}
.ls36{letter-spacing:-0.014912pt;}
.ls1c{letter-spacing:-0.012800pt;}
.ls56{letter-spacing:-0.010688pt;}
.ls37{letter-spacing:-0.007456pt;}
.ls27{letter-spacing:-0.006944pt;}
.ls1d{letter-spacing:-0.006400pt;}
.ls57{letter-spacing:-0.005344pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.004256pt;}
.ls4a{letter-spacing:0.005344pt;}
.ls40{letter-spacing:0.005856pt;}
.ls18{letter-spacing:0.006400pt;}
.ls39{letter-spacing:0.006944pt;}
.ls46{letter-spacing:0.010688pt;}
.ls43{letter-spacing:0.012768pt;}
.lsb{letter-spacing:0.012800pt;}
.lsa{letter-spacing:0.013888pt;}
.ls5b{letter-spacing:0.016032pt;}
.ls22{letter-spacing:0.019200pt;}
.ls49{letter-spacing:0.021376pt;}
.ls5d{letter-spacing:0.026720pt;}
.ls9{letter-spacing:0.027776pt;}
.ls2b{letter-spacing:0.029280pt;}
.ls3c{letter-spacing:0.032000pt;}
.ls45{letter-spacing:0.032064pt;}
.ls21{letter-spacing:0.034720pt;}
.ls32{letter-spacing:0.035136pt;}
.ls29{letter-spacing:0.040992pt;}
.ls20{letter-spacing:0.041664pt;}
.ls48{letter-spacing:0.042752pt;}
.ls25{letter-spacing:0.044736pt;}
.ls33{letter-spacing:0.044800pt;}
.ls2a{letter-spacing:0.046848pt;}
.ls44{letter-spacing:0.048096pt;}
.ls3a{letter-spacing:0.052192pt;}
.ls2e{letter-spacing:0.052704pt;}
.ls23{letter-spacing:0.055552pt;}
.ls2c{letter-spacing:0.058560pt;}
.ls24{letter-spacing:0.059648pt;}
.ls4{letter-spacing:0.064000pt;}
.ls3e{letter-spacing:0.064416pt;}
.ls35{letter-spacing:0.067104pt;}
.ls3f{letter-spacing:0.070272pt;}
.ls2d{letter-spacing:0.076128pt;}
.ls28{letter-spacing:0.076384pt;}
.ls10{letter-spacing:0.076800pt;}
.ls2f{letter-spacing:0.081984pt;}
.ls30{letter-spacing:0.087840pt;}
.ls42{letter-spacing:0.093696pt;}
.ls1{letter-spacing:0.096000pt;}
.ls26{letter-spacing:0.104160pt;}
.lsf{letter-spacing:0.121600pt;}
.lse{letter-spacing:0.128000pt;}
.ls4b{letter-spacing:0.133600pt;}
.lsd{letter-spacing:0.134400pt;}
.ls6{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.288000pt;}
.ls5c{letter-spacing:44.675840pt;}
.ls47{letter-spacing:66.746560pt;}
.lsc{letter-spacing:871.808000pt;}
.ls1f{letter-spacing:1165.953920pt;}
.ws2{word-spacing:-23.712000pt;}
.wsc{word-spacing:-17.753600pt;}
.wsd{word-spacing:-17.708800pt;}
.ws0{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws11d{word-spacing:-12.317920pt;}
.ws11c{word-spacing:-12.211040pt;}
.ws10b{word-spacing:-12.200352pt;}
.wse2{word-spacing:-12.184320pt;}
.ws10a{word-spacing:-12.168288pt;}
.ws10c{word-spacing:-12.130880pt;}
.ws10d{word-spacing:-12.125536pt;}
.wse0{word-spacing:-11.831680pt;}
.wsb{word-spacing:-1.120000pt;}
.ws37{word-spacing:-0.465248pt;}
.ws10{word-spacing:-0.423584pt;}
.wsf{word-spacing:-0.409696pt;}
.wse6{word-spacing:-0.395456pt;}
.ws9{word-spacing:-0.384000pt;}
.wsc8{word-spacing:-0.381920pt;}
.wsde{word-spacing:-0.351360pt;}
.wsdc{word-spacing:-0.345504pt;}
.ws109{word-spacing:-0.325984pt;}
.ws13{word-spacing:-0.298592pt;}
.ws12{word-spacing:-0.291648pt;}
.wsa0{word-spacing:-0.229152pt;}
.ws2b{word-spacing:-0.194432pt;}
.ws7{word-spacing:-0.192000pt;}
.wse{word-spacing:-0.180544pt;}
.ws2c{word-spacing:-0.131936pt;}
.ws9b{word-spacing:-0.118048pt;}
.ws8{word-spacing:-0.096000pt;}
.ws4{word-spacing:-0.064000pt;}
.ws11{word-spacing:-0.055552pt;}
.ws101{word-spacing:-0.048096pt;}
.wseb{word-spacing:-0.037408pt;}
.ws81{word-spacing:-0.035136pt;}
.ws80{word-spacing:-0.029280pt;}
.ws8b{word-spacing:-0.027776pt;}
.ws7e{word-spacing:-0.023424pt;}
.wsec{word-spacing:-0.021376pt;}
.wsdf{word-spacing:-0.017568pt;}
.ws11e{word-spacing:-0.016032pt;}
.wsdb{word-spacing:-0.011712pt;}
.ws108{word-spacing:-0.010688pt;}
.ws7b{word-spacing:-0.005856pt;}
.ws11f{word-spacing:-0.005344pt;}
.ws3{word-spacing:0.000000pt;}
.wse1{word-spacing:0.004256pt;}
.wsf8{word-spacing:0.005344pt;}
.ws7c{word-spacing:0.005856pt;}
.wse5{word-spacing:0.010688pt;}
.wsd7{word-spacing:0.011712pt;}
.wsd8{word-spacing:0.012768pt;}
.ws99{word-spacing:0.014912pt;}
.wsef{word-spacing:0.016032pt;}
.wsdd{word-spacing:0.017568pt;}
.wse8{word-spacing:0.021376pt;}
.ws2a{word-spacing:0.022368pt;}
.ws7d{word-spacing:0.023424pt;}
.wse3{word-spacing:0.026720pt;}
.wsea{word-spacing:0.032064pt;}
.ws107{word-spacing:0.037408pt;}
.wsd5{word-spacing:0.038400pt;}
.wse4{word-spacing:0.042752pt;}
.wsda{word-spacing:0.046848pt;}
.wse7{word-spacing:0.048096pt;}
.wsa9{word-spacing:0.070400pt;}
.wsce{word-spacing:0.076800pt;}
.wsa6{word-spacing:0.089600pt;}
.ws5{word-spacing:0.128000pt;}
.ws32{word-spacing:0.134400pt;}
.ws50{word-spacing:0.140800pt;}
.ws28{word-spacing:0.147200pt;}
.ws22{word-spacing:0.153600pt;}
.ws1a{word-spacing:0.160000pt;}
.ws3c{word-spacing:0.166400pt;}
.ws1c{word-spacing:0.172800pt;}
.ws27{word-spacing:0.179200pt;}
.ws4a{word-spacing:0.185600pt;}
.ws6{word-spacing:0.192000pt;}
.ws1b{word-spacing:0.198400pt;}
.ws26{word-spacing:0.211200pt;}
.ws9a{word-spacing:0.253504pt;}
.ws77{word-spacing:0.268800pt;}
.ws3b{word-spacing:0.281600pt;}
.wsa{word-spacing:0.288000pt;}
.wsd6{word-spacing:0.327936pt;}
.ws76{word-spacing:0.339200pt;}
.ws122{word-spacing:0.342016pt;}
.ws63{word-spacing:0.467200pt;}
.ws7a{word-spacing:0.492800pt;}
.ws8c{word-spacing:0.537600pt;}
.ws123{word-spacing:1.319968pt;}
.ws17{word-spacing:1.420800pt;}
.ws16{word-spacing:1.536000pt;}
.wsf6{word-spacing:1.629920pt;}
.wsad{word-spacing:1.766400pt;}
.wsac{word-spacing:1.779200pt;}
.ws14{word-spacing:1.804800pt;}
.ws15{word-spacing:1.868800pt;}
.ws47{word-spacing:2.060800pt;}
.ws46{word-spacing:2.156800pt;}
.ws2d{word-spacing:2.176000pt;}
.ws2f{word-spacing:2.182400pt;}
.ws2e{word-spacing:2.316800pt;}
.ws36{word-spacing:2.406400pt;}
.ws106{word-spacing:2.570464pt;}
.ws105{word-spacing:2.912480pt;}
.wsc0{word-spacing:3.046400pt;}
.wsc1{word-spacing:3.065600pt;}
.ws113{word-spacing:3.227776pt;}
.ws44{word-spacing:3.353600pt;}
.ws45{word-spacing:3.366400pt;}
.wsb9{word-spacing:3.385600pt;}
.ws4b{word-spacing:3.443200pt;}
.ws18{word-spacing:3.564800pt;}
.ws19{word-spacing:3.635200pt;}
.ws9d{word-spacing:3.673600pt;}
.ws9e{word-spacing:3.686400pt;}
.ws9c{word-spacing:3.699200pt;}
.wsc2{word-spacing:5.900800pt;}
.wsa5{word-spacing:5.907200pt;}
.ws54{word-spacing:5.913600pt;}
.ws55{word-spacing:5.926400pt;}
.wsc3{word-spacing:5.932800pt;}
.wsa4{word-spacing:5.971200pt;}
.ws119{word-spacing:6.418144pt;}
.ws118{word-spacing:6.423488pt;}
.wsb3{word-spacing:6.873600pt;}
.ws97{word-spacing:6.899200pt;}
.wsb4{word-spacing:6.969600pt;}
.ws98{word-spacing:6.988800pt;}
.ws96{word-spacing:7.059200pt;}
.ws75{word-spacing:7.238400pt;}
.ws74{word-spacing:7.283200pt;}
.ws25{word-spacing:7.372800pt;}
.wsfd{word-spacing:7.385408pt;}
.ws90{word-spacing:7.590400pt;}
.ws8f{word-spacing:7.699200pt;}
.wsf9{word-spacing:7.716736pt;}
.wsfa{word-spacing:7.722080pt;}
.wsb7{word-spacing:7.833600pt;}
.wsb8{word-spacing:7.846400pt;}
.ws112{word-spacing:8.341984pt;}
.ws111{word-spacing:8.347328pt;}
.ws86{word-spacing:8.492800pt;}
.ws85{word-spacing:8.499200pt;}
.ws84{word-spacing:8.780800pt;}
.ws87{word-spacing:8.787200pt;}
.ws82{word-spacing:8.812800pt;}
.ws83{word-spacing:8.953600pt;}
.wsf1{word-spacing:8.983264pt;}
.wsf0{word-spacing:8.993952pt;}
.ws79{word-spacing:9.740800pt;}
.ws60{word-spacing:9.747200pt;}
.ws5f{word-spacing:9.804800pt;}
.ws78{word-spacing:9.843200pt;}
.ws31{word-spacing:9.907200pt;}
.ws93{word-spacing:10.048000pt;}
.ws91{word-spacing:10.054400pt;}
.ws30{word-spacing:10.092800pt;}
.ws92{word-spacing:10.246400pt;}
.wsf4{word-spacing:10.265824pt;}
.wsf5{word-spacing:10.271168pt;}
.wsbc{word-spacing:10.393600pt;}
.wsbd{word-spacing:10.419200pt;}
.wsa8{word-spacing:10.624000pt;}
.ws29{word-spacing:10.700800pt;}
.ws58{word-spacing:10.720000pt;}
.ws24{word-spacing:10.726400pt;}
.ws1e{word-spacing:10.739200pt;}
.ws20{word-spacing:10.745600pt;}
.ws1f{word-spacing:10.758400pt;}
.ws21{word-spacing:10.764800pt;}
.ws1d{word-spacing:10.771200pt;}
.ws59{word-spacing:10.892800pt;}
.ws8d{word-spacing:11.366400pt;}
.ws8e{word-spacing:11.584000pt;}
.ws94{word-spacing:12.006400pt;}
.wsc4{word-spacing:12.019200pt;}
.wsc5{word-spacing:12.076800pt;}
.ws95{word-spacing:12.224000pt;}
.wsfc{word-spacing:12.809568pt;}
.wsfb{word-spacing:12.825600pt;}
.ws3f{word-spacing:13.260800pt;}
.ws3e{word-spacing:13.273600pt;}
.ws40{word-spacing:13.292800pt;}
.ws5e{word-spacing:13.363200pt;}
.ws52{word-spacing:13.881600pt;}
.ws71{word-spacing:13.907200pt;}
.ws70{word-spacing:13.939200pt;}
.ws51{word-spacing:14.073600pt;}
.ws53{word-spacing:14.240000pt;}
.wsb2{word-spacing:14.540800pt;}
.wsba{word-spacing:14.547200pt;}
.wsb1{word-spacing:14.560000pt;}
.wsbb{word-spacing:14.604800pt;}
.wsaa{word-spacing:15.526400pt;}
.wsab{word-spacing:15.552000pt;}
.ws89{word-spacing:15.808000pt;}
.ws67{word-spacing:15.840000pt;}
.ws88{word-spacing:15.852800pt;}
.ws66{word-spacing:15.923200pt;}
.ws8a{word-spacing:15.942400pt;}
.ws23{word-spacing:16.064000pt;}
.ws72{word-spacing:18.732800pt;}
.ws73{word-spacing:18.777600pt;}
.ws62{word-spacing:19.366400pt;}
.ws61{word-spacing:19.372800pt;}
.ws6e{word-spacing:20.006400pt;}
.ws6d{word-spacing:20.070400pt;}
.ws121{word-spacing:20.178944pt;}
.ws120{word-spacing:20.189632pt;}
.ws6f{word-spacing:20.288000pt;}
.ws42{word-spacing:20.640000pt;}
.ws41{word-spacing:20.774400pt;}
.ws104{word-spacing:20.825568pt;}
.ws34{word-spacing:21.241600pt;}
.ws35{word-spacing:21.254400pt;}
.ws33{word-spacing:21.369600pt;}
.ws5d{word-spacing:21.580800pt;}
.ws5c{word-spacing:21.734400pt;}
.ws110{word-spacing:22.102784pt;}
.ws10f{word-spacing:22.113472pt;}
.wsa2{word-spacing:22.246400pt;}
.wsa3{word-spacing:22.336000pt;}
.ws3d{word-spacing:22.534400pt;}
.wsed{word-spacing:23.064704pt;}
.wsee{word-spacing:23.075392pt;}
.ws6c{word-spacing:23.532800pt;}
.ws9f{word-spacing:23.776000pt;}
.wsd3{word-spacing:23.820800pt;}
.wsd4{word-spacing:23.859200pt;}
.wsc6{word-spacing:24.096000pt;}
.ws49{word-spacing:24.147200pt;}
.wsc7{word-spacing:24.153600pt;}
.ws48{word-spacing:24.160000pt;}
.ws38{word-spacing:24.473600pt;}
.ws3a{word-spacing:24.505600pt;}
.ws39{word-spacing:24.556800pt;}
.wsae{word-spacing:25.088000pt;}
.wsb0{word-spacing:25.113600pt;}
.wsaf{word-spacing:25.273600pt;}
.wsf3{word-spacing:26.907040pt;}
.wsbe{word-spacing:27.014400pt;}
.wsbf{word-spacing:27.027200pt;}
.wsf7{word-spacing:29.760736pt;}
.ws5a{word-spacing:31.193600pt;}
.ws5b{word-spacing:31.212800pt;}
.wsb5{word-spacing:33.843200pt;}
.wsb6{word-spacing:33.881600pt;}
.wsa7{word-spacing:34.393600pt;}
.wsf2{word-spacing:35.232992pt;}
.ws4e{word-spacing:36.947200pt;}
.ws4f{word-spacing:36.985600pt;}
.ws6a{word-spacing:37.292800pt;}
.ws114{word-spacing:37.466784pt;}
.ws57{word-spacing:43.014400pt;}
.ws56{word-spacing:43.040000pt;}
.wsd0{word-spacing:43.347200pt;}
.wscf{word-spacing:43.603200pt;}
.wsd2{word-spacing:44.633600pt;}
.wsd1{word-spacing:44.652800pt;}
.ws4c{word-spacing:44.940800pt;}
.ws4d{word-spacing:45.132800pt;}
.wscd{word-spacing:47.840000pt;}
.wscc{word-spacing:48.147200pt;}
.ws43{word-spacing:48.774400pt;}
.ws64{word-spacing:48.812800pt;}
.ws65{word-spacing:49.491200pt;}
.wsc9{word-spacing:55.520000pt;}
.ws6b{word-spacing:55.526400pt;}
.ws69{word-spacing:56.793600pt;}
.ws68{word-spacing:56.806400pt;}
.wsd9{word-spacing:71.050848pt;}
.wscb{word-spacing:77.868800pt;}
.wsca{word-spacing:78.105600pt;}
.wsa1{word-spacing:87.212800pt;}
.ws103{word-spacing:126.006176pt;}
.ws100{word-spacing:126.011520pt;}
.ws102{word-spacing:126.048928pt;}
.wsff{word-spacing:126.059616pt;}
.wsfe{word-spacing:126.064960pt;}
.wse9{word-spacing:126.075648pt;}
.ws11b{word-spacing:126.326816pt;}
.ws117{word-spacing:126.332160pt;}
.ws11a{word-spacing:126.369568pt;}
.ws116{word-spacing:126.380256pt;}
.ws115{word-spacing:126.385600pt;}
.ws10e{word-spacing:126.396288pt;}
.ws7f{word-spacing:991.368096pt;}
._18{margin-left:-45.440000pt;}
._1d{margin-left:-31.680000pt;}
._12{margin-left:-21.433600pt;}
._34{margin-left:-12.184320pt;}
._7{margin-left:-10.560000pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.056000pt;}
._a{width:3.123200pt;}
._9{width:4.377600pt;}
._10{width:5.984000pt;}
._6{width:7.910400pt;}
._b{width:9.459200pt;}
._3{width:10.560000pt;}
._c{width:11.520000pt;}
._e{width:14.156800pt;}
._1b{width:17.600000pt;}
._26{width:22.720000pt;}
._1a{width:24.640000pt;}
._14{width:26.240000pt;}
._17{width:28.032000pt;}
._1c{width:29.440000pt;}
._13{width:31.040000pt;}
._11{width:34.560000pt;}
._15{width:35.520000pt;}
._24{width:42.816000pt;}
._8{width:45.440000pt;}
._19{width:46.656000pt;}
._16{width:48.640000pt;}
._d{width:52.480000pt;}
._25{width:53.760000pt;}
._4{width:56.000000pt;}
._27{width:58.368000pt;}
._21{width:60.478581pt;}
._5{width:63.360000pt;}
._2{width:70.400000pt;}
._f{width:73.920000pt;}
._23{width:75.193483pt;}
._20{width:98.216693pt;}
._35{width:101.759968pt;}
._32{width:105.944331pt;}
._33{width:126.080672pt;}
._22{width:143.677344pt;}
._38{width:168.036267pt;}
._28{width:170.880000pt;}
._1e{width:182.712949pt;}
._31{width:185.923189pt;}
._30{width:202.265333pt;}
._37{width:214.422933pt;}
._3a{width:237.663680pt;}
._39{width:267.023723pt;}
._2b{width:276.145365pt;}
._2e{width:279.799509pt;}
._2f{width:353.329131pt;}
._36{width:354.932331pt;}
._2a{width:765.810304pt;}
._2c{width:940.485365pt;}
._1f{width:991.303701pt;}
._2d{width:1284.607200pt;}
._29{width:1733.809152pt;}
.fs8{font-size:10.560000pt;}
.fs2{font-size:37.120000pt;}
.fs7{font-size:42.560000pt;}
.fs3{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.440000pt;}
.fs5{font-size:74.560000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:39.200000pt;}
.y1e{bottom:58.720000pt;}
.y1d{bottom:76.960000pt;}
.y1c{bottom:95.040000pt;}
.y6b{bottom:96.027067pt;}
.y10a{bottom:103.867067pt;}
.y1b{bottom:113.120000pt;}
.y6a{bottom:114.667067pt;}
.yea{bottom:117.387200pt;}
.yc4{bottom:126.827067pt;}
.y109{bottom:130.587067pt;}
.y1a{bottom:131.200000pt;}
.y69{bottom:133.387067pt;}
.ye9{bottom:136.027200pt;}
.yc3{bottom:145.547067pt;}
.y19{bottom:149.440000pt;}
.ye8{bottom:154.667200pt;}
.y108{bottom:157.227067pt;}
.y68{bottom:160.027067pt;}
.yc2{bottom:164.187067pt;}
.y18{bottom:167.520000pt;}
.y190{bottom:169.867067pt;}
.y94{bottom:171.147067pt;}
.ye7{bottom:173.387200pt;}
.y67{bottom:178.667067pt;}
.yc1{bottom:182.827067pt;}
.y107{bottom:183.867067pt;}
.y17{bottom:185.600000pt;}
.y18f{bottom:188.427200pt;}
.y93{bottom:189.547067pt;}
.ye6{bottom:192.027200pt;}
.y16{bottom:203.680000pt;}
.y18e{bottom:203.707067pt;}
.y66{bottom:205.387067pt;}
.y92{bottom:207.947067pt;}
.ybd{bottom:209.947813pt;}
.y106{bottom:210.587067pt;}
.ye5{bottom:218.667200pt;}
.y18d{bottom:219.707200pt;}
.y15{bottom:221.920000pt;}
.y91{bottom:226.347067pt;}
.ybc{bottom:226.827733pt;}
.yc0{bottom:226.829200pt;}
.y65{bottom:232.027067pt;}
.y18c{bottom:234.987067pt;}
.y105{bottom:237.227067pt;}
.ye4{bottom:237.387200pt;}
.y14{bottom:240.000000pt;}
.ybb{bottom:243.627200pt;}
.ybf{bottom:243.628667pt;}
.y90{bottom:244.747067pt;}
.y64{bottom:250.667067pt;}
.y18b{bottom:250.903600pt;}
.y13{bottom:258.080000pt;}
.yba{bottom:260.507067pt;}
.ybe{bottom:260.508533pt;}
.y8f{bottom:263.147067pt;}
.y104{bottom:263.867067pt;}
.ye3{bottom:264.027200pt;}
.y18a{bottom:266.267600pt;}
.y12{bottom:276.320000pt;}
.y63{bottom:277.387067pt;}
.y189{bottom:281.543360pt;}
.ye2{bottom:282.667200pt;}
.y44{bottom:283.787067pt;}
.yb9{bottom:285.947067pt;}
.y8e{bottom:289.547067pt;}
.y1ed{bottom:290.507067pt;}
.y103{bottom:290.587067pt;}
.y11{bottom:294.400000pt;}
.y62{bottom:296.027067pt;}
.y188{bottom:296.827200pt;}
.y1bf{bottom:302.027067pt;}
.y43{bottom:302.427067pt;}
.y1ec{bottom:307.867067pt;}
.y8d{bottom:307.947067pt;}
.ye1{bottom:309.387200pt;}
.y187{bottom:312.107067pt;}
.y10{bottom:312.480000pt;}
.yb8{bottom:315.547200pt;}
.yb7{bottom:315.554453pt;}
.y102{bottom:317.227067pt;}
.y1be{bottom:320.587200pt;}
.y61{bottom:322.667067pt;}
.y1eb{bottom:323.227067pt;}
.y8c{bottom:326.347067pt;}
.ye0{bottom:328.027200pt;}
.y42{bottom:329.067067pt;}
.y186{bottom:330.507333pt;}
.yf{bottom:330.560000pt;}
.y135{bottom:330.827067pt;}
.yb6{bottom:332.346533pt;}
.y101{bottom:335.867067pt;}
.y1ea{bottom:339.147067pt;}
.y8b{bottom:344.747067pt;}
.y185{bottom:345.707067pt;}
.ydf{bottom:346.667200pt;}
.y41{bottom:347.787067pt;}
.ye{bottom:348.000000pt;}
.y132{bottom:348.427733pt;}
.y131{bottom:348.434987pt;}
.y60{bottom:349.387067pt;}
.y1bd{bottom:351.867333pt;}
.y1e9{bottom:354.507067pt;}
.y100{bottom:354.587067pt;}
.y184{bottom:361.707333pt;}
.y8a{bottom:363.147067pt;}
.y130{bottom:365.227067pt;}
.yb5{bottom:365.307067pt;}
.y40{bottom:366.427067pt;}
.yd{bottom:366.720000pt;}
.y1bc{bottom:367.147200pt;}
.y5f{bottom:368.027067pt;}
.y1e8{bottom:370.423627pt;}
.yff{bottom:373.227067pt;}
.yde{bottom:373.387200pt;}
.y183{bottom:376.987200pt;}
.y15c{bottom:378.587200pt;}
.y89{bottom:381.547067pt;}
.y12f{bottom:382.835120pt;}
.yb4{bottom:382.907733pt;}
.y1bb{bottom:383.143627pt;}
.y3f{bottom:385.067067pt;}
.y134{bottom:385.067200pt;}
.y1e7{bottom:385.707467pt;}
.ydd{bottom:392.027200pt;}
.yc{bottom:392.480000pt;}
.y182{bottom:392.903200pt;}
.y5e{bottom:394.667067pt;}
.y1ba{bottom:398.427467pt;}
.y12e{bottom:399.627200pt;}
.yb3{bottom:399.787600pt;}
.yfe{bottom:399.867067pt;}
.y159{bottom:400.035120pt;}
.y1e6{bottom:401.063360pt;}
.y133{bottom:405.867733pt;}
.y88{bottom:407.867067pt;}
.y181{bottom:408.267200pt;}
.y3e{bottom:411.787067pt;}
.y5d{bottom:413.387067pt;}
.y1b9{bottom:413.703227pt;}
.y1e5{bottom:416.347200pt;}
.y12d{bottom:416.507067pt;}
.yb2{bottom:416.587067pt;}
.y158{bottom:416.827200pt;}
.yfd{bottom:418.587067pt;}
.ydc{bottom:418.667200pt;}
.y180{bottom:423.547067pt;}
.yb{bottom:426.080000pt;}
.y87{bottom:426.587067pt;}
.y1b8{bottom:428.987067pt;}
.y3d{bottom:430.427067pt;}
.y1e4{bottom:431.627067pt;}
.y157{bottom:434.435120pt;}
.y15b{bottom:436.667333pt;}
.ydb{bottom:437.387200pt;}
.y12c{bottom:437.947200pt;}
.y17f{bottom:439.467200pt;}
.y5c{bottom:440.027067pt;}
.yb1{bottom:442.107200pt;}
.y1b7{bottom:444.347067pt;}
.y86{bottom:445.227067pt;}
.y1e3{bottom:447.623360pt;}
.y3c{bottom:449.067067pt;}
.y156{bottom:451.227200pt;}
.y17e{bottom:454.827200pt;}
.yda{bottom:456.027200pt;}
.y15a{bottom:457.467867pt;}
.y12b{bottom:458.747200pt;}
.ya{bottom:459.680000pt;}
.y12a{bottom:459.787600pt;}
.y1b6{bottom:462.667333pt;}
.y1e2{bottom:462.907200pt;}
.y85{bottom:463.867067pt;}
.y5b{bottom:466.667067pt;}
.y3b{bottom:467.787067pt;}
.y155{bottom:468.107067pt;}
.y17d{bottom:470.747733pt;}
.yae{bottom:471.626613pt;}
.yb0{bottom:471.626667pt;}
.y1b5{bottom:477.867067pt;}
.y1e1{bottom:478.827067pt;}
.y84{bottom:482.587067pt;}
.yd9{bottom:482.835147pt;}
.y5a{bottom:485.387067pt;}
.y17c{bottom:486.027600pt;}
.y3a{bottom:486.427067pt;}
.yad{bottom:488.506533pt;}
.y154{bottom:489.547067pt;}
.yaf{bottom:492.506267pt;}
.y9{bottom:493.280000pt;}
.y1b4{bottom:493.867200pt;}
.y1e0{bottom:494.187067pt;}
.y17b{bottom:501.387600pt;}
.yd8{bottom:502.747067pt;}
.y129{bottom:504.747067pt;}
.y39{bottom:505.067067pt;}
.y1b3{bottom:509.147067pt;}
.y83{bottom:509.227067pt;}
.yfc{bottom:509.395147pt;}
.y1df{bottom:510.103200pt;}
.y153{bottom:510.347067pt;}
.y152{bottom:511.387067pt;}
.y59{bottom:512.027067pt;}
.y17a{bottom:516.667333pt;}
.yac{bottom:521.467067pt;}
.y125{bottom:522.267147pt;}
.y126{bottom:522.267200pt;}
.y38{bottom:523.787067pt;}
.y1b2{bottom:525.143360pt;}
.y1de{bottom:525.467200pt;}
.y8{bottom:526.880000pt;}
.y82{bottom:527.867067pt;}
.yfb{bottom:529.307067pt;}
.y58{bottom:530.667067pt;}
.y179{bottom:531.947200pt;}
.yd7{bottom:538.587067pt;}
.yab{bottom:538.987200pt;}
.y124{bottom:539.147067pt;}
.y1b1{bottom:540.427200pt;}
.y1dd{bottom:540.747067pt;}
.y178{bottom:547.227067pt;}
.y37{bottom:550.427067pt;}
.y151{bottom:553.227067pt;}
.y81{bottom:554.675147pt;}
.y1b0{bottom:555.707067pt;}
.yaa{bottom:555.867200pt;}
.y1dc{bottom:556.667067pt;}
.y123{bottom:556.667200pt;}
.y7{bottom:556.960000pt;}
.yd6{bottom:557.227067pt;}
.y57{bottom:557.387067pt;}
.y128{bottom:558.908133pt;}
.y177{bottom:563.225760pt;}
.yfa{bottom:565.546933pt;}
.y36{bottom:569.067067pt;}
.y1af{bottom:571.707200pt;}
.y1db{bottom:572.027067pt;}
.y14e{bottom:572.354987pt;}
.ya9{bottom:572.747067pt;}
.y122{bottom:573.547200pt;}
.y80{bottom:574.587067pt;}
.yd5{bottom:575.867067pt;}
.y56{bottom:576.027067pt;}
.y176{bottom:578.509600pt;}
.y6{bottom:579.360000pt;}
.y127{bottom:579.787733pt;}
.y1ae{bottom:586.987067pt;}
.y35{bottom:587.787067pt;}
.y1da{bottom:587.947600pt;}
.y14d{bottom:589.147067pt;}
.y121{bottom:590.427067pt;}
.y175{bottom:593.865627pt;}
.yf9{bottom:595.067067pt;}
.ya8{bottom:598.187067pt;}
.y5{bottom:601.760000pt;}
.yd4{bottom:602.668347pt;}
.y55{bottom:602.835147pt;}
.y1ad{bottom:602.987733pt;}
.y1d9{bottom:603.227467pt;}
.y34{bottom:606.427067pt;}
.y14c{bottom:606.747733pt;}
.y150{bottom:608.987200pt;}
.y174{bottom:609.149467pt;}
.y7f{bottom:610.427067pt;}
.y120{bottom:611.867067pt;}
.y1ac{bottom:618.267600pt;}
.y1d8{bottom:618.587467pt;}
.yd3{bottom:622.667067pt;}
.y54{bottom:622.747067pt;}
.y14b{bottom:623.547200pt;}
.yf8{bottom:624.027067pt;}
.y4{bottom:624.160000pt;}
.y173{bottom:624.425227pt;}
.y33{bottom:625.067067pt;}
.ya6{bottom:627.707147pt;}
.ya7{bottom:627.707200pt;}
.y7e{bottom:629.067067pt;}
.y14f{bottom:629.787733pt;}
.y11f{bottom:632.667067pt;}
.y1ab{bottom:633.547467pt;}
.y11e{bottom:633.627600pt;}
.y1d7{bottom:633.867200pt;}
.y172{bottom:639.709067pt;}
.y14a{bottom:640.427067pt;}
.y32{bottom:643.787067pt;}
.ya5{bottom:644.587067pt;}
.y3{bottom:646.560000pt;}
.y7d{bottom:647.707067pt;}
.y1aa{bottom:648.827200pt;}
.y1d6{bottom:649.147067pt;}
.yf7{bottom:650.667067pt;}
.y53{bottom:658.587067pt;}
.yd2{bottom:658.907067pt;}
.y149{bottom:661.867067pt;}
.y31{bottom:662.427067pt;}
.y1a9{bottom:664.107067pt;}
.y1d5{bottom:665.144827pt;}
.y7c{bottom:666.427067pt;}
.y171{bottom:670.348933pt;}
.y2{bottom:672.480000pt;}
.ya4{bottom:674.427067pt;}
.y52{bottom:677.227067pt;}
.yf6{bottom:677.387067pt;}
.y11d{bottom:678.587067pt;}
.y1a8{bottom:680.104960pt;}
.y1d4{bottom:680.428667pt;}
.y30{bottom:681.067067pt;}
.y148{bottom:682.667067pt;}
.y147{bottom:683.707067pt;}
.y170{bottom:685.620720pt;}
.yd1{bottom:688.347067pt;}
.y7b{bottom:693.067067pt;}
.y1a7{bottom:695.388800pt;}
.y1d3{bottom:695.708400pt;}
.y51{bottom:695.867067pt;}
.yf5{bottom:696.027067pt;}
.y2f{bottom:699.787067pt;}
.y11c{bottom:700.107600pt;}
.y16f{bottom:700.904560pt;}
.y1a6{bottom:710.744693pt;}
.y1d2{bottom:710.984267pt;}
.y7a{bottom:711.707067pt;}
.yf4{bottom:714.667067pt;}
.y16e{bottom:716.188400pt;}
.yd0{bottom:717.387067pt;}
.y2e{bottom:718.427067pt;}
.y50{bottom:722.668347pt;}
.y146{bottom:725.547067pt;}
.y1a5{bottom:726.028533pt;}
.y1d1{bottom:726.348267pt;}
.ya3{bottom:727.787067pt;}
.y16d{bottom:731.540453pt;}
.yf3{bottom:733.387067pt;}
.y79{bottom:738.427067pt;}
.y1a4{bottom:741.308400pt;}
.y4f{bottom:742.667067pt;}
.ycf{bottom:744.027067pt;}
.y2d{bottom:745.067067pt;}
.y16c{bottom:746.824293pt;}
.y145{bottom:748.587067pt;}
.ya2{bottom:750.187067pt;}
.yf2{bottom:752.027067pt;}
.y1a3{bottom:756.588267pt;}
.y1d0{bottom:756.907867pt;}
.y78{bottom:757.067067pt;}
.y16b{bottom:762.108133pt;}
.y118{bottom:762.587147pt;}
.y119{bottom:762.587200pt;}
.yce{bottom:770.667067pt;}
.y1a2{bottom:771.944293pt;}
.y1cf{bottom:772.187733pt;}
.ya1{bottom:776.587067pt;}
.y16a{bottom:777.383867pt;}
.y4e{bottom:778.427067pt;}
.yf1{bottom:778.835147pt;}
.y117{bottom:779.467067pt;}
.y77{bottom:783.707067pt;}
.y1a1{bottom:787.228133pt;}
.y1ce{bottom:787.543760pt;}
.ycd{bottom:789.387067pt;}
.y144{bottom:790.427067pt;}
.y169{bottom:792.747867pt;}
.ya0{bottom:794.987067pt;}
.y115{bottom:796.987333pt;}
.y4d{bottom:797.067067pt;}
.y2c{bottom:798.427067pt;}
.yf0{bottom:798.747067pt;}
.y76{bottom:802.427067pt;}
.y1a0{bottom:802.507867pt;}
.y1cd{bottom:802.827600pt;}
.y168{bottom:808.023760pt;}
.ycc{bottom:808.027067pt;}
.y9f{bottom:813.387067pt;}
.y11b{bottom:813.707067pt;}
.y114{bottom:813.867333pt;}
.y142{bottom:817.554987pt;}
.y19f{bottom:817.787733pt;}
.y1cc{bottom:818.103360pt;}
.y75{bottom:821.067067pt;}
.y167{bottom:823.307600pt;}
.y4c{bottom:823.868347pt;}
.y2b{bottom:825.067067pt;}
.ycb{bottom:826.667067pt;}
.y113{bottom:830.747200pt;}
.y9e{bottom:831.787067pt;}
.y19e{bottom:833.063600pt;}
.y1cb{bottom:833.387200pt;}
.y141{bottom:834.347067pt;}
.yef{bottom:834.587067pt;}
.y11a{bottom:835.787200pt;}
.y166{bottom:838.583467pt;}
.y4b{bottom:843.867067pt;}
.yca{bottom:845.387067pt;}
.y116{bottom:847.627147pt;}
.y112{bottom:847.627200pt;}
.y74{bottom:847.707067pt;}
.y19d{bottom:848.427600pt;}
.y1ca{bottom:848.747200pt;}
.y9d{bottom:850.187067pt;}
.y2a{bottom:851.787067pt;}
.y13f{bottom:851.867333pt;}
.yee{bottom:853.227067pt;}
.y165{bottom:853.947467pt;}
.y19c{bottom:863.707333pt;}
.y1c9{bottom:864.027067pt;}
.y111{bottom:864.507067pt;}
.y73{bottom:866.427067pt;}
.y9c{bottom:868.587067pt;}
.y13e{bottom:868.747333pt;}
.y164{bottom:869.227200pt;}
.y29{bottom:870.187067pt;}
.yed{bottom:871.867067pt;}
.yc9{bottom:872.195147pt;}
.y19b{bottom:878.987200pt;}
.y4a{bottom:879.627067pt;}
.y1c8{bottom:879.943600pt;}
.y163{bottom:884.507067pt;}
.y72{bottom:885.067067pt;}
.y13d{bottom:885.627200pt;}
.y110{bottom:885.947067pt;}
.y28{bottom:888.587067pt;}
.yec{bottom:890.587067pt;}
.y143{bottom:890.667200pt;}
.yc8{bottom:892.107067pt;}
.y19a{bottom:894.267067pt;}
.y9b{bottom:894.987067pt;}
.y1c7{bottom:895.307600pt;}
.y49{bottom:898.267067pt;}
.y162{bottom:900.507600pt;}
.y140{bottom:902.507147pt;}
.y13c{bottom:902.507200pt;}
.y10f{bottom:906.667067pt;}
.y27{bottom:906.987067pt;}
.y10e{bottom:907.707333pt;}
.yeb{bottom:909.227067pt;}
.y199{bottom:910.267467pt;}
.y1c6{bottom:910.587467pt;}
.y71{bottom:911.707067pt;}
.y9a{bottom:913.387067pt;}
.y161{bottom:915.787333pt;}
.y13b{bottom:919.387067pt;}
.y48{bottom:925.068347pt;}
.y26{bottom:925.387067pt;}
.y198{bottom:925.547200pt;}
.y1c5{bottom:925.867200pt;}
.yc7{bottom:927.867067pt;}
.y70{bottom:930.427067pt;}
.y160{bottom:931.067200pt;}
.y99{bottom:931.787067pt;}
.y13a{bottom:940.827067pt;}
.y197{bottom:940.907200pt;}
.y1c4{bottom:941.147067pt;}
.y10d{bottom:941.227200pt;}
.y47{bottom:945.067067pt;}
.y15f{bottom:946.347067pt;}
.yc6{bottom:946.587067pt;}
.y6f{bottom:949.067067pt;}
.y98{bottom:950.187067pt;}
.y25{bottom:952.185200pt;}
.y196{bottom:956.187067pt;}
.y1c3{bottom:957.147200pt;}
.y10c{bottom:958.107067pt;}
.y139{bottom:961.627067pt;}
.y15e{bottom:962.347200pt;}
.y138{bottom:962.587333pt;}
.yc5{bottom:965.227067pt;}
.y97{bottom:968.587067pt;}
.y195{bottom:972.103067pt;}
.y194{bottom:972.107067pt;}
.y24{bottom:972.123227pt;}
.y1c2{bottom:972.427067pt;}
.y6e{bottom:975.707067pt;}
.y15d{bottom:977.627067pt;}
.y46{bottom:981.307067pt;}
.y10b{bottom:984.187067pt;}
.y96{bottom:986.987067pt;}
.y193{bottom:987.467067pt;}
.y1c1{bottom:988.427067pt;}
.y23{bottom:992.035147pt;}
.y6d{bottom:994.427067pt;}
.y137{bottom:996.107067pt;}
.y192{bottom:1003.387067pt;}
.y45{bottom:1010.747067pt;}
.y22{bottom:1011.947067pt;}
.y6c{bottom:1013.067067pt;}
.y1c0{bottom:1013.147200pt;}
.y136{bottom:1013.307067pt;}
.y95{bottom:1013.387067pt;}
.y191{bottom:1025.787067pt;}
.y21{bottom:1062.266907pt;}
.y20{bottom:1062.347067pt;}
.y1{bottom:1108.800000pt;}
.h1b{height:11.013750pt;}
.h1e{height:39.030469pt;}
.h5{height:45.184000pt;}
.h7{height:53.086720pt;}
.h8{height:55.736250pt;}
.h18{height:57.020480pt;}
.hc{height:61.076250pt;}
.h3{height:62.781250pt;}
.h1a{height:62.812500pt;}
.ha{height:66.750000pt;}
.h4{height:67.776000pt;}
.h9{height:72.423750pt;}
.hb{height:77.763750pt;}
.he{height:94.994330pt;}
.h6{height:103.104000pt;}
.h19{height:118.139947pt;}
.h1c{height:118.460480pt;}
.h1d{height:118.476480pt;}
.h16{height:125.076250pt;}
.h10{height:125.076783pt;}
.h17{height:125.398383pt;}
.h13{height:125.398917pt;}
.h14{height:128.244570pt;}
.h15{height:128.273583pt;}
.h12{height:128.595717pt;}
.h11{height:128.595930pt;}
.hf{height:144.249370pt;}
.hd{height:144.594330pt;}
.h2{height:1122.548000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.241333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w3{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:37.760000pt;}
.x2{left:71.840000pt;}
.x4{left:94.476400pt;}
.x33{left:101.680000pt;}
.x6{left:106.472000pt;}
.x11{left:132.320000pt;}
.x14{left:134.480000pt;}
.x31{left:135.520000pt;}
.x2c{left:139.920000pt;}
.x9{left:141.680000pt;}
.x38{left:147.120000pt;}
.x12{left:156.080000pt;}
.x7{left:157.979120pt;}
.x2d{left:159.119733pt;}
.x5{left:163.760000pt;}
.x3a{left:166.319733pt;}
.x39{left:171.114560pt;}
.x15{left:181.760000pt;}
.x2e{left:183.127653pt;}
.x17{left:189.039733pt;}
.x3b{left:190.327653pt;}
.x19{left:203.284453pt;}
.x28{left:207.119467pt;}
.x34{left:214.319467pt;}
.x26{left:217.359333pt;}
.x1d{left:219.040267pt;}
.xd{left:234.078640pt;}
.x2f{left:246.560000pt;}
.x23{left:256.716080pt;}
.x1e{left:275.048240pt;}
.x32{left:279.760000pt;}
.x10{left:290.394480pt;}
.x30{left:291.520000pt;}
.x22{left:294.719733pt;}
.x35{left:298.319200pt;}
.x20{left:307.754480pt;}
.x8{left:320.722133pt;}
.x1a{left:332.804960pt;}
.xf{left:333.759760pt;}
.xe{left:336.641520pt;}
.xb{left:341.919333pt;}
.x1b{left:343.359840pt;}
.x1f{left:345.286800pt;}
.x29{left:363.118933pt;}
.x13{left:366.483360pt;}
.x21{left:370.400000pt;}
.x1c{left:372.960000pt;}
.xa{left:375.600000pt;}
.xc{left:379.920000pt;}
.x3{left:396.880000pt;}
.x2a{left:467.118400pt;}
.x24{left:472.080000pt;}
.x36{left:474.318400pt;}
.x18{left:538.719067pt;}
.x27{left:558.478667pt;}
.x16{left:604.799600pt;}
.x25{left:614.320000pt;}
.x2b{left:618.958800pt;}
.x37{left:626.158800pt;}
}


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