
/* 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_e91d4cf308aa.woff")format("woff");}.ff2{font-family:ff2;line-height:0.850000;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_4d89bb557969.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_72b92e9139bd.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_a580edd7f258.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_1663c93a2495.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_b641ab6714fe.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_8b4601701f74.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_1666fb76bd44.woff")format("woff");}.ffa{font-family:ffa;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:ffb;src:url("fonts/font_0010_8f7cf058ca1d.woff")format("woff");}.ffb{font-family:ffb;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:ffc;src:url("fonts/font_0011_48bb14a5ec88.woff")format("woff");}.ffc{font-family:ffc;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);}
.v4{vertical-align:-96.478800px;}
.v2{vertical-align:-88.920000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.v7{vertical-align:68.759400px;}
.v6{vertical-align:72.362400px;}
.v5{vertical-align:75.959640px;}
.v3{vertical-align:91.112040px;}
.ls2{letter-spacing:-0.324000px;}
.ls6{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.109368px;}
.ls5f{letter-spacing:-0.108216px;}
.ls7{letter-spacing:-0.108000px;}
.ls21{letter-spacing:-0.093600px;}
.ls13{letter-spacing:-0.085932px;}
.ls5d{letter-spacing:-0.084168px;}
.ls1d{letter-spacing:-0.079200px;}
.ls54{letter-spacing:-0.078156px;}
.ls58{letter-spacing:-0.072144px;}
.ls1f{letter-spacing:-0.072000px;}
.ls32{letter-spacing:-0.070308px;}
.ls59{letter-spacing:-0.066132px;}
.ls1a{letter-spacing:-0.064800px;}
.ls53{letter-spacing:-0.060120px;}
.ls19{letter-spacing:-0.054684px;}
.ls52{letter-spacing:-0.054108px;}
.ls1e{letter-spacing:-0.050400px;}
.ls51{letter-spacing:-0.048096px;}
.ls16{letter-spacing:-0.043200px;}
.ls56{letter-spacing:-0.042084px;}
.ls38{letter-spacing:-0.039060px;}
.ls5c{letter-spacing:-0.036072px;}
.ls1b{letter-spacing:-0.036000px;}
.ls3c{letter-spacing:-0.031248px;}
.ls5e{letter-spacing:-0.030060px;}
.ls20{letter-spacing:-0.028800px;}
.ls43{letter-spacing:-0.025164px;}
.ls57{letter-spacing:-0.024048px;}
.ls36{letter-spacing:-0.023436px;}
.ls15{letter-spacing:-0.021600px;}
.ls31{letter-spacing:-0.019764px;}
.ls55{letter-spacing:-0.018036px;}
.ls34{letter-spacing:-0.016776px;}
.ls18{letter-spacing:-0.014400px;}
.ls5a{letter-spacing:-0.012024px;}
.ls35{letter-spacing:-0.008388px;}
.ls12{letter-spacing:-0.007812px;}
.ls17{letter-spacing:-0.007200px;}
.ls5b{letter-spacing:-0.006012px;}
.ls1{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.004788px;}
.ls4d{letter-spacing:0.006012px;}
.ls44{letter-spacing:0.006588px;}
.ls1c{letter-spacing:0.007200px;}
.ls9{letter-spacing:0.007812px;}
.ls4a{letter-spacing:0.012024px;}
.lse{letter-spacing:0.014400px;}
.lsa{letter-spacing:0.015624px;}
.ls24{letter-spacing:0.021600px;}
.ls50{letter-spacing:0.024048px;}
.ls3a{letter-spacing:0.028800px;}
.ls46{letter-spacing:0.030060px;}
.ls8{letter-spacing:0.031248px;}
.ls11{letter-spacing:0.032940px;}
.ls49{letter-spacing:0.036072px;}
.ls23{letter-spacing:0.039060px;}
.ls2f{letter-spacing:0.039528px;}
.ls41{letter-spacing:0.046116px;}
.ls22{letter-spacing:0.046872px;}
.ls4c{letter-spacing:0.048096px;}
.ls27{letter-spacing:0.050328px;}
.ls2c{letter-spacing:0.052704px;}
.ls4f{letter-spacing:0.054108px;}
.ls3b{letter-spacing:0.058716px;}
.ls2a{letter-spacing:0.059292px;}
.ls25{letter-spacing:0.062496px;}
.ls2b{letter-spacing:0.065880px;}
.ls26{letter-spacing:0.067104px;}
.ls3{letter-spacing:0.072000px;}
.ls42{letter-spacing:0.072468px;}
.ls33{letter-spacing:0.075492px;}
.ls30{letter-spacing:0.079056px;}
.ls3d{letter-spacing:0.079200px;}
.ls2d{letter-spacing:0.085644px;}
.ls29{letter-spacing:0.085932px;}
.ls10{letter-spacing:0.086400px;}
.ls2e{letter-spacing:0.092232px;}
.ls47{letter-spacing:0.096192px;}
.ls45{letter-spacing:0.105408px;}
.ls0{letter-spacing:0.108000px;}
.ls28{letter-spacing:0.117180px;}
.lsf{letter-spacing:0.136800px;}
.lsd{letter-spacing:0.144000px;}
.ls4e{letter-spacing:0.150300px;}
.lsc{letter-spacing:0.151200px;}
.ls5{letter-spacing:0.216000px;}
.ls48{letter-spacing:50.260320px;}
.ls4b{letter-spacing:75.089880px;}
.ls37{letter-spacing:96.984000px;}
.ls3f{letter-spacing:188.366364px;}
.ls3e{letter-spacing:192.398400px;}
.lsb{letter-spacing:950.184000px;}
.ls39{letter-spacing:1217.962560px;}
.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:-27.000000px;}
.ws45{word-spacing:-19.994400px;}
.wsc{word-spacing:-19.972800px;}
.wsd{word-spacing:-19.922400px;}
.ws0{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.wse3{word-spacing:-13.707360px;}
.wse1{word-spacing:-13.647240px;}
.wse2{word-spacing:-13.641228px;}
.wsb{word-spacing:-1.620000px;}
.ws33{word-spacing:-0.523404px;}
.wsf{word-spacing:-0.468720px;}
.ws9{word-spacing:-0.432000px;}
.wsc7{word-spacing:-0.429660px;}
.wse7{word-spacing:-0.420840px;}
.wsde{word-spacing:-0.395280px;}
.wsed{word-spacing:-0.384768px;}
.ws114{word-spacing:-0.366732px;}
.ws10{word-spacing:-0.351540px;}
.ws9a{word-spacing:-0.257796px;}
.ws29{word-spacing:-0.218736px;}
.ws7{word-spacing:-0.216000px;}
.wse{word-spacing:-0.203112px;}
.ws2a{word-spacing:-0.148428px;}
.ws94{word-spacing:-0.132804px;}
.ws8{word-spacing:-0.108000px;}
.ws11{word-spacing:-0.093744px;}
.ws12{word-spacing:-0.085932px;}
.ws4{word-spacing:-0.072000px;}
.wsbb{word-spacing:-0.062496px;}
.ws102{word-spacing:-0.054108px;}
.wsec{word-spacing:-0.042084px;}
.ws87{word-spacing:-0.031248px;}
.ws7a{word-spacing:-0.026352px;}
.ws7e{word-spacing:-0.019764px;}
.ws7d{word-spacing:-0.013176px;}
.wsfd{word-spacing:-0.012024px;}
.ws7c{word-spacing:-0.006588px;}
.ws3{word-spacing:0.000000px;}
.wsf4{word-spacing:0.006012px;}
.wsda{word-spacing:0.006588px;}
.wse6{word-spacing:0.012024px;}
.wsdf{word-spacing:0.013176px;}
.wsdb{word-spacing:0.014364px;}
.ws92{word-spacing:0.016776px;}
.wsf3{word-spacing:0.018036px;}
.wse0{word-spacing:0.019764px;}
.wse8{word-spacing:0.024048px;}
.ws28{word-spacing:0.025164px;}
.ws7f{word-spacing:0.026352px;}
.wse4{word-spacing:0.030060px;}
.wseb{word-spacing:0.036072px;}
.wsea{word-spacing:0.042084px;}
.wsd8{word-spacing:0.043200px;}
.wse5{word-spacing:0.048096px;}
.wsdd{word-spacing:0.052704px;}
.ws103{word-spacing:0.054108px;}
.wsa2{word-spacing:0.100800px;}
.wsa1{word-spacing:0.108000px;}
.ws5{word-spacing:0.144000px;}
.ws2f{word-spacing:0.151200px;}
.ws4c{word-spacing:0.158400px;}
.ws26{word-spacing:0.165600px;}
.ws20{word-spacing:0.172800px;}
.ws18{word-spacing:0.180000px;}
.ws37{word-spacing:0.187200px;}
.ws1a{word-spacing:0.194400px;}
.ws25{word-spacing:0.201600px;}
.ws44{word-spacing:0.208800px;}
.ws6{word-spacing:0.216000px;}
.ws19{word-spacing:0.223200px;}
.ws24{word-spacing:0.237600px;}
.ws93{word-spacing:0.285192px;}
.ws76{word-spacing:0.302400px;}
.ws36{word-spacing:0.316800px;}
.wsa{word-spacing:0.324000px;}
.wsd9{word-spacing:0.368928px;}
.ws75{word-spacing:0.381600px;}
.wsf0{word-spacing:0.384768px;}
.ws60{word-spacing:0.525600px;}
.ws79{word-spacing:0.554400px;}
.ws88{word-spacing:0.626400px;}
.ws15{word-spacing:1.605600px;}
.ws14{word-spacing:1.728000px;}
.ws10d{word-spacing:1.833660px;}
.ws13{word-spacing:2.001600px;}
.ws41{word-spacing:2.354400px;}
.ws2b{word-spacing:2.404800px;}
.ws40{word-spacing:2.440800px;}
.ws2c{word-spacing:2.484000px;}
.ws32{word-spacing:2.714400px;}
.wsc4{word-spacing:3.412800px;}
.wsc3{word-spacing:3.434400px;}
.wsf6{word-spacing:3.631248px;}
.wsb2{word-spacing:3.758400px;}
.ws47{word-spacing:3.765600px;}
.wsb1{word-spacing:3.808800px;}
.ws46{word-spacing:3.873600px;}
.ws16{word-spacing:4.024800px;}
.ws17{word-spacing:4.075200px;}
.ws96{word-spacing:4.132800px;}
.ws95{word-spacing:4.161600px;}
.ws97{word-spacing:4.168800px;}
.ws104{word-spacing:4.322628px;}
.wsc5{word-spacing:5.551200px;}
.wsc6{word-spacing:5.673600px;}
.ws10a{word-spacing:5.783544px;}
.wsa0{word-spacing:6.652800px;}
.ws50{word-spacing:6.667200px;}
.ws9f{word-spacing:6.717600px;}
.wsfc{word-spacing:7.220412px;}
.wsfb{word-spacing:7.226424px;}
.ws101{word-spacing:7.581132px;}
.ws100{word-spacing:7.605180px;}
.wsa9{word-spacing:7.725600px;}
.wsaa{word-spacing:7.761600px;}
.ws23{word-spacing:7.934400px;}
.wsab{word-spacing:7.999200px;}
.ws73{word-spacing:8.107200px;}
.ws74{word-spacing:8.179200px;}
.ws113{word-spacing:8.308584px;}
.wsba{word-spacing:8.452800px;}
.wsb9{word-spacing:8.546400px;}
.ws10f{word-spacing:8.681328px;}
.ws110{word-spacing:8.687340px;}
.wsaf{word-spacing:8.776800px;}
.wsae{word-spacing:8.812800px;}
.wsb0{word-spacing:8.884800px;}
.ws84{word-spacing:9.540000px;}
.ws83{word-spacing:9.561600px;}
.ws8d{word-spacing:9.892800px;}
.ws8e{word-spacing:9.900000px;}
.ws81{word-spacing:9.921600px;}
.ws82{word-spacing:10.008000px;}
.ws108{word-spacing:10.106172px;}
.ws107{word-spacing:10.118196px;}
.ws2e{word-spacing:10.936800px;}
.ws78{word-spacing:10.972800px;}
.ws2d{word-spacing:11.052000px;}
.ws77{word-spacing:11.095200px;}
.ws52{word-spacing:11.678400px;}
.wsd4{word-spacing:11.707200px;}
.wsd5{word-spacing:11.772000px;}
.ws53{word-spacing:11.858400px;}
.ws27{word-spacing:12.038400px;}
.ws22{word-spacing:12.067200px;}
.ws1c{word-spacing:12.081600px;}
.ws1e{word-spacing:12.088800px;}
.ws1d{word-spacing:12.103200px;}
.ws1f{word-spacing:12.110400px;}
.ws1b{word-spacing:12.117600px;}
.ws90{word-spacing:13.132800px;}
.ws3e{word-spacing:13.140000px;}
.ws3f{word-spacing:13.154400px;}
.ws8f{word-spacing:13.161600px;}
.ws66{word-spacing:13.852800px;}
.ws67{word-spacing:13.874400px;}
.ws68{word-spacing:14.220000px;}
.ws112{word-spacing:14.410764px;}
.ws111{word-spacing:14.428800px;}
.wsd6{word-spacing:14.839200px;}
.ws59{word-spacing:14.918400px;}
.ws3a{word-spacing:14.932800px;}
.ws3b{word-spacing:14.940000px;}
.wsd7{word-spacing:15.004800px;}
.ws70{word-spacing:15.645600px;}
.ws61{word-spacing:15.660000px;}
.ws6f{word-spacing:15.681600px;}
.ws4e{word-spacing:15.710400px;}
.ws4f{word-spacing:16.041600px;}
.wsa8{word-spacing:16.380000px;}
.wsa4{word-spacing:16.401600px;}
.wsa3{word-spacing:16.408800px;}
.ws8a{word-spacing:17.085600px;}
.ws89{word-spacing:17.244000px;}
.ws21{word-spacing:17.712000px;}
.ws86{word-spacing:17.805600px;}
.ws85{word-spacing:17.834400px;}
.ws91{word-spacing:18.900000px;}
.wsf7{word-spacing:19.833588px;}
.ws109{word-spacing:20.194308px;}
.wscd{word-spacing:20.700000px;}
.wsce{word-spacing:20.721600px;}
.ws71{word-spacing:21.074400px;}
.ws72{word-spacing:21.132000px;}
.wscb{word-spacing:21.333600px;}
.wscc{word-spacing:21.412800px;}
.wsca{word-spacing:21.420000px;}
.ws6c{word-spacing:22.478400px;}
.wsb8{word-spacing:22.485600px;}
.ws6d{word-spacing:22.492800px;}
.wsb7{word-spacing:22.557600px;}
.wsef{word-spacing:22.701312px;}
.wsee{word-spacing:22.713336px;}
.ws6e{word-spacing:22.852800px;}
.ws5e{word-spacing:23.176800px;}
.ws3d{word-spacing:23.220000px;}
.ws5f{word-spacing:23.299200px;}
.ws3c{word-spacing:23.378400px;}
.wsbc{word-spacing:23.572800px;}
.wsbd{word-spacing:23.644800px;}
.ws31{word-spacing:23.904000px;}
.ws30{word-spacing:23.925600px;}
.ws58{word-spacing:24.292800px;}
.ws57{word-spacing:24.451200px;}
.ws9e{word-spacing:24.652800px;}
.ws9d{word-spacing:24.825600px;}
.wsf2{word-spacing:24.865632px;}
.wsf1{word-spacing:24.877656px;}
.ws80{word-spacing:25.205688px;}
.ws39{word-spacing:25.351200px;}
.ws38{word-spacing:25.380000px;}
.ws10b{word-spacing:25.587072px;}
.ws10c{word-spacing:25.611120px;}
.ws105{word-spacing:25.947792px;}
.ws106{word-spacing:25.959816px;}
.ws6a{word-spacing:26.452800px;}
.ws6b{word-spacing:26.510400px;}
.ws98{word-spacing:26.776800px;}
.ws99{word-spacing:26.827200px;}
.ws43{word-spacing:27.165600px;}
.ws42{word-spacing:27.230400px;}
.ws35{word-spacing:27.532800px;}
.ws34{word-spacing:27.669600px;}
.wsa7{word-spacing:28.252800px;}
.wsa5{word-spacing:28.389600px;}
.wsa6{word-spacing:28.418400px;}
.wsb4{word-spacing:31.903200px;}
.wsb3{word-spacing:32.076000px;}
.ws63{word-spacing:32.558400px;}
.ws62{word-spacing:32.724000px;}
.ws10e{word-spacing:33.480828px;}
.ws54{word-spacing:35.092800px;}
.ws56{word-spacing:35.107200px;}
.ws55{word-spacing:35.121600px;}
.ws8c{word-spacing:37.252800px;}
.ws8b{word-spacing:37.274400px;}
.wsac{word-spacing:38.080800px;}
.wsad{word-spacing:38.210400px;}
.ws4a{word-spacing:41.220000px;}
.ws5b{word-spacing:41.277600px;}
.ws5a{word-spacing:41.342400px;}
.ws4b{word-spacing:41.349600px;}
.wsb6{word-spacing:43.380000px;}
.wsb5{word-spacing:43.394400px;}
.wsf5{word-spacing:46.478772px;}
.ws51{word-spacing:48.427200px;}
.wscf{word-spacing:48.765600px;}
.wsd0{word-spacing:48.780000px;}
.wsd3{word-spacing:49.809600px;}
.wsd1{word-spacing:49.860000px;}
.wsd2{word-spacing:50.047200px;}
.ws48{word-spacing:50.572800px;}
.ws49{word-spacing:50.774400px;}
.ws65{word-spacing:52.704000px;}
.ws64{word-spacing:52.718400px;}
.ws4d{word-spacing:54.900000px;}
.ws5d{word-spacing:58.471200px;}
.ws5c{word-spacing:58.478400px;}
.wsc8{word-spacing:62.460000px;}
.ws69{word-spacing:70.372800px;}
.wsdc{word-spacing:79.932204px;}
.wsc9{word-spacing:87.746400px;}
.wsc2{word-spacing:91.238400px;}
.wsc1{word-spacing:91.245600px;}
.wsbf{word-spacing:96.624000px;}
.wsbe{word-spacing:96.667200px;}
.wsc0{word-spacing:96.804000px;}
.ws9c{word-spacing:98.114400px;}
.ws9b{word-spacing:98.121600px;}
.wsff{word-spacing:141.756948px;}
.wsfa{word-spacing:141.762960px;}
.wsfe{word-spacing:141.805044px;}
.wsf9{word-spacing:141.817068px;}
.wsf8{word-spacing:141.823080px;}
.wse9{word-spacing:141.835104px;}
.ws7b{word-spacing:1109.518020px;}
._1e{margin-left:-1049.012148px;}
._1a{margin-left:-39.240000px;}
._23{margin-left:-35.640000px;}
._20{margin-left:-25.232040px;}
._11{margin-left:-23.536800px;}
._22{margin-left:-17.064000px;}
._7{margin-left:-11.880000px;}
._1{margin-left:-1.080000px;}
._0{width:1.188000px;}
._a{width:3.153600px;}
._9{width:4.564800px;}
._f{width:6.372000px;}
._6{width:8.539200px;}
._b{width:10.641600px;}
._3{width:11.880000px;}
._27{width:13.680000px;}
._d{width:15.566400px;}
._1b{width:19.800000px;}
._26{width:25.560000px;}
._19{width:27.720000px;}
._13{width:29.520000px;}
._16{width:31.536000px;}
._12{width:34.776000px;}
._1c{width:36.000000px;}
._10{width:38.880000px;}
._14{width:39.960000px;}
._17{width:41.760000px;}
._24{width:48.168000px;}
._8{width:51.120000px;}
._18{width:52.488000px;}
._15{width:54.720000px;}
._c{width:59.040000px;}
._25{width:60.480000px;}
._4{width:63.000000px;}
._28{width:65.664000px;}
._5{width:71.280000px;}
._30{width:74.213952px;}
._2{width:79.200000px;}
._e{width:83.160000px;}
._21{width:95.493552px;}
._34{width:114.479964px;}
._33{width:141.840756px;}
._29{width:192.240000px;}
._1f{width:199.080564px;}
._32{width:201.990972px;}
._35{width:236.920800px;}
._31{width:243.042624px;}
._2c{width:310.663536px;}
._2f{width:314.638896px;}
._1d{width:337.002360px;}
._2b{width:861.536592px;}
._2d{width:1300.247268px;}
._2e{width:1445.183100px;}
._2a{width:1951.190016px;}
.fc2{color:rgb(15,36,62);}
.fc1{color:rgb(13,27,67);}
.fc3{color:rgb(154,154,154);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:11.880000px;}
.fs2{font-size:41.760000px;}
.fs7{font-size:47.880000px;}
.fs8{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:78.120000px;}
.fs5{font-size:83.880000px;}
.fs6{font-size:96.120000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:44.100000px;}
.y1e{bottom:66.060000px;}
.y139{bottom:70.589700px;}
.y1d{bottom:86.580000px;}
.y193{bottom:86.700450px;}
.y192{bottom:102.360600px;}
.y1c{bottom:106.920000px;}
.ye7{bottom:112.890450px;}
.y1b{bottom:127.260000px;}
.y191{bottom:128.550450px;}
.y90{bottom:129.630450px;}
.ye6{bottom:133.860450px;}
.yc0{bottom:141.060450px;}
.y1a{bottom:147.600000px;}
.y8f{bottom:154.470450px;}
.ye5{bottom:154.920450px;}
.y190{bottom:155.460450px;}
.y19{bottom:168.120000px;}
.y18f{bottom:172.740450px;}
.ye4{bottom:175.890450px;}
.y8e{bottom:179.310450px;}
.ybd{bottom:184.346850px;}
.y18{bottom:188.460000px;}
.yb9{bottom:193.349400px;}
.y18e{bottom:199.646580px;}
.y8d{bottom:204.150450px;}
.ye3{bottom:205.860450px;}
.y17{bottom:208.800000px;}
.ybc{bottom:216.117600px;}
.y18d{bottom:216.840900px;}
.y66{bottom:220.620450px;}
.yb8{bottom:225.120000px;}
.ye2{bottom:226.920450px;}
.y8c{bottom:228.990450px;}
.y16{bottom:229.140000px;}
.y18c{bottom:234.116430px;}
.y1c4{bottom:240.690900px;}
.ybf{bottom:247.886550px;}
.ybb{bottom:247.888200px;}
.y15{bottom:249.660000px;}
.y65{bottom:250.590450px;}
.y18b{bottom:251.310750px;}
.ye1{bottom:252.390450px;}
.y8b{bottom:253.830450px;}
.yb7{bottom:256.882440px;}
.y1c3{bottom:266.790450px;}
.y14{bottom:270.000000px;}
.y64{bottom:271.560450px;}
.ye0{bottom:273.360450px;}
.y18a{bottom:277.500450px;}
.ybe{bottom:279.657150px;}
.yba{bottom:279.658800px;}
.yb6{bottom:279.660450px;}
.y8a{bottom:283.440450px;}
.y44{bottom:288.120450px;}
.y13{bottom:290.340000px;}
.y1c2{bottom:293.700450px;}
.ydf{bottom:298.920450px;}
.y63{bottom:301.620450px;}
.y89{bottom:304.410450px;}
.yb5{bottom:308.280450px;}
.y43{bottom:309.180450px;}
.y12{bottom:310.860000px;}
.y189{bottom:313.140750px;}
.yde{bottom:319.890450px;}
.y1c1{bottom:319.980450px;}
.y62{bottom:322.590450px;}
.y88{bottom:325.470450px;}
.y188{bottom:330.240450px;}
.y11{bottom:331.200000px;}
.y137{bottom:338.970450px;}
.y42{bottom:339.150450px;}
.y87{bottom:346.440450px;}
.y1c0{bottom:346.886280px;}
.yb2{bottom:349.857600px;}
.yaf{bottom:349.859250px;}
.ydd{bottom:349.860450px;}
.y10{bottom:351.540000px;}
.y61{bottom:352.560450px;}
.y187{bottom:357.240600px;}
.y1bf{bottom:364.080600px;}
.y15e{bottom:366.780450px;}
.y86{bottom:367.410450px;}
.y41{bottom:369.120450px;}
.ydc{bottom:370.920450px;}
.yf{bottom:371.880000px;}
.y134{bottom:372.090540px;}
.yb4{bottom:381.626550px;}
.yb1{bottom:381.628200px;}
.yae{bottom:381.629850px;}
.y60{bottom:382.620450px;}
.y186{bottom:383.430450px;}
.y40{bottom:390.180450px;}
.y1be{bottom:390.360600px;}
.y133{bottom:391.080450px;}
.ye{bottom:391.500000px;}
.ydb{bottom:391.890450px;}
.y85{bottom:397.470450px;}
.y15b{bottom:399.810540px;}
.y5f{bottom:403.590450px;}
.y185{bottom:410.426280px;}
.y3f{bottom:411.150450px;}
.yd{bottom:412.560000px;}
.yb3{bottom:413.397150px;}
.yb0{bottom:413.398800px;}
.yad{bottom:413.400450px;}
.y1bd{bottom:417.270900px;}
.y84{bottom:418.440450px;}
.y15a{bottom:418.800450px;}
.yda{bottom:422.049690px;}
.y132{bottom:423.570450px;}
.y136{bottom:424.290600px;}
.y184{bottom:427.620600px;}
.y5e{bottom:433.560450px;}
.y3e{bottom:441.120450px;}
.yc{bottom:441.540000px;}
.yac{bottom:442.020600px;}
.y1bc{bottom:443.460600px;}
.yd9{bottom:444.450600px;}
.y83{bottom:448.599690px;}
.y159{bottom:451.290600px;}
.y15d{bottom:452.101200px;}
.y183{bottom:453.810450px;}
.y5d{bottom:454.620450px;}
.y131{bottom:455.970450px;}
.y135{bottom:456.061200px;}
.y1bb{bottom:461.461200px;}
.y3d{bottom:462.180450px;}
.y82{bottom:471.000600px;}
.yab{bottom:475.320630px;}
.y1ba{bottom:478.651050px;}
.yb{bottom:479.340000px;}
.y130{bottom:479.370600px;}
.y12f{bottom:480.539850px;}
.y182{bottom:480.810750px;}
.y3c{bottom:483.150450px;}
.y158{bottom:483.690600px;}
.y15c{bottom:483.781200px;}
.y5c{bottom:484.590450px;}
.yd8{bottom:484.770450px;}
.ya9{bottom:490.522440px;}
.yaa{bottom:494.310540px;}
.y110{bottom:495.300450px;}
.y1b9{bottom:495.931050px;}
.y3b{bottom:504.120450px;}
.yd7{bottom:505.740450px;}
.y181{bottom:507.000600px;}
.y157{bottom:507.090600px;}
.y156{bottom:508.259850px;}
.y81{bottom:511.320450px;}
.y1b8{bottom:513.120900px;}
.ya8{bottom:513.300450px;}
.y5b{bottom:514.560450px;}
.ya{bottom:517.140000px;}
.y180{bottom:525.001050px;}
.y3a{bottom:525.180450px;}
.yd6{bottom:526.710450px;}
.y12e{bottom:527.250450px;}
.y10f{bottom:528.960450px;}
.y1b7{bottom:530.310750px;}
.y80{bottom:532.290450px;}
.y5a{bottom:535.620450px;}
.ya7{bottom:537.510450px;}
.y17f{bottom:542.190900px;}
.y39{bottom:546.150450px;}
.y7f{bottom:553.260450px;}
.y9{bottom:554.940000px;}
.y155{bottom:554.970450px;}
.y1b6{bottom:556.500450px;}
.yd5{bottom:556.959540px;}
.y10e{bottom:559.020450px;}
.y17e{bottom:559.380750px;}
.y12b{bottom:561.899850px;}
.y59{bottom:565.590450px;}
.y38{bottom:567.120450px;}
.y7e{bottom:574.320450px;}
.y1b5{bottom:574.498830px;}
.y17d{bottom:576.570450px;}
.yd4{bottom:579.360450px;}
.ya6{bottom:584.490450px;}
.y58{bottom:586.560450px;}
.y10d{bottom:588.990450px;}
.y152{bottom:589.619850px;}
.y1b4{bottom:591.693150px;}
.y8{bottom:592.740000px;}
.y12a{bottom:593.670450px;}
.y12d{bottom:594.388500px;}
.y37{bottom:597.180450px;}
.y17c{bottom:602.850450px;}
.y7d{bottom:604.290450px;}
.ya5{bottom:605.550450px;}
.y1b3{bottom:608.878500px;}
.y57{bottom:616.620450px;}
.y36{bottom:618.150450px;}
.y10c{bottom:618.960450px;}
.yd3{bottom:620.130450px;}
.y17b{bottom:620.758230px;}
.y151{bottom:621.390450px;}
.y154{bottom:622.108500px;}
.y7c{bottom:625.260450px;}
.y129{bottom:626.070450px;}
.y12c{bottom:626.159250px;}
.y1b2{bottom:626.163000px;}
.y7{bottom:626.580000px;}
.y56{bottom:637.590450px;}
.y17a{bottom:637.952550px;}
.y35{bottom:639.120450px;}
.ya4{bottom:639.750450px;}
.y1b1{bottom:643.348230px;}
.y7b{bottom:646.320450px;}
.y10b{bottom:649.020450px;}
.y128{bottom:649.470450px;}
.y127{bottom:650.550900px;}
.y6{bottom:651.780000px;}
.yd2{bottom:653.250450px;}
.y150{bottom:653.790450px;}
.y153{bottom:653.879100px;}
.y179{bottom:655.228080px;}
.y34{bottom:660.180450px;}
.y1b0{bottom:660.542550px;}
.y55{bottom:667.749540px;}
.ya3{bottom:669.090450px;}
.y178{bottom:672.422400px;}
.y7a{bottom:676.290450px;}
.y5{bottom:676.980000px;}
.y14f{bottom:677.190450px;}
.y1af{bottom:677.732400px;}
.y14e{bottom:678.359850px;}
.y10a{bottom:678.990450px;}
.y33{bottom:681.150450px;}
.yfa{bottom:688.980450px;}
.y177{bottom:689.612100px;}
.y54{bottom:690.150450px;}
.yd1{bottom:694.920600px;}
.y79{bottom:697.260450px;}
.y126{bottom:697.350450px;}
.ya2{bottom:698.430450px;}
.y32{bottom:702.120450px;}
.y4{bottom:702.180000px;}
.y1ae{bottom:704.003310px;}
.y176{bottom:706.797450px;}
.y109{bottom:708.960450px;}
.y1ad{bottom:721.197630px;}
.yf9{bottom:721.560450px;}
.y31{bottom:723.180450px;}
.ya1{bottom:723.270450px;}
.y125{bottom:723.540450px;}
.y175{bottom:724.081950px;}
.yd0{bottom:724.890600px;}
.y14d{bottom:725.070450px;}
.y78{bottom:727.320450px;}
.y3{bottom:727.380000px;}
.y53{bottom:730.470450px;}
.y1ac{bottom:738.391950px;}
.y108{bottom:739.020450px;}
.yf8{bottom:742.620450px;}
.y30{bottom:744.150450px;}
.ycf{bottom:745.860600px;}
.ya0{bottom:748.110450px;}
.y77{bottom:748.290450px;}
.y174{bottom:750.271650px;}
.y14c{bottom:751.350450px;}
.y52{bottom:751.440450px;}
.y1ab{bottom:755.572830px;}
.y2{bottom:756.540000px;}
.yf7{bottom:763.590450px;}
.y2f{bottom:765.120450px;}
.yce{bottom:766.920600px;}
.y107{bottom:768.990450px;}
.y76{bottom:769.260450px;}
.y124{bottom:770.700450px;}
.y51{bottom:772.410450px;}
.y1aa{bottom:772.857330px;}
.y9f{bottom:772.950450px;}
.y173{bottom:776.461500px;}
.yf6{bottom:784.560450px;}
.y2e{bottom:786.180450px;}
.ycd{bottom:787.890600px;}
.y106{bottom:789.960450px;}
.y1a9{bottom:790.051650px;}
.y75{bottom:790.320450px;}
.y172{bottom:793.646850px;}
.y9e{bottom:797.790450px;}
.y14b{bottom:798.420450px;}
.y50{bottom:802.659540px;}
.yf5{bottom:805.620450px;}
.y1a8{bottom:807.236880px;}
.ycc{bottom:808.860600px;}
.y121{bottom:810.120690px;}
.y171{bottom:810.931350px;}
.y105{bottom:811.020450px;}
.y2d{bottom:816.150450px;}
.y74{bottom:820.290450px;}
.y9d{bottom:822.540450px;}
.y1a7{bottom:824.431200px;}
.y4f{bottom:825.060450px;}
.yf4{bottom:826.590450px;}
.y170{bottom:828.121050px;}
.y120{bottom:829.110600px;}
.y104{bottom:831.990450px;}
.y148{bottom:837.840540px;}
.ycb{bottom:839.011890px;}
.y73{bottom:841.260450px;}
.y1a6{bottom:841.706730px;}
.y16f{bottom:845.306430px;}
.y9c{bottom:851.880450px;}
.yf3{bottom:856.749540px;}
.y147{bottom:856.830450px;}
.y11f{bottom:857.817900px;}
.y1a5{bottom:858.901050px;}
.yca{bottom:861.510450px;}
.y103{bottom:861.960450px;}
.y72{bottom:862.320450px;}
.y16e{bottom:862.500750px;}
.y4e{bottom:865.290450px;}
.y11b{bottom:875.819700px;}
.y1a4{bottom:876.086280px;}
.y146{bottom:876.541800px;}
.y9b{bottom:876.720450px;}
.y2c{bottom:877.620450px;}
.yf2{bottom:879.150450px;}
.y102{bottom:883.020450px;}
.y11e{bottom:885.808800px;}
.y4d{bottom:886.260450px;}
.y16d{bottom:888.780600px;}
.y1cf{bottom:890.130450px;}
.y71{bottom:892.290450px;}
.y1a3{bottom:893.280600px;}
.y9a{bottom:901.560450px;}
.yc9{bottom:901.740450px;}
.y11a{bottom:903.810450px;}
.y2b{bottom:907.590450px;}
.y1a2{bottom:910.470450px;}
.y101{bottom:912.990450px;}
.y70{bottom:913.260450px;}
.y11d{bottom:913.799550px;}
.y16c{bottom:914.970450px;}
.y4c{bottom:916.411890px;}
.y145{bottom:916.501350px;}
.y142{bottom:918.481050px;}
.yf1{bottom:919.470450px;}
.yc8{bottom:922.710450px;}
.y99{bottom:926.400450px;}
.y1a1{bottom:927.750450px;}
.y1ce{bottom:928.650600px;}
.y119{bottom:931.809450px;}
.y100{bottom:933.960450px;}
.y6f{bottom:934.320450px;}
.y2a{bottom:937.560450px;}
.y4b{bottom:938.910450px;}
.yf0{bottom:940.440450px;}
.y11c{bottom:941.699700px;}
.y16b{bottom:941.871930px;}
.y169{bottom:941.880900px;}
.yc7{bottom:943.770450px;}
.y118{bottom:950.700540px;}
.y98{bottom:951.240450px;}
.y1a0{bottom:954.647460px;}
.y19e{bottom:954.661050px;}
.y1cd{bottom:954.840450px;}
.yff{bottom:955.020450px;}
.y144{bottom:956.460900px;}
.y141{bottom:958.440600px;}
.y29{bottom:958.620450px;}
.y16a{bottom:959.156430px;}
.y168{bottom:959.160900px;}
.yef{bottom:961.410450px;}
.y6e{bottom:964.290450px;}
.y117{bottom:969.690450px;}
.y19f{bottom:971.931960px;}
.y19d{bottom:971.941050px;}
.yc6{bottom:973.929540px;}
.yfe{bottom:975.990450px;}
.y97{bottom:976.080450px;}
.y167{bottom:976.350750px;}
.y4a{bottom:979.140450px;}
.y123{bottom:979.509660px;}
.y28{bottom:979.590450px;}
.y1cc{bottom:981.750450px;}
.yee{bottom:982.470450px;}
.y6d{bottom:985.260450px;}
.y19c{bottom:989.126280px;}
.yc5{bottom:996.330450px;}
.y143{bottom:996.420300px;}
.y116{bottom:998.310450px;}
.y122{bottom:998.400750px;}
.y140{bottom:998.490630px;}
.y1cb{bottom:999.030450px;}
.y49{bottom:1000.110450px;}
.y27{bottom:1000.560450px;}
.y166{bottom:1002.540450px;}
.yed{bottom:1003.440450px;}
.y96{bottom:1005.420450px;}
.yfd{bottom:1006.149540px;}
.y6c{bottom:1006.320450px;}
.y19b{bottom:1006.320600px;}
.y13f{bottom:1017.480540px;}
.y164{bottom:1020.540750px;}
.yec{bottom:1024.410450px;}
.y1ca{bottom:1025.936580px;}
.y115{bottom:1026.210450px;}
.yfc{bottom:1028.550450px;}
.y95{bottom:1030.260450px;}
.y48{bottom:1030.261890px;}
.y26{bottom:1030.620450px;}
.y19a{bottom:1032.510450px;}
.y6b{bottom:1036.290450px;}
.y13e{bottom:1036.470450px;}
.yc4{bottom:1036.560450px;}
.y14a{bottom:1037.190090px;}
.y165{bottom:1037.726130px;}
.y163{bottom:1037.730600px;}
.y1c9{bottom:1043.130900px;}
.yeb{bottom:1045.470450px;}
.y114{bottom:1049.880900px;}
.y198{bottom:1050.510750px;}
.y47{bottom:1052.760450px;}
.y162{bottom:1054.920450px;}
.y94{bottom:1055.100450px;}
.y13d{bottom:1056.090450px;}
.y149{bottom:1056.180000px;}
.y6a{bottom:1057.260450px;}
.yc3{bottom:1057.620450px;}
.y1c8{bottom:1060.406430px;}
.y25{bottom:1060.768500px;}
.yea{bottom:1066.440450px;}
.y199{bottom:1067.696130px;}
.y197{bottom:1067.700600px;}
.yfb{bottom:1069.410750px;}
.y13c{bottom:1074.990450px;}
.y1c7{bottom:1077.600750px;}
.y161{bottom:1078.050450px;}
.y69{bottom:1078.320450px;}
.y113{bottom:1078.500750px;}
.yc2{bottom:1078.590450px;}
.y93{bottom:1079.940450px;}
.y24{bottom:1083.179100px;}
.y196{bottom:1084.890450px;}
.y46{bottom:1093.530450px;}
.ye9{bottom:1096.599540px;}
.yc1{bottom:1099.560450px;}
.y1c6{bottom:1103.790450px;}
.y92{bottom:1104.780450px;}
.y23{bottom:1105.599540px;}
.y112{bottom:1107.840450px;}
.y195{bottom:1108.020450px;}
.y68{bottom:1108.290450px;}
.y13b{bottom:1110.629100px;}
.y160{bottom:1117.200450px;}
.ye8{bottom:1119.000450px;}
.y45{bottom:1126.650450px;}
.y22{bottom:1128.000450px;}
.y67{bottom:1129.260450px;}
.y91{bottom:1129.620450px;}
.y15f{bottom:1137.090450px;}
.y111{bottom:1137.180450px;}
.y13a{bottom:1139.248950px;}
.y1c5{bottom:1141.049100px;}
.y194{bottom:1154.010450px;}
.y21{bottom:1162.739850px;}
.y138{bottom:1193.700450px;}
.y20{bottom:1194.510450px;}
.y1{bottom:1247.400000px;}
.h14{height:12.390469px;}
.h15{height:43.909277px;}
.h5{height:50.832000px;}
.h7{height:59.722560px;}
.hd{height:64.064355px;}
.h12{height:64.148040px;}
.h8{height:68.710781px;}
.h3{height:70.628906px;}
.ha{height:75.093750px;}
.h4{height:76.248000px;}
.h11{height:76.824000px;}
.h9{height:81.476719px;}
.hb{height:87.484219px;}
.h6{height:115.992000px;}
.h13{height:132.907440px;}
.h10{height:140.711381px;}
.hf{height:141.073181px;}
.he{height:144.670421px;}
.hc{height:159.822821px;}
.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.380900px;}
.x3c{left:114.390000px;}
.x26{left:119.160000px;}
.x6{left:143.092170px;}
.x11{left:148.950000px;}
.x14{left:151.380000px;}
.x25{left:154.168290px;}
.x33{left:157.410000px;}
.x3d{left:160.109700px;}
.x27{left:161.550600px;}
.x12{left:175.680000px;}
.x1e{left:177.848010px;}
.x37{left:179.009700px;}
.x5{left:184.320000px;}
.x7{left:199.440150px;}
.x15{left:204.570000px;}
.x38{left:206.018610px;}
.x8{left:224.370150px;}
.x17{left:244.619250px;}
.x1c{left:246.420000px;}
.x29{left:256.770150px;}
.xd{left:263.330820px;}
.x28{left:272.160900px;}
.x22{left:288.817470px;}
.x1d{left:309.421620px;}
.x10{left:326.705670px;}
.x21{left:331.560000px;}
.x2a{left:338.670150px;}
.x20{left:346.235670px;}
.x2b{left:359.910600px;}
.x19{left:374.397930px;}
.xf{left:375.472080px;}
.xe{left:378.714060px;}
.xb{left:384.659250px;}
.x1a{left:386.369820px;}
.x1f{left:388.537650px;}
.x24{left:393.390000px;}
.x2c{left:409.320150px;}
.x13{left:412.383780px;}
.x2d{left:416.970450px;}
.x1b{left:419.670000px;}
.xa{left:422.550000px;}
.x39{left:425.699850px;}
.xc{left:427.500000px;}
.x3{left:436.410000px;}
.x9{left:446.490000px;}
.x23{left:531.180000px;}
.x2f{left:552.240450px;}
.x2e{left:568.348050px;}
.x34{left:572.941500px;}
.x3a{left:584.903880px;}
.x18{left:628.378500px;}
.x35{left:679.591350px;}
.x16{left:690.297870px;}
.x32{left:702.540450px;}
.x36{left:710.100750px;}
.x30{left:716.489850px;}
.x3b{left:722.063130px;}
.x31{left:733.950150px;}
@media print{
.v4{vertical-align:-85.758933pt;}
.v2{vertical-align:-79.040000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.v7{vertical-align:61.119467pt;}
.v6{vertical-align:64.322133pt;}
.v5{vertical-align:67.519680pt;}
.v3{vertical-align:80.988480pt;}
.ls2{letter-spacing:-0.288000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.097216pt;}
.ls5f{letter-spacing:-0.096192pt;}
.ls7{letter-spacing:-0.096000pt;}
.ls21{letter-spacing:-0.083200pt;}
.ls13{letter-spacing:-0.076384pt;}
.ls5d{letter-spacing:-0.074816pt;}
.ls1d{letter-spacing:-0.070400pt;}
.ls54{letter-spacing:-0.069472pt;}
.ls58{letter-spacing:-0.064128pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls32{letter-spacing:-0.062496pt;}
.ls59{letter-spacing:-0.058784pt;}
.ls1a{letter-spacing:-0.057600pt;}
.ls53{letter-spacing:-0.053440pt;}
.ls19{letter-spacing:-0.048608pt;}
.ls52{letter-spacing:-0.048096pt;}
.ls1e{letter-spacing:-0.044800pt;}
.ls51{letter-spacing:-0.042752pt;}
.ls16{letter-spacing:-0.038400pt;}
.ls56{letter-spacing:-0.037408pt;}
.ls38{letter-spacing:-0.034720pt;}
.ls5c{letter-spacing:-0.032064pt;}
.ls1b{letter-spacing:-0.032000pt;}
.ls3c{letter-spacing:-0.027776pt;}
.ls5e{letter-spacing:-0.026720pt;}
.ls20{letter-spacing:-0.025600pt;}
.ls43{letter-spacing:-0.022368pt;}
.ls57{letter-spacing:-0.021376pt;}
.ls36{letter-spacing:-0.020832pt;}
.ls15{letter-spacing:-0.019200pt;}
.ls31{letter-spacing:-0.017568pt;}
.ls55{letter-spacing:-0.016032pt;}
.ls34{letter-spacing:-0.014912pt;}
.ls18{letter-spacing:-0.012800pt;}
.ls5a{letter-spacing:-0.010688pt;}
.ls35{letter-spacing:-0.007456pt;}
.ls12{letter-spacing:-0.006944pt;}
.ls17{letter-spacing:-0.006400pt;}
.ls5b{letter-spacing:-0.005344pt;}
.ls1{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.004256pt;}
.ls4d{letter-spacing:0.005344pt;}
.ls44{letter-spacing:0.005856pt;}
.ls1c{letter-spacing:0.006400pt;}
.ls9{letter-spacing:0.006944pt;}
.ls4a{letter-spacing:0.010688pt;}
.lse{letter-spacing:0.012800pt;}
.lsa{letter-spacing:0.013888pt;}
.ls24{letter-spacing:0.019200pt;}
.ls50{letter-spacing:0.021376pt;}
.ls3a{letter-spacing:0.025600pt;}
.ls46{letter-spacing:0.026720pt;}
.ls8{letter-spacing:0.027776pt;}
.ls11{letter-spacing:0.029280pt;}
.ls49{letter-spacing:0.032064pt;}
.ls23{letter-spacing:0.034720pt;}
.ls2f{letter-spacing:0.035136pt;}
.ls41{letter-spacing:0.040992pt;}
.ls22{letter-spacing:0.041664pt;}
.ls4c{letter-spacing:0.042752pt;}
.ls27{letter-spacing:0.044736pt;}
.ls2c{letter-spacing:0.046848pt;}
.ls4f{letter-spacing:0.048096pt;}
.ls3b{letter-spacing:0.052192pt;}
.ls2a{letter-spacing:0.052704pt;}
.ls25{letter-spacing:0.055552pt;}
.ls2b{letter-spacing:0.058560pt;}
.ls26{letter-spacing:0.059648pt;}
.ls3{letter-spacing:0.064000pt;}
.ls42{letter-spacing:0.064416pt;}
.ls33{letter-spacing:0.067104pt;}
.ls30{letter-spacing:0.070272pt;}
.ls3d{letter-spacing:0.070400pt;}
.ls2d{letter-spacing:0.076128pt;}
.ls29{letter-spacing:0.076384pt;}
.ls10{letter-spacing:0.076800pt;}
.ls2e{letter-spacing:0.081984pt;}
.ls47{letter-spacing:0.085504pt;}
.ls45{letter-spacing:0.093696pt;}
.ls0{letter-spacing:0.096000pt;}
.ls28{letter-spacing:0.104160pt;}
.lsf{letter-spacing:0.121600pt;}
.lsd{letter-spacing:0.128000pt;}
.ls4e{letter-spacing:0.133600pt;}
.lsc{letter-spacing:0.134400pt;}
.ls5{letter-spacing:0.192000pt;}
.ls48{letter-spacing:44.675840pt;}
.ls4b{letter-spacing:66.746560pt;}
.ls37{letter-spacing:86.208000pt;}
.ls3f{letter-spacing:167.436768pt;}
.ls3e{letter-spacing:171.020800pt;}
.lsb{letter-spacing:844.608000pt;}
.ls39{letter-spacing:1082.633387pt;}
.ws2{word-spacing:-24.000000pt;}
.ws45{word-spacing:-17.772800pt;}
.wsc{word-spacing:-17.753600pt;}
.wsd{word-spacing:-17.708800pt;}
.ws0{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.wse3{word-spacing:-12.184320pt;}
.wse1{word-spacing:-12.130880pt;}
.wse2{word-spacing:-12.125536pt;}
.wsb{word-spacing:-1.440000pt;}
.ws33{word-spacing:-0.465248pt;}
.wsf{word-spacing:-0.416640pt;}
.ws9{word-spacing:-0.384000pt;}
.wsc7{word-spacing:-0.381920pt;}
.wse7{word-spacing:-0.374080pt;}
.wsde{word-spacing:-0.351360pt;}
.wsed{word-spacing:-0.342016pt;}
.ws114{word-spacing:-0.325984pt;}
.ws10{word-spacing:-0.312480pt;}
.ws9a{word-spacing:-0.229152pt;}
.ws29{word-spacing:-0.194432pt;}
.ws7{word-spacing:-0.192000pt;}
.wse{word-spacing:-0.180544pt;}
.ws2a{word-spacing:-0.131936pt;}
.ws94{word-spacing:-0.118048pt;}
.ws8{word-spacing:-0.096000pt;}
.ws11{word-spacing:-0.083328pt;}
.ws12{word-spacing:-0.076384pt;}
.ws4{word-spacing:-0.064000pt;}
.wsbb{word-spacing:-0.055552pt;}
.ws102{word-spacing:-0.048096pt;}
.wsec{word-spacing:-0.037408pt;}
.ws87{word-spacing:-0.027776pt;}
.ws7a{word-spacing:-0.023424pt;}
.ws7e{word-spacing:-0.017568pt;}
.ws7d{word-spacing:-0.011712pt;}
.wsfd{word-spacing:-0.010688pt;}
.ws7c{word-spacing:-0.005856pt;}
.ws3{word-spacing:0.000000pt;}
.wsf4{word-spacing:0.005344pt;}
.wsda{word-spacing:0.005856pt;}
.wse6{word-spacing:0.010688pt;}
.wsdf{word-spacing:0.011712pt;}
.wsdb{word-spacing:0.012768pt;}
.ws92{word-spacing:0.014912pt;}
.wsf3{word-spacing:0.016032pt;}
.wse0{word-spacing:0.017568pt;}
.wse8{word-spacing:0.021376pt;}
.ws28{word-spacing:0.022368pt;}
.ws7f{word-spacing:0.023424pt;}
.wse4{word-spacing:0.026720pt;}
.wseb{word-spacing:0.032064pt;}
.wsea{word-spacing:0.037408pt;}
.wsd8{word-spacing:0.038400pt;}
.wse5{word-spacing:0.042752pt;}
.wsdd{word-spacing:0.046848pt;}
.ws103{word-spacing:0.048096pt;}
.wsa2{word-spacing:0.089600pt;}
.wsa1{word-spacing:0.096000pt;}
.ws5{word-spacing:0.128000pt;}
.ws2f{word-spacing:0.134400pt;}
.ws4c{word-spacing:0.140800pt;}
.ws26{word-spacing:0.147200pt;}
.ws20{word-spacing:0.153600pt;}
.ws18{word-spacing:0.160000pt;}
.ws37{word-spacing:0.166400pt;}
.ws1a{word-spacing:0.172800pt;}
.ws25{word-spacing:0.179200pt;}
.ws44{word-spacing:0.185600pt;}
.ws6{word-spacing:0.192000pt;}
.ws19{word-spacing:0.198400pt;}
.ws24{word-spacing:0.211200pt;}
.ws93{word-spacing:0.253504pt;}
.ws76{word-spacing:0.268800pt;}
.ws36{word-spacing:0.281600pt;}
.wsa{word-spacing:0.288000pt;}
.wsd9{word-spacing:0.327936pt;}
.ws75{word-spacing:0.339200pt;}
.wsf0{word-spacing:0.342016pt;}
.ws60{word-spacing:0.467200pt;}
.ws79{word-spacing:0.492800pt;}
.ws88{word-spacing:0.556800pt;}
.ws15{word-spacing:1.427200pt;}
.ws14{word-spacing:1.536000pt;}
.ws10d{word-spacing:1.629920pt;}
.ws13{word-spacing:1.779200pt;}
.ws41{word-spacing:2.092800pt;}
.ws2b{word-spacing:2.137600pt;}
.ws40{word-spacing:2.169600pt;}
.ws2c{word-spacing:2.208000pt;}
.ws32{word-spacing:2.412800pt;}
.wsc4{word-spacing:3.033600pt;}
.wsc3{word-spacing:3.052800pt;}
.wsf6{word-spacing:3.227776pt;}
.wsb2{word-spacing:3.340800pt;}
.ws47{word-spacing:3.347200pt;}
.wsb1{word-spacing:3.385600pt;}
.ws46{word-spacing:3.443200pt;}
.ws16{word-spacing:3.577600pt;}
.ws17{word-spacing:3.622400pt;}
.ws96{word-spacing:3.673600pt;}
.ws95{word-spacing:3.699200pt;}
.ws97{word-spacing:3.705600pt;}
.ws104{word-spacing:3.842336pt;}
.wsc5{word-spacing:4.934400pt;}
.wsc6{word-spacing:5.043200pt;}
.ws10a{word-spacing:5.140928pt;}
.wsa0{word-spacing:5.913600pt;}
.ws50{word-spacing:5.926400pt;}
.ws9f{word-spacing:5.971200pt;}
.wsfc{word-spacing:6.418144pt;}
.wsfb{word-spacing:6.423488pt;}
.ws101{word-spacing:6.738784pt;}
.ws100{word-spacing:6.760160pt;}
.wsa9{word-spacing:6.867200pt;}
.wsaa{word-spacing:6.899200pt;}
.ws23{word-spacing:7.052800pt;}
.wsab{word-spacing:7.110400pt;}
.ws73{word-spacing:7.206400pt;}
.ws74{word-spacing:7.270400pt;}
.ws113{word-spacing:7.385408pt;}
.wsba{word-spacing:7.513600pt;}
.wsb9{word-spacing:7.596800pt;}
.ws10f{word-spacing:7.716736pt;}
.ws110{word-spacing:7.722080pt;}
.wsaf{word-spacing:7.801600pt;}
.wsae{word-spacing:7.833600pt;}
.wsb0{word-spacing:7.897600pt;}
.ws84{word-spacing:8.480000pt;}
.ws83{word-spacing:8.499200pt;}
.ws8d{word-spacing:8.793600pt;}
.ws8e{word-spacing:8.800000pt;}
.ws81{word-spacing:8.819200pt;}
.ws82{word-spacing:8.896000pt;}
.ws108{word-spacing:8.983264pt;}
.ws107{word-spacing:8.993952pt;}
.ws2e{word-spacing:9.721600pt;}
.ws78{word-spacing:9.753600pt;}
.ws2d{word-spacing:9.824000pt;}
.ws77{word-spacing:9.862400pt;}
.ws52{word-spacing:10.380800pt;}
.wsd4{word-spacing:10.406400pt;}
.wsd5{word-spacing:10.464000pt;}
.ws53{word-spacing:10.540800pt;}
.ws27{word-spacing:10.700800pt;}
.ws22{word-spacing:10.726400pt;}
.ws1c{word-spacing:10.739200pt;}
.ws1e{word-spacing:10.745600pt;}
.ws1d{word-spacing:10.758400pt;}
.ws1f{word-spacing:10.764800pt;}
.ws1b{word-spacing:10.771200pt;}
.ws90{word-spacing:11.673600pt;}
.ws3e{word-spacing:11.680000pt;}
.ws3f{word-spacing:11.692800pt;}
.ws8f{word-spacing:11.699200pt;}
.ws66{word-spacing:12.313600pt;}
.ws67{word-spacing:12.332800pt;}
.ws68{word-spacing:12.640000pt;}
.ws112{word-spacing:12.809568pt;}
.ws111{word-spacing:12.825600pt;}
.wsd6{word-spacing:13.190400pt;}
.ws59{word-spacing:13.260800pt;}
.ws3a{word-spacing:13.273600pt;}
.ws3b{word-spacing:13.280000pt;}
.wsd7{word-spacing:13.337600pt;}
.ws70{word-spacing:13.907200pt;}
.ws61{word-spacing:13.920000pt;}
.ws6f{word-spacing:13.939200pt;}
.ws4e{word-spacing:13.964800pt;}
.ws4f{word-spacing:14.259200pt;}
.wsa8{word-spacing:14.560000pt;}
.wsa4{word-spacing:14.579200pt;}
.wsa3{word-spacing:14.585600pt;}
.ws8a{word-spacing:15.187200pt;}
.ws89{word-spacing:15.328000pt;}
.ws21{word-spacing:15.744000pt;}
.ws86{word-spacing:15.827200pt;}
.ws85{word-spacing:15.852800pt;}
.ws91{word-spacing:16.800000pt;}
.wsf7{word-spacing:17.629856pt;}
.ws109{word-spacing:17.950496pt;}
.wscd{word-spacing:18.400000pt;}
.wsce{word-spacing:18.419200pt;}
.ws71{word-spacing:18.732800pt;}
.ws72{word-spacing:18.784000pt;}
.wscb{word-spacing:18.963200pt;}
.wscc{word-spacing:19.033600pt;}
.wsca{word-spacing:19.040000pt;}
.ws6c{word-spacing:19.980800pt;}
.wsb8{word-spacing:19.987200pt;}
.ws6d{word-spacing:19.993600pt;}
.wsb7{word-spacing:20.051200pt;}
.wsef{word-spacing:20.178944pt;}
.wsee{word-spacing:20.189632pt;}
.ws6e{word-spacing:20.313600pt;}
.ws5e{word-spacing:20.601600pt;}
.ws3d{word-spacing:20.640000pt;}
.ws5f{word-spacing:20.710400pt;}
.ws3c{word-spacing:20.780800pt;}
.wsbc{word-spacing:20.953600pt;}
.wsbd{word-spacing:21.017600pt;}
.ws31{word-spacing:21.248000pt;}
.ws30{word-spacing:21.267200pt;}
.ws58{word-spacing:21.593600pt;}
.ws57{word-spacing:21.734400pt;}
.ws9e{word-spacing:21.913600pt;}
.ws9d{word-spacing:22.067200pt;}
.wsf2{word-spacing:22.102784pt;}
.wsf1{word-spacing:22.113472pt;}
.ws80{word-spacing:22.405056pt;}
.ws39{word-spacing:22.534400pt;}
.ws38{word-spacing:22.560000pt;}
.ws10b{word-spacing:22.744064pt;}
.ws10c{word-spacing:22.765440pt;}
.ws105{word-spacing:23.064704pt;}
.ws106{word-spacing:23.075392pt;}
.ws6a{word-spacing:23.513600pt;}
.ws6b{word-spacing:23.564800pt;}
.ws98{word-spacing:23.801600pt;}
.ws99{word-spacing:23.846400pt;}
.ws43{word-spacing:24.147200pt;}
.ws42{word-spacing:24.204800pt;}
.ws35{word-spacing:24.473600pt;}
.ws34{word-spacing:24.595200pt;}
.wsa7{word-spacing:25.113600pt;}
.wsa5{word-spacing:25.235200pt;}
.wsa6{word-spacing:25.260800pt;}
.wsb4{word-spacing:28.358400pt;}
.wsb3{word-spacing:28.512000pt;}
.ws63{word-spacing:28.940800pt;}
.ws62{word-spacing:29.088000pt;}
.ws10e{word-spacing:29.760736pt;}
.ws54{word-spacing:31.193600pt;}
.ws56{word-spacing:31.206400pt;}
.ws55{word-spacing:31.219200pt;}
.ws8c{word-spacing:33.113600pt;}
.ws8b{word-spacing:33.132800pt;}
.wsac{word-spacing:33.849600pt;}
.wsad{word-spacing:33.964800pt;}
.ws4a{word-spacing:36.640000pt;}
.ws5b{word-spacing:36.691200pt;}
.ws5a{word-spacing:36.748800pt;}
.ws4b{word-spacing:36.755200pt;}
.wsb6{word-spacing:38.560000pt;}
.wsb5{word-spacing:38.572800pt;}
.wsf5{word-spacing:41.314464pt;}
.ws51{word-spacing:43.046400pt;}
.wscf{word-spacing:43.347200pt;}
.wsd0{word-spacing:43.360000pt;}
.wsd3{word-spacing:44.275200pt;}
.wsd1{word-spacing:44.320000pt;}
.wsd2{word-spacing:44.486400pt;}
.ws48{word-spacing:44.953600pt;}
.ws49{word-spacing:45.132800pt;}
.ws65{word-spacing:46.848000pt;}
.ws64{word-spacing:46.860800pt;}
.ws4d{word-spacing:48.800000pt;}
.ws5d{word-spacing:51.974400pt;}
.ws5c{word-spacing:51.980800pt;}
.wsc8{word-spacing:55.520000pt;}
.ws69{word-spacing:62.553600pt;}
.wsdc{word-spacing:71.050848pt;}
.wsc9{word-spacing:77.996800pt;}
.wsc2{word-spacing:81.100800pt;}
.wsc1{word-spacing:81.107200pt;}
.wsbf{word-spacing:85.888000pt;}
.wsbe{word-spacing:85.926400pt;}
.wsc0{word-spacing:86.048000pt;}
.ws9c{word-spacing:87.212800pt;}
.ws9b{word-spacing:87.219200pt;}
.wsff{word-spacing:126.006176pt;}
.wsfa{word-spacing:126.011520pt;}
.wsfe{word-spacing:126.048928pt;}
.wsf9{word-spacing:126.059616pt;}
.wsf8{word-spacing:126.064960pt;}
.wse9{word-spacing:126.075648pt;}
.ws7b{word-spacing:986.238240pt;}
._1e{margin-left:-932.455243pt;}
._1a{margin-left:-34.880000pt;}
._23{margin-left:-31.680000pt;}
._20{margin-left:-22.428480pt;}
._11{margin-left:-20.921600pt;}
._22{margin-left:-15.168000pt;}
._7{margin-left:-10.560000pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.056000pt;}
._a{width:2.803200pt;}
._9{width:4.057600pt;}
._f{width:5.664000pt;}
._6{width:7.590400pt;}
._b{width:9.459200pt;}
._3{width:10.560000pt;}
._27{width:12.160000pt;}
._d{width:13.836800pt;}
._1b{width:17.600000pt;}
._26{width:22.720000pt;}
._19{width:24.640000pt;}
._13{width:26.240000pt;}
._16{width:28.032000pt;}
._12{width:30.912000pt;}
._1c{width:32.000000pt;}
._10{width:34.560000pt;}
._14{width:35.520000pt;}
._17{width:37.120000pt;}
._24{width:42.816000pt;}
._8{width:45.440000pt;}
._18{width:46.656000pt;}
._15{width:48.640000pt;}
._c{width:52.480000pt;}
._25{width:53.760000pt;}
._4{width:56.000000pt;}
._28{width:58.368000pt;}
._5{width:63.360000pt;}
._30{width:65.967957pt;}
._2{width:70.400000pt;}
._e{width:73.920000pt;}
._21{width:84.883157pt;}
._34{width:101.759968pt;}
._33{width:126.080672pt;}
._29{width:170.880000pt;}
._1f{width:176.960501pt;}
._32{width:179.547531pt;}
._35{width:210.596267pt;}
._31{width:216.037888pt;}
._2c{width:276.145365pt;}
._2f{width:279.679019pt;}
._1d{width:299.557653pt;}
._2b{width:765.810304pt;}
._2d{width:1155.775349pt;}
._2e{width:1284.607200pt;}
._2a{width:1734.391125pt;}
.fs9{font-size:10.560000pt;}
.fs2{font-size:37.120000pt;}
.fs7{font-size:42.560000pt;}
.fs8{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.440000pt;}
.fs5{font-size:74.560000pt;}
.fs6{font-size:85.440000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:39.200000pt;}
.y1e{bottom:58.720000pt;}
.y139{bottom:62.746400pt;}
.y1d{bottom:76.960000pt;}
.y193{bottom:77.067067pt;}
.y192{bottom:90.987200pt;}
.y1c{bottom:95.040000pt;}
.ye7{bottom:100.347067pt;}
.y1b{bottom:113.120000pt;}
.y191{bottom:114.267067pt;}
.y90{bottom:115.227067pt;}
.ye6{bottom:118.987067pt;}
.yc0{bottom:125.387067pt;}
.y1a{bottom:131.200000pt;}
.y8f{bottom:137.307067pt;}
.ye5{bottom:137.707067pt;}
.y190{bottom:138.187067pt;}
.y19{bottom:149.440000pt;}
.y18f{bottom:153.547067pt;}
.ye4{bottom:156.347067pt;}
.y8e{bottom:159.387067pt;}
.ybd{bottom:163.863867pt;}
.y18{bottom:167.520000pt;}
.yb9{bottom:171.866133pt;}
.y18e{bottom:177.463627pt;}
.y8d{bottom:181.467067pt;}
.ye3{bottom:182.987067pt;}
.y17{bottom:185.600000pt;}
.ybc{bottom:192.104533pt;}
.y18d{bottom:192.747467pt;}
.y66{bottom:196.107067pt;}
.yb8{bottom:200.106667pt;}
.ye2{bottom:201.707067pt;}
.y8c{bottom:203.547067pt;}
.y16{bottom:203.680000pt;}
.y18c{bottom:208.103493pt;}
.y1c4{bottom:213.947467pt;}
.ybf{bottom:220.343600pt;}
.ybb{bottom:220.345067pt;}
.y15{bottom:221.920000pt;}
.y65{bottom:222.747067pt;}
.y18b{bottom:223.387333pt;}
.ye1{bottom:224.347067pt;}
.y8b{bottom:225.627067pt;}
.yb7{bottom:228.339947pt;}
.y1c3{bottom:237.147067pt;}
.y14{bottom:240.000000pt;}
.y64{bottom:241.387067pt;}
.ye0{bottom:242.987067pt;}
.y18a{bottom:246.667067pt;}
.ybe{bottom:248.584133pt;}
.yba{bottom:248.585600pt;}
.yb6{bottom:248.587067pt;}
.y8a{bottom:251.947067pt;}
.y44{bottom:256.107067pt;}
.y13{bottom:258.080000pt;}
.y1c2{bottom:261.067067pt;}
.ydf{bottom:265.707067pt;}
.y63{bottom:268.107067pt;}
.y89{bottom:270.587067pt;}
.yb5{bottom:274.027067pt;}
.y43{bottom:274.827067pt;}
.y12{bottom:276.320000pt;}
.y189{bottom:278.347333pt;}
.yde{bottom:284.347067pt;}
.y1c1{bottom:284.427067pt;}
.y62{bottom:286.747067pt;}
.y88{bottom:289.307067pt;}
.y188{bottom:293.547067pt;}
.y11{bottom:294.400000pt;}
.y137{bottom:301.307067pt;}
.y42{bottom:301.467067pt;}
.y87{bottom:307.947067pt;}
.y1c0{bottom:308.343360pt;}
.yb2{bottom:310.984533pt;}
.yaf{bottom:310.986000pt;}
.ydd{bottom:310.987067pt;}
.y10{bottom:312.480000pt;}
.y61{bottom:313.387067pt;}
.y187{bottom:317.547200pt;}
.y1bf{bottom:323.627200pt;}
.y15e{bottom:326.027067pt;}
.y86{bottom:326.587067pt;}
.y41{bottom:328.107067pt;}
.ydc{bottom:329.707067pt;}
.yf{bottom:330.560000pt;}
.y134{bottom:330.747147pt;}
.yb4{bottom:339.223600pt;}
.yb1{bottom:339.225067pt;}
.yae{bottom:339.226533pt;}
.y60{bottom:340.107067pt;}
.y186{bottom:340.827067pt;}
.y40{bottom:346.827067pt;}
.y1be{bottom:346.987200pt;}
.y133{bottom:347.627067pt;}
.ye{bottom:348.000000pt;}
.ydb{bottom:348.347067pt;}
.y85{bottom:353.307067pt;}
.y15b{bottom:355.387147pt;}
.y5f{bottom:358.747067pt;}
.y185{bottom:364.823360pt;}
.y3f{bottom:365.467067pt;}
.yd{bottom:366.720000pt;}
.yb3{bottom:367.464133pt;}
.yb0{bottom:367.465600pt;}
.yad{bottom:367.467067pt;}
.y1bd{bottom:370.907467pt;}
.y84{bottom:371.947067pt;}
.y15a{bottom:372.267067pt;}
.yda{bottom:375.155280pt;}
.y132{bottom:376.507067pt;}
.y136{bottom:377.147200pt;}
.y184{bottom:380.107200pt;}
.y5e{bottom:385.387067pt;}
.y3e{bottom:392.107067pt;}
.yc{bottom:392.480000pt;}
.yac{bottom:392.907200pt;}
.y1bc{bottom:394.187200pt;}
.yd9{bottom:395.067200pt;}
.y83{bottom:398.755280pt;}
.y159{bottom:401.147200pt;}
.y15d{bottom:401.867733pt;}
.y183{bottom:403.387067pt;}
.y5d{bottom:404.107067pt;}
.y131{bottom:405.307067pt;}
.y135{bottom:405.387733pt;}
.y1bb{bottom:410.187733pt;}
.y3d{bottom:410.827067pt;}
.y82{bottom:418.667200pt;}
.yab{bottom:422.507227pt;}
.y1ba{bottom:425.467600pt;}
.yb{bottom:426.080000pt;}
.y130{bottom:426.107200pt;}
.y12f{bottom:427.146533pt;}
.y182{bottom:427.387333pt;}
.y3c{bottom:429.467067pt;}
.y158{bottom:429.947200pt;}
.y15c{bottom:430.027733pt;}
.y5c{bottom:430.747067pt;}
.yd8{bottom:430.907067pt;}
.ya9{bottom:436.019947pt;}
.yaa{bottom:439.387147pt;}
.y110{bottom:440.267067pt;}
.y1b9{bottom:440.827600pt;}
.y3b{bottom:448.107067pt;}
.yd7{bottom:449.547067pt;}
.y181{bottom:450.667200pt;}
.y157{bottom:450.747200pt;}
.y156{bottom:451.786533pt;}
.y81{bottom:454.507067pt;}
.y1b8{bottom:456.107467pt;}
.ya8{bottom:456.267067pt;}
.y5b{bottom:457.387067pt;}
.ya{bottom:459.680000pt;}
.y180{bottom:466.667600pt;}
.y3a{bottom:466.827067pt;}
.yd6{bottom:468.187067pt;}
.y12e{bottom:468.667067pt;}
.y10f{bottom:470.187067pt;}
.y1b7{bottom:471.387333pt;}
.y80{bottom:473.147067pt;}
.y5a{bottom:476.107067pt;}
.ya7{bottom:477.787067pt;}
.y17f{bottom:481.947467pt;}
.y39{bottom:485.467067pt;}
.y7f{bottom:491.787067pt;}
.y9{bottom:493.280000pt;}
.y155{bottom:493.307067pt;}
.y1b6{bottom:494.667067pt;}
.yd5{bottom:495.075147pt;}
.y10e{bottom:496.907067pt;}
.y17e{bottom:497.227333pt;}
.y12b{bottom:499.466533pt;}
.y59{bottom:502.747067pt;}
.y38{bottom:504.107067pt;}
.y7e{bottom:510.507067pt;}
.y1b5{bottom:510.665627pt;}
.y17d{bottom:512.507067pt;}
.yd4{bottom:514.987067pt;}
.ya6{bottom:519.547067pt;}
.y58{bottom:521.387067pt;}
.y10d{bottom:523.547067pt;}
.y152{bottom:524.106533pt;}
.y1b4{bottom:525.949467pt;}
.y8{bottom:526.880000pt;}
.y12a{bottom:527.707067pt;}
.y12d{bottom:528.345333pt;}
.y37{bottom:530.827067pt;}
.y17c{bottom:535.867067pt;}
.y7d{bottom:537.147067pt;}
.ya5{bottom:538.267067pt;}
.y1b3{bottom:541.225333pt;}
.y57{bottom:548.107067pt;}
.y36{bottom:549.467067pt;}
.y10c{bottom:550.187067pt;}
.yd3{bottom:551.227067pt;}
.y17b{bottom:551.785093pt;}
.y151{bottom:552.347067pt;}
.y154{bottom:552.985333pt;}
.y7c{bottom:555.787067pt;}
.y129{bottom:556.507067pt;}
.y12c{bottom:556.586000pt;}
.y1b2{bottom:556.589333pt;}
.y7{bottom:556.960000pt;}
.y56{bottom:566.747067pt;}
.y17a{bottom:567.068933pt;}
.y35{bottom:568.107067pt;}
.ya4{bottom:568.667067pt;}
.y1b1{bottom:571.865093pt;}
.y7b{bottom:574.507067pt;}
.y10b{bottom:576.907067pt;}
.y128{bottom:577.307067pt;}
.y127{bottom:578.267467pt;}
.y6{bottom:579.360000pt;}
.yd2{bottom:580.667067pt;}
.y150{bottom:581.147067pt;}
.y153{bottom:581.225867pt;}
.y179{bottom:582.424960pt;}
.y34{bottom:586.827067pt;}
.y1b0{bottom:587.148933pt;}
.y55{bottom:593.555147pt;}
.ya3{bottom:594.747067pt;}
.y178{bottom:597.708800pt;}
.y7a{bottom:601.147067pt;}
.y5{bottom:601.760000pt;}
.y14f{bottom:601.947067pt;}
.y1af{bottom:602.428800pt;}
.y14e{bottom:602.986533pt;}
.y10a{bottom:603.547067pt;}
.y33{bottom:605.467067pt;}
.yfa{bottom:612.427067pt;}
.y177{bottom:612.988533pt;}
.y54{bottom:613.467067pt;}
.yd1{bottom:617.707200pt;}
.y79{bottom:619.787067pt;}
.y126{bottom:619.867067pt;}
.ya2{bottom:620.827067pt;}
.y32{bottom:624.107067pt;}
.y4{bottom:624.160000pt;}
.y1ae{bottom:625.780720pt;}
.y176{bottom:628.264400pt;}
.y109{bottom:630.187067pt;}
.y1ad{bottom:641.064560pt;}
.yf9{bottom:641.387067pt;}
.y31{bottom:642.827067pt;}
.ya1{bottom:642.907067pt;}
.y125{bottom:643.147067pt;}
.y175{bottom:643.628400pt;}
.yd0{bottom:644.347200pt;}
.y14d{bottom:644.507067pt;}
.y78{bottom:646.507067pt;}
.y3{bottom:646.560000pt;}
.y53{bottom:649.307067pt;}
.y1ac{bottom:656.348400pt;}
.y108{bottom:656.907067pt;}
.yf8{bottom:660.107067pt;}
.y30{bottom:661.467067pt;}
.ycf{bottom:662.987200pt;}
.ya0{bottom:664.987067pt;}
.y77{bottom:665.147067pt;}
.y174{bottom:666.908133pt;}
.y14c{bottom:667.867067pt;}
.y52{bottom:667.947067pt;}
.y1ab{bottom:671.620293pt;}
.y2{bottom:672.480000pt;}
.yf7{bottom:678.747067pt;}
.y2f{bottom:680.107067pt;}
.yce{bottom:681.707200pt;}
.y107{bottom:683.547067pt;}
.y76{bottom:683.787067pt;}
.y124{bottom:685.067067pt;}
.y51{bottom:686.587067pt;}
.y1aa{bottom:686.984293pt;}
.y9f{bottom:687.067067pt;}
.y173{bottom:690.188000pt;}
.yf6{bottom:697.387067pt;}
.y2e{bottom:698.827067pt;}
.ycd{bottom:700.347200pt;}
.y106{bottom:702.187067pt;}
.y1a9{bottom:702.268133pt;}
.y75{bottom:702.507067pt;}
.y172{bottom:705.463867pt;}
.y9e{bottom:709.147067pt;}
.y14b{bottom:709.707067pt;}
.y50{bottom:713.475147pt;}
.yf5{bottom:716.107067pt;}
.y1a8{bottom:717.543893pt;}
.ycc{bottom:718.987200pt;}
.y121{bottom:720.107280pt;}
.y171{bottom:720.827867pt;}
.y105{bottom:720.907067pt;}
.y2d{bottom:725.467067pt;}
.y74{bottom:729.147067pt;}
.y9d{bottom:731.147067pt;}
.y1a7{bottom:732.827733pt;}
.y4f{bottom:733.387067pt;}
.yf4{bottom:734.747067pt;}
.y170{bottom:736.107600pt;}
.y120{bottom:736.987200pt;}
.y104{bottom:739.547067pt;}
.y148{bottom:744.747147pt;}
.ycb{bottom:745.788347pt;}
.y73{bottom:747.787067pt;}
.y1a6{bottom:748.183760pt;}
.y16f{bottom:751.383493pt;}
.y9c{bottom:757.227067pt;}
.yf3{bottom:761.555147pt;}
.y147{bottom:761.627067pt;}
.y11f{bottom:762.504800pt;}
.y1a5{bottom:763.467600pt;}
.yca{bottom:765.787067pt;}
.y103{bottom:766.187067pt;}
.y72{bottom:766.507067pt;}
.y16e{bottom:766.667333pt;}
.y4e{bottom:769.147067pt;}
.y11b{bottom:778.506400pt;}
.y1a4{bottom:778.743360pt;}
.y146{bottom:779.148267pt;}
.y9b{bottom:779.307067pt;}
.y2c{bottom:780.107067pt;}
.yf2{bottom:781.467067pt;}
.y102{bottom:784.907067pt;}
.y11e{bottom:787.385600pt;}
.y4d{bottom:787.787067pt;}
.y16d{bottom:790.027200pt;}
.y1cf{bottom:791.227067pt;}
.y71{bottom:793.147067pt;}
.y1a3{bottom:794.027200pt;}
.y9a{bottom:801.387067pt;}
.yc9{bottom:801.547067pt;}
.y11a{bottom:803.387067pt;}
.y2b{bottom:806.747067pt;}
.y1a2{bottom:809.307067pt;}
.y101{bottom:811.547067pt;}
.y70{bottom:811.787067pt;}
.y11d{bottom:812.266267pt;}
.y16c{bottom:813.307067pt;}
.y4c{bottom:814.588347pt;}
.y145{bottom:814.667867pt;}
.y142{bottom:816.427600pt;}
.yf1{bottom:817.307067pt;}
.yc8{bottom:820.187067pt;}
.y99{bottom:823.467067pt;}
.y1a1{bottom:824.667067pt;}
.y1ce{bottom:825.467200pt;}
.y119{bottom:828.275067pt;}
.y100{bottom:830.187067pt;}
.y6f{bottom:830.507067pt;}
.y2a{bottom:833.387067pt;}
.y4b{bottom:834.587067pt;}
.yf0{bottom:835.947067pt;}
.y11c{bottom:837.066400pt;}
.y16b{bottom:837.219493pt;}
.y169{bottom:837.227467pt;}
.yc7{bottom:838.907067pt;}
.y118{bottom:845.067147pt;}
.y98{bottom:845.547067pt;}
.y1a0{bottom:848.575520pt;}
.y19e{bottom:848.587600pt;}
.y1cd{bottom:848.747067pt;}
.yff{bottom:848.907067pt;}
.y144{bottom:850.187467pt;}
.y141{bottom:851.947200pt;}
.y29{bottom:852.107067pt;}
.y16a{bottom:852.583493pt;}
.y168{bottom:852.587467pt;}
.yef{bottom:854.587067pt;}
.y6e{bottom:857.147067pt;}
.y117{bottom:861.947067pt;}
.y19f{bottom:863.939520pt;}
.y19d{bottom:863.947600pt;}
.yc6{bottom:865.715147pt;}
.yfe{bottom:867.547067pt;}
.y97{bottom:867.627067pt;}
.y167{bottom:867.867333pt;}
.y4a{bottom:870.347067pt;}
.y123{bottom:870.675253pt;}
.y28{bottom:870.747067pt;}
.y1cc{bottom:872.667067pt;}
.yee{bottom:873.307067pt;}
.y6d{bottom:875.787067pt;}
.y19c{bottom:879.223360pt;}
.yc5{bottom:885.627067pt;}
.y143{bottom:885.706933pt;}
.y116{bottom:887.387067pt;}
.y122{bottom:887.467333pt;}
.y140{bottom:887.547227pt;}
.y1cb{bottom:888.027067pt;}
.y49{bottom:888.987067pt;}
.y27{bottom:889.387067pt;}
.y166{bottom:891.147067pt;}
.yed{bottom:891.947067pt;}
.y96{bottom:893.707067pt;}
.yfd{bottom:894.355147pt;}
.y6c{bottom:894.507067pt;}
.y19b{bottom:894.507200pt;}
.y13f{bottom:904.427147pt;}
.y164{bottom:907.147333pt;}
.yec{bottom:910.587067pt;}
.y1ca{bottom:911.943627pt;}
.y115{bottom:912.187067pt;}
.yfc{bottom:914.267067pt;}
.y95{bottom:915.787067pt;}
.y48{bottom:915.788347pt;}
.y26{bottom:916.107067pt;}
.y19a{bottom:917.787067pt;}
.y6b{bottom:921.147067pt;}
.y13e{bottom:921.307067pt;}
.yc4{bottom:921.387067pt;}
.y14a{bottom:921.946747pt;}
.y165{bottom:922.423227pt;}
.y163{bottom:922.427200pt;}
.y1c9{bottom:927.227467pt;}
.yeb{bottom:929.307067pt;}
.y114{bottom:933.227467pt;}
.y198{bottom:933.787333pt;}
.y47{bottom:935.787067pt;}
.y162{bottom:937.707067pt;}
.y94{bottom:937.867067pt;}
.y13d{bottom:938.747067pt;}
.y149{bottom:938.826667pt;}
.y6a{bottom:939.787067pt;}
.yc3{bottom:940.107067pt;}
.y1c8{bottom:942.583493pt;}
.y25{bottom:942.905333pt;}
.yea{bottom:947.947067pt;}
.y199{bottom:949.063227pt;}
.y197{bottom:949.067200pt;}
.yfb{bottom:950.587333pt;}
.y13c{bottom:955.547067pt;}
.y1c7{bottom:957.867333pt;}
.y161{bottom:958.267067pt;}
.y69{bottom:958.507067pt;}
.y113{bottom:958.667333pt;}
.yc2{bottom:958.747067pt;}
.y93{bottom:959.947067pt;}
.y24{bottom:962.825867pt;}
.y196{bottom:964.347067pt;}
.y46{bottom:972.027067pt;}
.ye9{bottom:974.755147pt;}
.yc1{bottom:977.387067pt;}
.y1c6{bottom:981.147067pt;}
.y92{bottom:982.027067pt;}
.y23{bottom:982.755147pt;}
.y112{bottom:984.747067pt;}
.y195{bottom:984.907067pt;}
.y68{bottom:985.147067pt;}
.y13b{bottom:987.225867pt;}
.y160{bottom:993.067067pt;}
.ye8{bottom:994.667067pt;}
.y45{bottom:1001.467067pt;}
.y22{bottom:1002.667067pt;}
.y67{bottom:1003.787067pt;}
.y91{bottom:1004.107067pt;}
.y15f{bottom:1010.747067pt;}
.y111{bottom:1010.827067pt;}
.y13a{bottom:1012.665733pt;}
.y1c5{bottom:1014.265867pt;}
.y194{bottom:1025.787067pt;}
.y21{bottom:1033.546533pt;}
.y138{bottom:1061.067067pt;}
.y20{bottom:1061.787067pt;}
.y1{bottom:1108.800000pt;}
.h14{height:11.013750pt;}
.h15{height:39.030469pt;}
.h5{height:45.184000pt;}
.h7{height:53.086720pt;}
.hd{height:56.946094pt;}
.h12{height:57.020480pt;}
.h8{height:61.076250pt;}
.h3{height:62.781250pt;}
.ha{height:66.750000pt;}
.h4{height:67.776000pt;}
.h11{height:68.288000pt;}
.h9{height:72.423750pt;}
.hb{height:77.763750pt;}
.h6{height:103.104000pt;}
.h13{height:118.139947pt;}
.h10{height:125.076783pt;}
.hf{height:125.398383pt;}
.he{height:128.595930pt;}
.hc{height:142.064730pt;}
.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.560800pt;}
.x3c{left:101.680000pt;}
.x26{left:105.920000pt;}
.x6{left:127.193040pt;}
.x11{left:132.400000pt;}
.x14{left:134.560000pt;}
.x25{left:137.038480pt;}
.x33{left:139.920000pt;}
.x3d{left:142.319733pt;}
.x27{left:143.600533pt;}
.x12{left:156.160000pt;}
.x1e{left:158.087120pt;}
.x37{left:159.119733pt;}
.x5{left:163.840000pt;}
.x7{left:177.280133pt;}
.x15{left:181.840000pt;}
.x38{left:183.127653pt;}
.x8{left:199.440133pt;}
.x17{left:217.439333pt;}
.x1c{left:219.040000pt;}
.x29{left:228.240133pt;}
.xd{left:234.071840pt;}
.x28{left:241.920800pt;}
.x22{left:256.726640pt;}
.x1d{left:275.041440pt;}
.x10{left:290.405040pt;}
.x21{left:294.720000pt;}
.x2a{left:301.040133pt;}
.x20{left:307.765040pt;}
.x2b{left:319.920533pt;}
.x19{left:332.798160pt;}
.xf{left:333.752960pt;}
.xe{left:336.634720pt;}
.xb{left:341.919333pt;}
.x1a{left:343.439840pt;}
.x1f{left:345.366800pt;}
.x24{left:349.680000pt;}
.x2c{left:363.840133pt;}
.x13{left:366.563360pt;}
.x2d{left:370.640400pt;}
.x1b{left:373.040000pt;}
.xa{left:375.600000pt;}
.x39{left:378.399867pt;}
.xc{left:380.000000pt;}
.x3{left:387.920000pt;}
.x9{left:396.880000pt;}
.x23{left:472.160000pt;}
.x2f{left:490.880400pt;}
.x2e{left:505.198267pt;}
.x34{left:509.281333pt;}
.x3a{left:519.914560pt;}
.x18{left:558.558667pt;}
.x35{left:604.081200pt;}
.x16{left:613.598107pt;}
.x32{left:624.480400pt;}
.x36{left:631.200667pt;}
.x30{left:636.879867pt;}
.x3b{left:641.833893pt;}
.x31{left:652.400133pt;}
}


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