
/* 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_7ae3b20ae35b.woff")format("woff");}.ff2{font-family:ff2;line-height:0.759000;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_23153ae11ed9.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_628e2f0e35c6.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_602837fa9604.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_b8cda631393c.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_0e73759bc5bb.woff")format("woff");}.ff7{font-family:ff7;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: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_db303a793446.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_bb9a73c5e5a2.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_c4823c67d982.woff")format("woff");}.ffb{font-family:ffb;line-height:1.592000;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_8b4601701f74.woff")format("woff");}.ffc{font-family:ffc;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:ffd;src:url("fonts/font_0012_ed2e6eb3eb88.woff")format("woff");}.ffd{font-family:ffd;line-height:1.401855;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);}
.v5{vertical-align:-94.680000px;}
.v2{vertical-align:-88.560000px;}
.v7{vertical-align:-68.759400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.v6{vertical-align:68.777280px;}
.v3{vertical-align:75.959640px;}
.v4{vertical-align:91.112040px;}
.ls2{letter-spacing:-0.324000px;}
.ls6{letter-spacing:-0.216000px;}
.ls4b{letter-spacing:-0.174348px;}
.ls4{letter-spacing:-0.144000px;}
.ls60{letter-spacing:-0.132264px;}
.ls20{letter-spacing:-0.122400px;}
.ls4f{letter-spacing:-0.108216px;}
.ls8{letter-spacing:-0.108000px;}
.ls61{letter-spacing:-0.096192px;}
.ls53{letter-spacing:-0.084168px;}
.ls1d{letter-spacing:-0.079200px;}
.ls5f{letter-spacing:-0.078156px;}
.ls5d{letter-spacing:-0.072144px;}
.ls1f{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.070308px;}
.ls51{letter-spacing:-0.066132px;}
.ls1b{letter-spacing:-0.064800px;}
.ls4a{letter-spacing:-0.060120px;}
.ls29{letter-spacing:-0.057600px;}
.ls1a{letter-spacing:-0.054684px;}
.ls5c{letter-spacing:-0.054108px;}
.ls1e{letter-spacing:-0.050400px;}
.ls47{letter-spacing:-0.048096px;}
.ls17{letter-spacing:-0.043200px;}
.ls49{letter-spacing:-0.042084px;}
.ls3e{letter-spacing:-0.039060px;}
.ls52{letter-spacing:-0.036072px;}
.ls15{letter-spacing:-0.036000px;}
.ls41{letter-spacing:-0.031248px;}
.ls4c{letter-spacing:-0.030060px;}
.ls16{letter-spacing:-0.028800px;}
.ls46{letter-spacing:-0.025164px;}
.ls4e{letter-spacing:-0.024048px;}
.ls3c{letter-spacing:-0.023436px;}
.ls19{letter-spacing:-0.021600px;}
.ls38{letter-spacing:-0.019764px;}
.ls4d{letter-spacing:-0.018036px;}
.ls3a{letter-spacing:-0.016776px;}
.ls18{letter-spacing:-0.014400px;}
.ls48{letter-spacing:-0.012024px;}
.ls3b{letter-spacing:-0.008388px;}
.ls14{letter-spacing:-0.007812px;}
.ls2a{letter-spacing:-0.007200px;}
.ls5e{letter-spacing:-0.006012px;}
.ls1{letter-spacing:0.000000px;}
.ls5a{letter-spacing:0.006012px;}
.ls1c{letter-spacing:0.007200px;}
.ls58{letter-spacing:0.012024px;}
.ls11{letter-spacing:0.014400px;}
.ls43{letter-spacing:0.018036px;}
.ls10{letter-spacing:0.021600px;}
.lsa{letter-spacing:0.023436px;}
.ls44{letter-spacing:0.024048px;}
.ls25{letter-spacing:0.028800px;}
.ls55{letter-spacing:0.030060px;}
.ls9{letter-spacing:0.031248px;}
.ls3d{letter-spacing:0.036000px;}
.ls57{letter-spacing:0.036072px;}
.ls22{letter-spacing:0.039060px;}
.ls37{letter-spacing:0.039528px;}
.ls62{letter-spacing:0.042084px;}
.lse{letter-spacing:0.043200px;}
.ls2e{letter-spacing:0.046116px;}
.ls21{letter-spacing:0.046872px;}
.ls54{letter-spacing:0.048096px;}
.ls27{letter-spacing:0.050328px;}
.ls2b{letter-spacing:0.050400px;}
.ls2d{letter-spacing:0.052704px;}
.ls5b{letter-spacing:0.054108px;}
.ls24{letter-spacing:0.057600px;}
.ls40{letter-spacing:0.058716px;}
.ls30{letter-spacing:0.059292px;}
.ls23{letter-spacing:0.062496px;}
.ls32{letter-spacing:0.065880px;}
.ls36{letter-spacing:0.066132px;}
.ls26{letter-spacing:0.067104px;}
.ls3{letter-spacing:0.072000px;}
.ls2f{letter-spacing:0.072468px;}
.ls39{letter-spacing:0.075492px;}
.ls64{letter-spacing:0.078156px;}
.ls35{letter-spacing:0.079056px;}
.ls34{letter-spacing:0.085644px;}
.ls2c{letter-spacing:0.085932px;}
.lsf{letter-spacing:0.086400px;}
.ls33{letter-spacing:0.092232px;}
.ls56{letter-spacing:0.096192px;}
.ls7{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.114228px;}
.ls28{letter-spacing:0.117180px;}
.ls31{letter-spacing:0.131760px;}
.lsd{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.151200px;}
.ls5{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.324000px;}
.ls63{letter-spacing:7.875720px;}
.ls59{letter-spacing:63.907560px;}
.ls42{letter-spacing:192.398400px;}
.ls50{letter-spacing:198.690588px;}
.lsb{letter-spacing:950.544000px;}
.ls45{letter-spacing:1189.413840px;}
.ls3f{letter-spacing:1221.624000px;}
.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;}
}
.wse6{word-spacing:-60.120000px;}
.ws3{word-spacing:-27.000000px;}
.ws4{word-spacing:-26.892000px;}
.ws2{word-spacing:-26.676000px;}
.wsf{word-spacing:-20.167200px;}
.wse{word-spacing:-20.160000px;}
.ws7e{word-spacing:-20.008800px;}
.ws11{word-spacing:-19.936800px;}
.ws2f{word-spacing:-19.893600px;}
.ws0{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.wse5{word-spacing:-13.755456px;}
.ws103{word-spacing:-13.635216px;}
.ws10{word-spacing:-4.176000px;}
.wsd{word-spacing:-1.260000px;}
.ws3f{word-spacing:-0.523404px;}
.ws13{word-spacing:-0.460908px;}
.wsfb{word-spacing:-0.432864px;}
.wsb{word-spacing:-0.432000px;}
.wscd{word-spacing:-0.429660px;}
.wse8{word-spacing:-0.420840px;}
.wse7{word-spacing:-0.408816px;}
.wsed{word-spacing:-0.384768px;}
.ws10c{word-spacing:-0.378756px;}
.ws16{word-spacing:-0.328104px;}
.ws14{word-spacing:-0.312480px;}
.ws9c{word-spacing:-0.257796px;}
.ws31{word-spacing:-0.218736px;}
.ws9{word-spacing:-0.216000px;}
.ws12{word-spacing:-0.203112px;}
.ws32{word-spacing:-0.148428px;}
.ws95{word-spacing:-0.132804px;}
.ws15{word-spacing:-0.124992px;}
.wsa{word-spacing:-0.108000px;}
.wsae{word-spacing:-0.101556px;}
.ws6{word-spacing:-0.072000px;}
.wsc4{word-spacing:-0.062496px;}
.wsfa{word-spacing:-0.054108px;}
.wsec{word-spacing:-0.042084px;}
.ws10d{word-spacing:-0.036072px;}
.ws7a{word-spacing:-0.032940px;}
.ws9b{word-spacing:-0.031248px;}
.ws104{word-spacing:-0.030060px;}
.ws7b{word-spacing:-0.026352px;}
.ws7d{word-spacing:-0.019764px;}
.wsda{word-spacing:-0.018036px;}
.ws78{word-spacing:-0.013176px;}
.wsde{word-spacing:-0.012024px;}
.ws75{word-spacing:-0.006588px;}
.wsdf{word-spacing:-0.006012px;}
.ws5{word-spacing:0.000000px;}
.wsdc{word-spacing:0.006012px;}
.ws74{word-spacing:0.006588px;}
.wsdb{word-spacing:0.012024px;}
.ws77{word-spacing:0.013176px;}
.ws2b{word-spacing:0.014400px;}
.ws93{word-spacing:0.016776px;}
.wse0{word-spacing:0.018036px;}
.wse9{word-spacing:0.024048px;}
.ws30{word-spacing:0.025164px;}
.wsdd{word-spacing:0.030060px;}
.wse2{word-spacing:0.036072px;}
.wseb{word-spacing:0.042084px;}
.wsd8{word-spacing:0.043200px;}
.wsee{word-spacing:0.048096px;}
.wse3{word-spacing:0.054108px;}
.ws107{word-spacing:0.066132px;}
.wsa1{word-spacing:0.108000px;}
.ws27{word-spacing:0.115200px;}
.wsa7{word-spacing:0.129600px;}
.wsd1{word-spacing:0.136800px;}
.ws7{word-spacing:0.144000px;}
.ws3e{word-spacing:0.151200px;}
.ws36{word-spacing:0.165600px;}
.ws28{word-spacing:0.172800px;}
.ws20{word-spacing:0.180000px;}
.ws2e{word-spacing:0.187200px;}
.ws22{word-spacing:0.194400px;}
.ws42{word-spacing:0.201600px;}
.ws8{word-spacing:0.216000px;}
.ws21{word-spacing:0.223200px;}
.ws2a{word-spacing:0.237600px;}
.wsbc{word-spacing:0.280800px;}
.ws94{word-spacing:0.285192px;}
.wsad{word-spacing:0.309600px;}
.wsc{word-spacing:0.324000px;}
.ws69{word-spacing:0.338400px;}
.ws118{word-spacing:0.378756px;}
.wsc8{word-spacing:0.518400px;}
.wsc7{word-spacing:0.532800px;}
.ws73{word-spacing:0.554400px;}
.ws110{word-spacing:0.739476px;}
.wsb9{word-spacing:1.245600px;}
.wsb3{word-spacing:1.274400px;}
.wsb8{word-spacing:1.368000px;}
.wsf6{word-spacing:1.436868px;}
.wsf5{word-spacing:1.460916px;}
.ws1a{word-spacing:1.598400px;}
.ws19{word-spacing:1.728000px;}
.wsb7{word-spacing:1.972800px;}
.ws3a{word-spacing:1.980000px;}
.wsb6{word-spacing:2.023200px;}
.ws17{word-spacing:2.030400px;}
.ws39{word-spacing:2.088000px;}
.ws18{word-spacing:2.102400px;}
.ws8b{word-spacing:2.318400px;}
.ws89{word-spacing:2.325600px;}
.ws8a{word-spacing:2.340000px;}
.wscc{word-spacing:2.383200px;}
.ws33{word-spacing:2.448000px;}
.ws35{word-spacing:2.455200px;}
.ws115{word-spacing:2.549088px;}
.ws116{word-spacing:2.561112px;}
.ws34{word-spacing:2.606400px;}
.ws99{word-spacing:2.656800px;}
.ws9a{word-spacing:2.836800px;}
.ws98{word-spacing:2.894400px;}
.wsb2{word-spacing:3.722400px;}
.wsb1{word-spacing:3.780000px;}
.ws45{word-spacing:3.801600px;}
.ws4c{word-spacing:4.305600px;}
.ws4b{word-spacing:4.492800px;}
.wsb5{word-spacing:4.514400px;}
.wsb4{word-spacing:4.543200px;}
.wsbb{word-spacing:4.838400px;}
.wsba{word-spacing:4.896000px;}
.ws38{word-spacing:4.924800px;}
.ws37{word-spacing:4.953600px;}
.wscb{word-spacing:5.198400px;}
.wsc9{word-spacing:5.205600px;}
.wsca{word-spacing:5.385600px;}
.wsf8{word-spacing:5.777532px;}
.wsf7{word-spacing:5.813604px;}
.ws3d{word-spacing:6.588000px;}
.wsc6{word-spacing:6.638400px;}
.ws3c{word-spacing:6.703200px;}
.wsc5{word-spacing:6.717600px;}
.ws3b{word-spacing:6.753600px;}
.wsa5{word-spacing:7.012800px;}
.wsa6{word-spacing:7.027200px;}
.ws41{word-spacing:7.380000px;}
.ws40{word-spacing:7.495200px;}
.ws49{word-spacing:7.704000px;}
.ws48{word-spacing:7.732800px;}
.ws4a{word-spacing:7.876800px;}
.ws109{word-spacing:7.941852px;}
.wsab{word-spacing:7.956000px;}
.ws50{word-spacing:8.452800px;}
.ws4f{word-spacing:8.474400px;}
.wsf9{word-spacing:9.030024px;}
.ws82{word-spacing:9.554400px;}
.ws81{word-spacing:9.561600px;}
.ws83{word-spacing:9.885600px;}
.ws8e{word-spacing:9.900000px;}
.ws90{word-spacing:9.907200px;}
.ws8f{word-spacing:9.914400px;}
.ws7f{word-spacing:9.921600px;}
.ws80{word-spacing:10.000800px;}
.ws72{word-spacing:10.958400px;}
.ws71{word-spacing:11.073600px;}
.wsa3{word-spacing:11.714400px;}
.wsa2{word-spacing:11.743200px;}
.ws2d{word-spacing:12.024000px;}
.ws24{word-spacing:12.074400px;}
.wsa4{word-spacing:12.081600px;}
.ws25{word-spacing:12.088800px;}
.ws26{word-spacing:12.110400px;}
.ws23{word-spacing:12.117600px;}
.ws59{word-spacing:12.369600px;}
.ws68{word-spacing:12.520800px;}
.ws5a{word-spacing:12.585600px;}
.ws87{word-spacing:13.111200px;}
.ws88{word-spacing:13.183200px;}
.wsac{word-spacing:13.492800px;}
.wsd7{word-spacing:14.500800px;}
.wsd6{word-spacing:14.587200px;}
.ws70{word-spacing:15.645600px;}
.ws6f{word-spacing:15.681600px;}
.wsf4{word-spacing:15.865668px;}
.ws85{word-spacing:17.784000px;}
.ws84{word-spacing:17.834400px;}
.ws86{word-spacing:17.935200px;}
.ws106{word-spacing:18.036000px;}
.ws29{word-spacing:18.072000px;}
.ws51{word-spacing:18.547200px;}
.ws1d{word-spacing:18.554400px;}
.ws1e{word-spacing:18.583200px;}
.ws1f{word-spacing:18.655200px;}
.ws5c{word-spacing:19.252800px;}
.ws5b{word-spacing:19.317600px;}
.ws1b{word-spacing:19.972800px;}
.ws1c{word-spacing:20.044800px;}
.ws108{word-spacing:20.903724px;}
.wsa0{word-spacing:21.052800px;}
.ws9f{word-spacing:21.074400px;}
.ws62{word-spacing:21.412800px;}
.ws61{word-spacing:21.427200px;}
.ws6d{word-spacing:22.507200px;}
.ws6c{word-spacing:22.579200px;}
.ws6e{word-spacing:22.824000px;}
.ws8d{word-spacing:23.536800px;}
.ws8c{word-spacing:23.572800px;}
.wsaa{word-spacing:25.372800px;}
.wsa9{word-spacing:25.466400px;}
.wsaf{word-spacing:25.761600px;}
.wsb0{word-spacing:25.783200px;}
.ws114{word-spacing:25.947792px;}
.ws113{word-spacing:25.959816px;}
.wsc3{word-spacing:26.078400px;}
.ws6b{word-spacing:26.474400px;}
.ws9d{word-spacing:27.165600px;}
.ws9e{word-spacing:27.244800px;}
.ws92{word-spacing:28.605600px;}
.ws91{word-spacing:28.684800px;}
.wsc2{word-spacing:29.707200px;}
.wsc1{word-spacing:29.901600px;}
.wsbf{word-spacing:30.031200px;}
.wsc0{word-spacing:30.052800px;}
.ws47{word-spacing:30.427200px;}
.wsbd{word-spacing:30.499200px;}
.wsbe{word-spacing:30.506400px;}
.ws46{word-spacing:30.520800px;}
.ws53{word-spacing:31.464000px;}
.ws54{word-spacing:31.507200px;}
.ws52{word-spacing:31.528800px;}
.ws55{word-spacing:32.227200px;}
.ws56{word-spacing:32.400000px;}
.ws97{word-spacing:34.394400px;}
.ws96{word-spacing:34.466400px;}
.ws2c{word-spacing:39.016800px;}
.ws60{word-spacing:39.427200px;}
.ws5f{word-spacing:39.556800px;}
.wsa8{word-spacing:44.474400px;}
.wsd3{word-spacing:48.765600px;}
.wsd2{word-spacing:49.053600px;}
.ws58{word-spacing:49.125600px;}
.ws57{word-spacing:49.521600px;}
.wsd5{word-spacing:50.212800px;}
.wsd4{word-spacing:50.234400px;}
.ws67{word-spacing:50.932800px;}
.wsd9{word-spacing:51.071940px;}
.ws64{word-spacing:53.532000px;}
.ws63{word-spacing:53.841600px;}
.ws4d{word-spacing:58.420800px;}
.ws4e{word-spacing:58.514400px;}
.ws7c{word-spacing:59.364468px;}
.ws79{word-spacing:59.390820px;}
.wsce{word-spacing:62.460000px;}
.ws6a{word-spacing:62.467200px;}
.ws44{word-spacing:63.532800px;}
.ws5d{word-spacing:63.885600px;}
.ws43{word-spacing:63.921600px;}
.ws5e{word-spacing:64.101600px;}
.ws66{word-spacing:82.051200px;}
.ws65{word-spacing:82.252800px;}
.wsd0{word-spacing:87.602400px;}
.wscf{word-spacing:87.868800px;}
.ws102{word-spacing:93.210048px;}
.wse1{word-spacing:114.137820px;}
.ws117{word-spacing:114.450444px;}
.wsf3{word-spacing:120.155832px;}
.wsf1{word-spacing:120.161844px;}
.wsf2{word-spacing:120.203928px;}
.wsf0{word-spacing:120.215952px;}
.wsef{word-spacing:120.221964px;}
.wsea{word-spacing:120.233988px;}
.ws101{word-spacing:121.959432px;}
.wsff{word-spacing:121.965444px;}
.ws100{word-spacing:122.007528px;}
.wsfe{word-spacing:122.019552px;}
.wsfd{word-spacing:122.025564px;}
.wsfc{word-spacing:122.037588px;}
.ws112{word-spacing:141.756948px;}
.ws10f{word-spacing:141.762960px;}
.ws111{word-spacing:141.805044px;}
.ws10e{word-spacing:141.817068px;}
.ws10a{word-spacing:141.823080px;}
.ws105{word-spacing:141.835104px;}
.ws10b{word-spacing:175.003308px;}
.wse4{word-spacing:1060.228224px;}
.ws76{word-spacing:1516.695948px;}
._19{margin-left:-1303.560552px;}
._3e{margin-left:-115.189764px;}
._35{margin-left:-93.967608px;}
._1d{margin-left:-59.819040px;}
._15{margin-left:-35.640000px;}
._2f{margin-left:-13.707360px;}
._7{margin-left:-11.880000px;}
._11{margin-left:-9.000000px;}
._1{margin-left:-1.080000px;}
._0{width:1.188000px;}
._a{width:3.628800px;}
._9{width:4.924800px;}
._f{width:6.660000px;}
._6{width:8.899200px;}
._b{width:10.728000px;}
._3{width:11.880000px;}
._c{width:12.960000px;}
._24{width:18.000000px;}
._26{width:25.560000px;}
._30{width:28.076040px;}
._13{width:30.240000px;}
._14{width:32.378400px;}
._22{width:35.280000px;}
._25{width:36.720000px;}
._16{width:39.888000px;}
._12{width:46.440000px;}
._8{width:51.120000px;}
._21{width:52.560000px;}
._10{width:55.008000px;}
._d{width:59.040000px;}
._4{width:63.000000px;}
._27{width:65.664000px;}
._5{width:71.280000px;}
._23{width:74.160000px;}
._2{width:79.200000px;}
._e{width:83.160000px;}
._32{width:92.878764px;}
._2b{width:114.154848px;}
._31{width:120.239556px;}
._34{width:122.043156px;}
._3a{width:141.840756px;}
._3b{width:148.195800px;}
._3d{width:159.197760px;}
._3c{width:183.125520px;}
._28{width:192.240000px;}
._39{width:202.340076px;}
._33{width:220.322052px;}
._37{width:243.774360px;}
._38{width:247.358160px;}
._1c{width:289.072992px;}
._1a{width:307.435944px;}
._18{width:332.990268px;}
._20{width:341.992200px;}
._36{width:504.039960px;}
._2a{width:707.562072px;}
._2d{width:737.359500px;}
._2e{width:942.482736px;}
._29{width:1050.486156px;}
._2c{width:1102.696944px;}
._1f{width:1509.172452px;}
._1b{width:1556.757576px;}
._17{width:1615.634532px;}
._1e{width:1857.710592px;}
.fc2{color:rgb(15,36,62);}
.fc4{color:rgb(255,0,0);}
.fc1{color:rgb(13,27,67);}
.fc3{color:rgb(154,154,154);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.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;}
.yf1{bottom:3.150450px;}
.y1f{bottom:44.100000px;}
.y1e{bottom:66.060000px;}
.y1d{bottom:86.580000px;}
.y6e{bottom:90.030450px;}
.y221{bottom:103.623450px;}
.y142{bottom:104.961780px;}
.y9f{bottom:106.680600px;}
.y1c{bottom:106.920000px;}
.y1be{bottom:108.935250px;}
.y6d{bottom:111.000450px;}
.ybd{bottom:114.060450px;}
.y220{bottom:120.804330px;}
.y141{bottom:122.156100px;}
.y9e{bottom:125.670600px;}
.y1bd{bottom:126.125100px;}
.y1b{bottom:127.260000px;}
.ybc{bottom:135.030450px;}
.y21f{bottom:137.998650px;}
.y140{bottom:139.440600px;}
.y6c{bottom:141.060450px;}
.y1bc{bottom:143.314800px;}
.y9d{bottom:144.660450px;}
.y1a{bottom:147.600000px;}
.y21e{bottom:155.283150px;}
.ybb{bottom:156.000450px;}
.y13f{bottom:156.630450px;}
.y1bb{bottom:160.504650px;}
.y6b{bottom:162.030450px;}
.y182{bottom:164.550600px;}
.y19{bottom:168.120000px;}
.y9c{bottom:168.780540px;}
.y13e{bottom:174.536100px;}
.y1ba{bottom:177.784650px;}
.y181{bottom:181.740450px;}
.y6a{bottom:183.000450px;}
.yba{bottom:186.060450px;}
.y9b{bottom:187.770450px;}
.y18{bottom:188.460000px;}
.y21d{bottom:189.662700px;}
.y13d{bottom:191.820600px;}
.y1b9{bottom:194.974500px;}
.y180{bottom:199.740600px;}
.y69{bottom:204.060450px;}
.y21c{bottom:206.852550px;}
.yb9{bottom:207.030450px;}
.y17{bottom:208.800000px;}
.y13c{bottom:209.010450px;}
.y9a{bottom:211.980450px;}
.y1b8{bottom:212.164350px;}
.y17f{bottom:216.930450px;}
.y21b{bottom:224.132550px;}
.y68{bottom:225.030450px;}
.y13b{bottom:226.920600px;}
.y16{bottom:229.140000px;}
.y1b7{bottom:229.354050px;}
.y17e{bottom:234.926580px;}
.yb8{bottom:237.000450px;}
.y21a{bottom:241.317780px;}
.y13a{bottom:244.200600px;}
.y67{bottom:246.000450px;}
.y1b6{bottom:246.634050px;}
.y15{bottom:249.660000px;}
.y17d{bottom:252.120900px;}
.yb7{bottom:258.060450px;}
.y219{bottom:258.512100px;}
.y139{bottom:262.110900px;}
.y99{bottom:262.559850px;}
.y1b5{bottom:263.823900px;}
.y66{bottom:267.060450px;}
.y17c{bottom:269.306130px;}
.y14{bottom:270.000000px;}
.y218{bottom:275.692980px;}
.y138{bottom:279.386280px;}
.y17b{bottom:286.500450px;}
.yb6{bottom:288.030450px;}
.y13{bottom:290.340000px;}
.y217{bottom:292.977480px;}
.y98{bottom:294.330450px;}
.y137{bottom:296.580600px;}
.y65{bottom:297.030450px;}
.y44{bottom:297.120450px;}
.y1b4{bottom:298.203600px;}
.y17a{bottom:303.780450px;}
.yb5{bottom:309.000450px;}
.y216{bottom:310.171800px;}
.y12{bottom:310.860000px;}
.y136{bottom:313.770450px;}
.y1b3{bottom:315.483450px;}
.y64{bottom:318.000450px;}
.y43{bottom:318.090450px;}
.y179{bottom:321.690450px;}
.y96{bottom:326.812440px;}
.y215{bottom:327.357030px;}
.yb4{bottom:330.060450px;}
.y97{bottom:330.600540px;}
.y11{bottom:331.200000px;}
.y135{bottom:331.770750px;}
.y1b2{bottom:332.673300px;}
.y178{bottom:338.970450px;}
.y214{bottom:344.551350px;}
.y63{bottom:348.060450px;}
.y42{bottom:348.150450px;}
.y134{bottom:348.960600px;}
.y95{bottom:349.590450px;}
.y1b1{bottom:349.863150px;}
.y10{bottom:351.540000px;}
.y177{bottom:356.880600px;}
.yb3{bottom:360.030450px;}
.y213{bottom:361.817790px;}
.y133{bottom:366.870450px;}
.y1b0{bottom:367.053000px;}
.y62{bottom:369.030450px;}
.y41{bottom:369.120450px;}
.yf{bottom:371.880000px;}
.y94{bottom:373.800450px;}
.y176{bottom:374.070450px;}
.y212{bottom:379.012110px;}
.y132{bottom:384.150450px;}
.y1af{bottom:384.333000px;}
.y61{bottom:390.000450px;}
.y40{bottom:390.090450px;}
.ye{bottom:391.500000px;}
.y175{bottom:392.070600px;}
.y211{bottom:396.206430px;}
.y1ae{bottom:401.522700px;}
.y131{bottom:402.056730px;}
.y174{bottom:409.260450px;}
.y60{bottom:411.060450px;}
.y3f{bottom:411.150450px;}
.y8f{bottom:411.602400px;}
.yd{bottom:412.560000px;}
.y210{bottom:413.400750px;}
.y1e7{bottom:413.850750px;}
.y1ad{bottom:418.712550px;}
.y130{bottom:419.251050px;}
.y173{bottom:427.260750px;}
.y8e{bottom:430.592250px;}
.y20f{bottom:430.680750px;}
.y1e6{bottom:431.040600px;}
.yb2{bottom:432.030450px;}
.y1ac{bottom:435.902400px;}
.y12f{bottom:436.521960px;}
.y5f{bottom:441.030450px;}
.y3e{bottom:441.120600px;}
.yc{bottom:441.540000px;}
.y172{bottom:444.450600px;}
.y20e{bottom:447.870600px;}
.y1e5{bottom:448.950450px;}
.y8d{bottom:449.491650px;}
.y1ab{bottom:453.182400px;}
.y12e{bottom:453.716280px;}
.y5e{bottom:462.000450px;}
.y3d{bottom:462.090600px;}
.yb1{bottom:462.189690px;}
.y171{bottom:462.451350px;}
.y20d{bottom:465.784500px;}
.y1e4{bottom:466.230450px;}
.y8c{bottom:468.481500px;}
.y12d{bottom:470.910600px;}
.yb{bottom:479.340000px;}
.y170{bottom:479.641200px;}
.y5d{bottom:483.060450px;}
.y20c{bottom:483.064500px;}
.y3c{bottom:483.150600px;}
.y1e3{bottom:484.136580px;}
.yb0{bottom:484.590600px;}
.y8b{bottom:487.471350px;}
.y1aa{bottom:487.561950px;}
.y12c{bottom:488.100450px;}
.y16f{bottom:496.831050px;}
.y20b{bottom:500.254350px;}
.y1e2{bottom:501.330900px;}
.ye8{bottom:503.940450px;}
.y3b{bottom:504.120600px;}
.y1a9{bottom:504.751800px;}
.y12b{bottom:506.104350px;}
.y8a{bottom:506.461350px;}
.y93{bottom:506.463000px;}
.y5c{bottom:513.030450px;}
.y16e{bottom:514.020900px;}
.ya{bottom:517.140000px;}
.y20a{bottom:517.444050px;}
.y1e1{bottom:518.606280px;}
.y1a8{bottom:522.031800px;}
.y12a{bottom:523.289580px;}
.yaf{bottom:524.910450px;}
.yd2{bottom:525.000450px;}
.y3a{bottom:525.090600px;}
.y89{bottom:525.451200px;}
.y92{bottom:525.452850px;}
.y16d{bottom:531.300750px;}
.ye7{bottom:533.910450px;}
.y5b{bottom:534.000450px;}
.y1e0{bottom:535.800600px;}
.y1a7{bottom:539.221650px;}
.y129{bottom:540.483900px;}
.y91{bottom:544.442850px;}
.y88{bottom:544.449360px;}
.yae{bottom:545.880450px;}
.yd1{bottom:546.060450px;}
.y39{bottom:546.150450px;}
.y16c{bottom:548.490600px;}
.y235{bottom:549.480450px;}
.y209{bottom:551.913900px;}
.y1df{bottom:552.990450px;}
.y9{bottom:554.940000px;}
.y5a{bottom:555.060450px;}
.y1a6{bottom:556.411350px;}
.y128{bottom:557.759430px;}
.y87{bottom:563.340450px;}
.y90{bottom:563.342100px;}
.ye6{bottom:563.880450px;}
.y16b{bottom:565.680450px;}
.y107{bottom:566.670450px;}
.yad{bottom:566.850450px;}
.yd0{bottom:567.030450px;}
.y38{bottom:567.120450px;}
.y234{bottom:568.740600px;}
.y208{bottom:569.099280px;}
.y1de{bottom:570.990600px;}
.y1a5{bottom:573.601200px;}
.y127{bottom:574.953750px;}
.y59{bottom:576.030450px;}
.y16a{bottom:583.682700px;}
.y233{bottom:585.930450px;}
.y207{bottom:586.293600px;}
.y86{bottom:587.559360px;}
.ycf{bottom:588.000450px;}
.y1dd{bottom:588.180450px;}
.y1a4{bottom:590.881200px;}
.y126{bottom:592.143450px;}
.y8{bottom:592.740000px;}
.ye5{bottom:593.850450px;}
.y58{bottom:597.000450px;}
.yac{bottom:597.001890px;}
.y37{bottom:597.090450px;}
.y169{bottom:600.872550px;}
.y105{bottom:602.580450px;}
.y206{bottom:603.478800px;}
.y232{bottom:603.930600px;}
.y1dc{bottom:606.176280px;}
.y85{bottom:606.450450px;}
.y1a3{bottom:608.071050px;}
.yce{bottom:609.060450px;}
.y125{bottom:609.328800px;}
.y168{bottom:618.057930px;}
.y36{bottom:618.150450px;}
.yab{bottom:619.500450px;}
.y104{bottom:619.770450px;}
.y205{bottom:620.763300px;}
.y231{bottom:621.120450px;}
.y1db{bottom:623.370600px;}
.ye4{bottom:623.910450px;}
.y1a2{bottom:625.260900px;}
.y7{bottom:626.580000px;}
.y124{bottom:626.613300px;}
.y57{bottom:627.060450px;}
.y84{bottom:630.660450px;}
.y167{bottom:635.252250px;}
.y103{bottom:637.050450px;}
.y204{bottom:637.948680px;}
.y230{bottom:639.030900px;}
.y35{bottom:639.120450px;}
.ycd{bottom:639.219540px;}
.y1da{bottom:640.560450px;}
.y1a1{bottom:642.450600px;}
.y56{bottom:648.030450px;}
.y6{bottom:651.780000px;}
.ye3{bottom:653.880450px;}
.y102{bottom:654.240450px;}
.y203{bottom:655.143000px;}
.y22f{bottom:656.306280px;}
.y1d9{bottom:658.560600px;}
.y1a0{bottom:659.730600px;}
.y34{bottom:660.090450px;}
.yaa{bottom:660.270450px;}
.y123{bottom:660.993000px;}
.ycc{bottom:661.620450px;}
.y83{bottom:668.551350px;}
.y166{bottom:669.721950px;}
.y101{bottom:671.430450px;}
.y202{bottom:672.328200px;}
.y22e{bottom:673.500600px;}
.y1d8{bottom:675.750450px;}
.y19f{bottom:676.920450px;}
.y5{bottom:676.980000px;}
.y122{bottom:678.178200px;}
.y55{bottom:678.189540px;}
.y33{bottom:681.150450px;}
.ye2{bottom:683.850450px;}
.y165{bottom:686.907330px;}
.y81{bottom:687.450600px;}
.y201{bottom:689.612700px;}
.y22d{bottom:690.690450px;}
.ya9{bottom:693.390450px;}
.y1d7{bottom:693.750600px;}
.y19e{bottom:694.831950px;}
.y121{bottom:695.462700px;}
.y54{bottom:700.590450px;}
.y100{bottom:701.130450px;}
.y106{bottom:701.130600px;}
.ycb{bottom:701.850450px;}
.y32{bottom:702.120450px;}
.y4{bottom:702.180000px;}
.y164{bottom:704.101650px;}
.y80{bottom:706.440540px;}
.y82{bottom:706.440600px;}
.y200{bottom:706.793460px;}
.y22c{bottom:708.690600px;}
.y1d6{bottom:710.940450px;}
.y19d{bottom:712.111950px;}
.y120{bottom:712.648080px;}
.ye1{bottom:713.910450px;}
.y163{bottom:721.377030px;}
.yca{bottom:722.910450px;}
.y31{bottom:723.090450px;}
.y1ff{bottom:723.987780px;}
.y7f{bottom:725.430450px;}
.y22b{bottom:725.880450px;}
.ya8{bottom:726.060450px;}
.y3{bottom:727.380000px;}
.y1d5{bottom:728.853900px;}
.y19c{bottom:729.297180px;}
.y11f{bottom:729.842400px;}
.yff{bottom:737.040450px;}
.y162{bottom:738.571350px;}
.y53{bottom:740.910450px;}
.y1fe{bottom:741.182100px;}
.yc9{bottom:743.880450px;}
.y22a{bottom:743.880600px;}
.y30{bottom:744.150450px;}
.y1d4{bottom:746.133900px;}
.y19b{bottom:746.491500px;}
.y11e{bottom:747.027600px;}
.y7e{bottom:749.550690px;}
.yfe{bottom:754.230450px;}
.y161{bottom:755.756730px;}
.ya7{bottom:756.030450px;}
.y2{bottom:756.540000px;}
.y1fd{bottom:758.457630px;}
.y229{bottom:761.070450px;}
.y52{bottom:761.880450px;}
.y1d3{bottom:763.323750px;}
.y11d{bottom:764.312100px;}
.yc8{bottom:764.850450px;}
.y2f{bottom:765.120450px;}
.y7d{bottom:768.540600px;}
.yfd{bottom:771.510450px;}
.y160{bottom:772.951050px;}
.ye0{bottom:773.850450px;}
.y1fc{bottom:775.651950px;}
.y228{bottom:778.980450px;}
.y1d2{bottom:780.513450px;}
.y19a{bottom:780.961350px;}
.y11c{bottom:781.501950px;}
.y51{bottom:782.850450px;}
.yc7{bottom:785.910450px;}
.ya6{bottom:786.000450px;}
.y2e{bottom:786.090450px;}
.yfc{bottom:788.700450px;}
.y15f{bottom:790.226580px;}
.y7c{bottom:792.750450px;}
.y1fb{bottom:792.841800px;}
.y227{bottom:796.260450px;}
.y1d1{bottom:797.703300px;}
.y199{bottom:798.142110px;}
.y11b{bottom:798.687330px;}
.ydf{bottom:803.910450px;}
.yfb{bottom:805.890450px;}
.ya5{bottom:807.060450px;}
.y15e{bottom:807.420900px;}
.y1fa{bottom:810.031650px;}
.y50{bottom:813.001890px;}
.y226{bottom:814.170750px;}
.y1d0{bottom:814.983300px;}
.y198{bottom:815.336430px;}
.yc6{bottom:815.880450px;}
.y11a{bottom:815.881650px;}
.y2d{bottom:816.150450px;}
.y15d{bottom:824.610600px;}
.yde{bottom:824.880450px;}
.y1f9{bottom:827.307030px;}
.ya4{bottom:828.030450px;}
.y225{bottom:831.360600px;}
.yfa{bottom:832.080450px;}
.y1cf{bottom:832.173150px;}
.y197{bottom:832.530750px;}
.y119{bottom:833.157030px;}
.y4f{bottom:835.500450px;}
.yc5{bottom:836.850450px;}
.y7b{bottom:839.910450px;}
.y15c{bottom:841.800450px;}
.y1f8{bottom:844.501350px;}
.ydd{bottom:845.850450px;}
.ya3{bottom:849.000450px;}
.yf9{bottom:849.360600px;}
.y1ce{bottom:849.363000px;}
.y196{bottom:849.810750px;}
.y118{bottom:850.351350px;}
.yc4{bottom:857.910450px;}
.y15b{bottom:859.080450px;}
.y7a{bottom:860.880450px;}
.y1f7{bottom:861.691200px;}
.y1cd{bottom:866.552700px;}
.ydc{bottom:866.910450px;}
.y195{bottom:867.000600px;}
.y117{bottom:867.536730px;}
.y4e{bottom:875.730450px;}
.y158{bottom:876.991800px;}
.y2c{bottom:877.530450px;}
.yc3{bottom:878.880450px;}
.y1f6{bottom:878.881050px;}
.ya2{bottom:879.151890px;}
.y1cc{bottom:883.832700px;}
.y116{bottom:884.731050px;}
.y192{bottom:884.911650px;}
.yf8{bottom:885.266130px;}
.y79{bottom:890.850450px;}
.y157{bottom:894.181650px;}
.y1f5{bottom:896.161050px;}
.y4d{bottom:896.700450px;}
.ydb{bottom:896.880450px;}
.yc2{bottom:899.850450px;}
.y224{bottom:901.018080px;}
.y1cb{bottom:901.022550px;}
.ya1{bottom:901.650450px;}
.y115{bottom:902.011050px;}
.y191{bottom:902.191650px;}
.yf7{bottom:902.460450px;}
.y2b{bottom:907.500450px;}
.y156{bottom:911.461650px;}
.y78{bottom:911.910450px;}
.y1f4{bottom:913.350900px;}
.yda{bottom:917.850450px;}
.y1ca{bottom:918.212400px;}
.y114{bottom:919.200900px;}
.y190{bottom:919.381350px;}
.yc1{bottom:920.910450px;}
.y4c{bottom:926.851890px;}
.y155{bottom:928.651350px;}
.y1f3{bottom:930.540600px;}
.y77{bottom:932.880450px;}
.y1c9{bottom:935.402250px;}
.y113{bottom:936.390600px;}
.y18f{bottom:936.571200px;}
.y2a{bottom:937.560450px;}
.yf5{bottom:938.460450px;}
.ya0{bottom:941.880450px;}
.y154{bottom:945.841200px;}
.y1f2{bottom:947.730450px;}
.yd9{bottom:947.910450px;}
.y4b{bottom:949.350450px;}
.y1c8{bottom:952.591950px;}
.y112{bottom:953.580450px;}
.y18e{bottom:953.761050px;}
.yf4{bottom:955.650450px;}
.y29{bottom:958.260450px;}
.yf0{bottom:960.780000px;}
.y76{bottom:962.850450px;}
.y153{bottom:963.031050px;}
.yef{bottom:963.930450px;}
.y1f0{bottom:965.730900px;}
.yd8{bottom:968.880450px;}
.y1c7{bottom:969.871950px;}
.y18d{bottom:971.041050px;}
.y111{bottom:971.580900px;}
.yf3{bottom:972.930450px;}
.y28{bottom:978.960450px;}
.y152{bottom:980.297490px;}
.y1f1{bottom:982.916130px;}
.y1ef{bottom:982.920600px;}
.y75{bottom:983.910450px;}
.yf2{bottom:986.970000px;}
.y1c6{bottom:987.061800px;}
.y18c{bottom:988.230900px;}
.y110{bottom:988.770600px;}
.y4a{bottom:989.580450px;}
.yd7{bottom:989.850450px;}
.yee{bottom:990.120450px;}
.yc0{bottom:993.009540px;}
.y151{bottom:997.491810px;}
.y27{bottom:999.660450px;}
.y1ee{bottom:1000.110450px;}
.y1c5{bottom:1004.251650px;}
.y18b{bottom:1005.416130px;}
.y10f{bottom:1005.960450px;}
.yed{bottom:1007.310450px;}
.y49{bottom:1010.550450px;}
.y74{bottom:1014.069540px;}
.y150{bottom:1014.686130px;}
.ybf{bottom:1015.410450px;}
.y1ed{bottom:1017.390450px;}
.yd6{bottom:1020.001890px;}
.y26{bottom:1020.360450px;}
.y223{bottom:1021.436850px;}
.y1c4{bottom:1021.441350px;}
.y18a{bottom:1022.610450px;}
.y194{bottom:1022.611950px;}
.y10d{bottom:1023.960750px;}
.y14f{bottom:1031.880450px;}
.y15a{bottom:1031.881950px;}
.yf6{bottom:1033.499700px;}
.yec{bottom:1033.500450px;}
.y1eb{bottom:1035.300600px;}
.y73{bottom:1036.470450px;}
.y1c3{bottom:1038.721350px;}
.y189{bottom:1039.890450px;}
.y193{bottom:1039.891950px;}
.y48{bottom:1040.701890px;}
.y25{bottom:1041.060450px;}
.y10e{bottom:1041.146130px;}
.y10c{bottom:1041.150600px;}
.yd5{bottom:1042.500450px;}
.y14e{bottom:1049.160450px;}
.y159{bottom:1049.161950px;}
.y1ec{bottom:1052.485950px;}
.y1ea{bottom:1052.490450px;}
.ybe{bottom:1055.730450px;}
.y1c2{bottom:1055.911200px;}
.y188{bottom:1057.800600px;}
.y10b{bottom:1058.340450px;}
.y147{bottom:1059.150450px;}
.y47{bottom:1063.200450px;}
.y14c{bottom:1067.070600px;}
.yeb{bottom:1069.500450px;}
.y1e9{bottom:1069.770450px;}
.y24{bottom:1071.208350px;}
.y1c1{bottom:1073.101050px;}
.y187{bottom:1074.985950px;}
.y186{bottom:1074.990450px;}
.y72{bottom:1076.700450px;}
.y146{bottom:1080.570600px;}
.y10a{bottom:1080.840450px;}
.yd4{bottom:1083.270450px;}
.y14d{bottom:1084.255950px;}
.y14b{bottom:1084.260450px;}
.y1c0{bottom:1090.290900px;}
.y1e8{bottom:1092.180450px;}
.y185{bottom:1092.270450px;}
.y23{bottom:1093.638630px;}
.y71{bottom:1097.670450px;}
.y145{bottom:1097.760450px;}
.y14a{bottom:1101.540450px;}
.y46{bottom:1103.970450px;}
.yea{bottom:1105.770450px;}
.y1bf{bottom:1107.570900px;}
.y184{bottom:1110.180450px;}
.y22{bottom:1116.039540px;}
.y109{bottom:1117.200450px;}
.y70{bottom:1118.730450px;}
.y149{bottom:1123.950450px;}
.y144{bottom:1124.756130px;}
.y222{bottom:1124.760600px;}
.y45{bottom:1137.090450px;}
.ye9{bottom:1137.180450px;}
.y21{bottom:1138.440450px;}
.y6f{bottom:1139.700450px;}
.yd3{bottom:1140.060450px;}
.y183{bottom:1141.410600px;}
.y143{bottom:1141.950450px;}
.y108{bottom:1193.700450px;}
.y148{bottom:1194.600450px;}
.y20{bottom:1195.140450px;}
.y1{bottom:1247.400000px;}
.h12{height:17.010000px;}
.h5{height:50.832000px;}
.h7{height:59.722560px;}
.h8{height:62.703281px;}
.h11{height:64.148040px;}
.h13{height:65.170080px;}
.hc{height:68.710781px;}
.h16{height:70.293960px;}
.h3{height:70.628906px;}
.h10{height:70.664062px;}
.ha{height:75.093750px;}
.h4{height:76.248000px;}
.h9{height:81.476719px;}
.hb{height:87.484219px;}
.h6{height:115.992000px;}
.h14{height:132.925320px;}
.h15{height:133.268040px;}
.he{height:144.275141px;}
.hd{height:144.670421px;}
.hf{height:159.822821px;}
.h2{height:1262.866500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:218.250000px;}
.w4{width:299.160000px;}
.w2{width:892.396500px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w3{width:892.830000px;}
.x0{left:0.000000px;}
.x2d{left:31.410000px;}
.x1{left:42.480000px;}
.x2{left:80.820000px;}
.x9{left:106.290000px;}
.x49{left:114.390000px;}
.x5{left:119.781000px;}
.x26{left:138.060000px;}
.x3f{left:146.609550px;}
.x11{left:148.860000px;}
.x47{left:152.460600px;}
.x60{left:154.709400px;}
.x55{left:160.109700px;}
.x27{left:162.630000px;}
.x51{left:165.510000px;}
.x44{left:173.609400px;}
.x12{left:175.590000px;}
.x1f{left:177.836130px;}
.x20{left:180.720000px;}
.x4{left:184.230000px;}
.x52{left:187.109700px;}
.x45{left:200.603280px;}
.x61{left:208.703280px;}
.x56{left:214.103580px;}
.x2f{left:216.720000px;}
.x29{left:235.890000px;}
.x31{left:238.050450px;}
.x16{left:244.529250px;}
.x1d{left:246.420300px;}
.x33{left:250.740300px;}
.x46{left:252.810000px;}
.x58{left:258.841800px;}
.xd{left:263.338470px;}
.x4a{left:265.050750px;}
.x32{left:266.131050px;}
.x18{left:271.528500px;}
.x57{left:274.231050px;}
.x6{left:278.462250px;}
.x24{left:288.805590px;}
.x15{left:292.414260px;}
.x19{left:298.527900px;}
.x1e{left:309.429270px;}
.x28{left:315.270000px;}
.x10{left:326.693790px;}
.x23{left:331.559700px;}
.x34{left:344.970900px;}
.x22{left:346.223790px;}
.x59{left:353.072400px;}
.x7{left:360.812400px;}
.x36{left:362.791950px;}
.x35{left:366.211350px;}
.x5a{left:370.893450px;}
.x1a{left:374.405580px;}
.xf{left:375.479730px;}
.xe{left:378.721710px;}
.xb{left:384.659250px;}
.x1b{left:386.279820px;}
.x21{left:388.447650px;}
.x13{left:412.293780px;}
.x1c{left:419.580000px;}
.xa{left:422.550000px;}
.x3{left:423.720000px;}
.xc{left:427.410000px;}
.x38{left:433.166940px;}
.x37{left:435.601800px;}
.x39{left:439.021200px;}
.x5b{left:441.268440px;}
.x4b{left:444.235440px;}
.x8{left:446.490000px;}
.x4c{left:450.089550px;}
.x2a{left:456.120000px;}
.x2b{left:497.880000px;}
.x2c{left:501.300000px;}
.x25{left:531.090000px;}
.x2e{left:533.430000px;}
.x3c{left:546.840300px;}
.x3a{left:549.270750px;}
.x5e{left:551.339100px;}
.x41{left:555.118800px;}
.x4e{left:556.559100px;}
.x40{left:558.178950px;}
.x54{left:561.419700px;}
.x3b{left:562.948050px;}
.x53{left:567.899250px;}
.x5c{left:571.049550px;}
.x4d{left:572.666700px;}
.x17{left:628.288500px;}
.x5f{left:682.289550px;}
.x42{left:686.159400px;}
.x3e{left:697.140300px;}
.x50{left:705.689700px;}
.x3d{left:711.089700px;}
.x48{left:713.520000px;}
.x43{left:716.578650px;}
.x4f{left:719.639100px;}
.x30{left:724.590300px;}
.x14{left:728.277960px;}
.x5d{left:736.653000px;}
@media print{
.v5{vertical-align:-84.160000pt;}
.v2{vertical-align:-78.720000pt;}
.v7{vertical-align:-61.119467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.v6{vertical-align:61.135360pt;}
.v3{vertical-align:67.519680pt;}
.v4{vertical-align:80.988480pt;}
.ls2{letter-spacing:-0.288000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls4b{letter-spacing:-0.154976pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls60{letter-spacing:-0.117568pt;}
.ls20{letter-spacing:-0.108800pt;}
.ls4f{letter-spacing:-0.096192pt;}
.ls8{letter-spacing:-0.096000pt;}
.ls61{letter-spacing:-0.085504pt;}
.ls53{letter-spacing:-0.074816pt;}
.ls1d{letter-spacing:-0.070400pt;}
.ls5f{letter-spacing:-0.069472pt;}
.ls5d{letter-spacing:-0.064128pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.062496pt;}
.ls51{letter-spacing:-0.058784pt;}
.ls1b{letter-spacing:-0.057600pt;}
.ls4a{letter-spacing:-0.053440pt;}
.ls29{letter-spacing:-0.051200pt;}
.ls1a{letter-spacing:-0.048608pt;}
.ls5c{letter-spacing:-0.048096pt;}
.ls1e{letter-spacing:-0.044800pt;}
.ls47{letter-spacing:-0.042752pt;}
.ls17{letter-spacing:-0.038400pt;}
.ls49{letter-spacing:-0.037408pt;}
.ls3e{letter-spacing:-0.034720pt;}
.ls52{letter-spacing:-0.032064pt;}
.ls15{letter-spacing:-0.032000pt;}
.ls41{letter-spacing:-0.027776pt;}
.ls4c{letter-spacing:-0.026720pt;}
.ls16{letter-spacing:-0.025600pt;}
.ls46{letter-spacing:-0.022368pt;}
.ls4e{letter-spacing:-0.021376pt;}
.ls3c{letter-spacing:-0.020832pt;}
.ls19{letter-spacing:-0.019200pt;}
.ls38{letter-spacing:-0.017568pt;}
.ls4d{letter-spacing:-0.016032pt;}
.ls3a{letter-spacing:-0.014912pt;}
.ls18{letter-spacing:-0.012800pt;}
.ls48{letter-spacing:-0.010688pt;}
.ls3b{letter-spacing:-0.007456pt;}
.ls14{letter-spacing:-0.006944pt;}
.ls2a{letter-spacing:-0.006400pt;}
.ls5e{letter-spacing:-0.005344pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5a{letter-spacing:0.005344pt;}
.ls1c{letter-spacing:0.006400pt;}
.ls58{letter-spacing:0.010688pt;}
.ls11{letter-spacing:0.012800pt;}
.ls43{letter-spacing:0.016032pt;}
.ls10{letter-spacing:0.019200pt;}
.lsa{letter-spacing:0.020832pt;}
.ls44{letter-spacing:0.021376pt;}
.ls25{letter-spacing:0.025600pt;}
.ls55{letter-spacing:0.026720pt;}
.ls9{letter-spacing:0.027776pt;}
.ls3d{letter-spacing:0.032000pt;}
.ls57{letter-spacing:0.032064pt;}
.ls22{letter-spacing:0.034720pt;}
.ls37{letter-spacing:0.035136pt;}
.ls62{letter-spacing:0.037408pt;}
.lse{letter-spacing:0.038400pt;}
.ls2e{letter-spacing:0.040992pt;}
.ls21{letter-spacing:0.041664pt;}
.ls54{letter-spacing:0.042752pt;}
.ls27{letter-spacing:0.044736pt;}
.ls2b{letter-spacing:0.044800pt;}
.ls2d{letter-spacing:0.046848pt;}
.ls5b{letter-spacing:0.048096pt;}
.ls24{letter-spacing:0.051200pt;}
.ls40{letter-spacing:0.052192pt;}
.ls30{letter-spacing:0.052704pt;}
.ls23{letter-spacing:0.055552pt;}
.ls32{letter-spacing:0.058560pt;}
.ls36{letter-spacing:0.058784pt;}
.ls26{letter-spacing:0.059648pt;}
.ls3{letter-spacing:0.064000pt;}
.ls2f{letter-spacing:0.064416pt;}
.ls39{letter-spacing:0.067104pt;}
.ls64{letter-spacing:0.069472pt;}
.ls35{letter-spacing:0.070272pt;}
.ls34{letter-spacing:0.076128pt;}
.ls2c{letter-spacing:0.076384pt;}
.lsf{letter-spacing:0.076800pt;}
.ls33{letter-spacing:0.081984pt;}
.ls56{letter-spacing:0.085504pt;}
.ls7{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.101536pt;}
.ls28{letter-spacing:0.104160pt;}
.ls31{letter-spacing:0.117120pt;}
.lsd{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.134400pt;}
.ls5{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.288000pt;}
.ls63{letter-spacing:7.000640pt;}
.ls59{letter-spacing:56.806720pt;}
.ls42{letter-spacing:171.020800pt;}
.ls50{letter-spacing:176.613856pt;}
.lsb{letter-spacing:844.928000pt;}
.ls45{letter-spacing:1057.256747pt;}
.ls3f{letter-spacing:1085.888000pt;}
.wse6{word-spacing:-53.440000pt;}
.ws3{word-spacing:-24.000000pt;}
.ws4{word-spacing:-23.904000pt;}
.ws2{word-spacing:-23.712000pt;}
.wsf{word-spacing:-17.926400pt;}
.wse{word-spacing:-17.920000pt;}
.ws7e{word-spacing:-17.785600pt;}
.ws11{word-spacing:-17.721600pt;}
.ws2f{word-spacing:-17.683200pt;}
.ws0{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.wse5{word-spacing:-12.227072pt;}
.ws103{word-spacing:-12.120192pt;}
.ws10{word-spacing:-3.712000pt;}
.wsd{word-spacing:-1.120000pt;}
.ws3f{word-spacing:-0.465248pt;}
.ws13{word-spacing:-0.409696pt;}
.wsfb{word-spacing:-0.384768pt;}
.wsb{word-spacing:-0.384000pt;}
.wscd{word-spacing:-0.381920pt;}
.wse8{word-spacing:-0.374080pt;}
.wse7{word-spacing:-0.363392pt;}
.wsed{word-spacing:-0.342016pt;}
.ws10c{word-spacing:-0.336672pt;}
.ws16{word-spacing:-0.291648pt;}
.ws14{word-spacing:-0.277760pt;}
.ws9c{word-spacing:-0.229152pt;}
.ws31{word-spacing:-0.194432pt;}
.ws9{word-spacing:-0.192000pt;}
.ws12{word-spacing:-0.180544pt;}
.ws32{word-spacing:-0.131936pt;}
.ws95{word-spacing:-0.118048pt;}
.ws15{word-spacing:-0.111104pt;}
.wsa{word-spacing:-0.096000pt;}
.wsae{word-spacing:-0.090272pt;}
.ws6{word-spacing:-0.064000pt;}
.wsc4{word-spacing:-0.055552pt;}
.wsfa{word-spacing:-0.048096pt;}
.wsec{word-spacing:-0.037408pt;}
.ws10d{word-spacing:-0.032064pt;}
.ws7a{word-spacing:-0.029280pt;}
.ws9b{word-spacing:-0.027776pt;}
.ws104{word-spacing:-0.026720pt;}
.ws7b{word-spacing:-0.023424pt;}
.ws7d{word-spacing:-0.017568pt;}
.wsda{word-spacing:-0.016032pt;}
.ws78{word-spacing:-0.011712pt;}
.wsde{word-spacing:-0.010688pt;}
.ws75{word-spacing:-0.005856pt;}
.wsdf{word-spacing:-0.005344pt;}
.ws5{word-spacing:0.000000pt;}
.wsdc{word-spacing:0.005344pt;}
.ws74{word-spacing:0.005856pt;}
.wsdb{word-spacing:0.010688pt;}
.ws77{word-spacing:0.011712pt;}
.ws2b{word-spacing:0.012800pt;}
.ws93{word-spacing:0.014912pt;}
.wse0{word-spacing:0.016032pt;}
.wse9{word-spacing:0.021376pt;}
.ws30{word-spacing:0.022368pt;}
.wsdd{word-spacing:0.026720pt;}
.wse2{word-spacing:0.032064pt;}
.wseb{word-spacing:0.037408pt;}
.wsd8{word-spacing:0.038400pt;}
.wsee{word-spacing:0.042752pt;}
.wse3{word-spacing:0.048096pt;}
.ws107{word-spacing:0.058784pt;}
.wsa1{word-spacing:0.096000pt;}
.ws27{word-spacing:0.102400pt;}
.wsa7{word-spacing:0.115200pt;}
.wsd1{word-spacing:0.121600pt;}
.ws7{word-spacing:0.128000pt;}
.ws3e{word-spacing:0.134400pt;}
.ws36{word-spacing:0.147200pt;}
.ws28{word-spacing:0.153600pt;}
.ws20{word-spacing:0.160000pt;}
.ws2e{word-spacing:0.166400pt;}
.ws22{word-spacing:0.172800pt;}
.ws42{word-spacing:0.179200pt;}
.ws8{word-spacing:0.192000pt;}
.ws21{word-spacing:0.198400pt;}
.ws2a{word-spacing:0.211200pt;}
.wsbc{word-spacing:0.249600pt;}
.ws94{word-spacing:0.253504pt;}
.wsad{word-spacing:0.275200pt;}
.wsc{word-spacing:0.288000pt;}
.ws69{word-spacing:0.300800pt;}
.ws118{word-spacing:0.336672pt;}
.wsc8{word-spacing:0.460800pt;}
.wsc7{word-spacing:0.473600pt;}
.ws73{word-spacing:0.492800pt;}
.ws110{word-spacing:0.657312pt;}
.wsb9{word-spacing:1.107200pt;}
.wsb3{word-spacing:1.132800pt;}
.wsb8{word-spacing:1.216000pt;}
.wsf6{word-spacing:1.277216pt;}
.wsf5{word-spacing:1.298592pt;}
.ws1a{word-spacing:1.420800pt;}
.ws19{word-spacing:1.536000pt;}
.wsb7{word-spacing:1.753600pt;}
.ws3a{word-spacing:1.760000pt;}
.wsb6{word-spacing:1.798400pt;}
.ws17{word-spacing:1.804800pt;}
.ws39{word-spacing:1.856000pt;}
.ws18{word-spacing:1.868800pt;}
.ws8b{word-spacing:2.060800pt;}
.ws89{word-spacing:2.067200pt;}
.ws8a{word-spacing:2.080000pt;}
.wscc{word-spacing:2.118400pt;}
.ws33{word-spacing:2.176000pt;}
.ws35{word-spacing:2.182400pt;}
.ws115{word-spacing:2.265856pt;}
.ws116{word-spacing:2.276544pt;}
.ws34{word-spacing:2.316800pt;}
.ws99{word-spacing:2.361600pt;}
.ws9a{word-spacing:2.521600pt;}
.ws98{word-spacing:2.572800pt;}
.wsb2{word-spacing:3.308800pt;}
.wsb1{word-spacing:3.360000pt;}
.ws45{word-spacing:3.379200pt;}
.ws4c{word-spacing:3.827200pt;}
.ws4b{word-spacing:3.993600pt;}
.wsb5{word-spacing:4.012800pt;}
.wsb4{word-spacing:4.038400pt;}
.wsbb{word-spacing:4.300800pt;}
.wsba{word-spacing:4.352000pt;}
.ws38{word-spacing:4.377600pt;}
.ws37{word-spacing:4.403200pt;}
.wscb{word-spacing:4.620800pt;}
.wsc9{word-spacing:4.627200pt;}
.wsca{word-spacing:4.787200pt;}
.wsf8{word-spacing:5.135584pt;}
.wsf7{word-spacing:5.167648pt;}
.ws3d{word-spacing:5.856000pt;}
.wsc6{word-spacing:5.900800pt;}
.ws3c{word-spacing:5.958400pt;}
.wsc5{word-spacing:5.971200pt;}
.ws3b{word-spacing:6.003200pt;}
.wsa5{word-spacing:6.233600pt;}
.wsa6{word-spacing:6.246400pt;}
.ws41{word-spacing:6.560000pt;}
.ws40{word-spacing:6.662400pt;}
.ws49{word-spacing:6.848000pt;}
.ws48{word-spacing:6.873600pt;}
.ws4a{word-spacing:7.001600pt;}
.ws109{word-spacing:7.059424pt;}
.wsab{word-spacing:7.072000pt;}
.ws50{word-spacing:7.513600pt;}
.ws4f{word-spacing:7.532800pt;}
.wsf9{word-spacing:8.026688pt;}
.ws82{word-spacing:8.492800pt;}
.ws81{word-spacing:8.499200pt;}
.ws83{word-spacing:8.787200pt;}
.ws8e{word-spacing:8.800000pt;}
.ws90{word-spacing:8.806400pt;}
.ws8f{word-spacing:8.812800pt;}
.ws7f{word-spacing:8.819200pt;}
.ws80{word-spacing:8.889600pt;}
.ws72{word-spacing:9.740800pt;}
.ws71{word-spacing:9.843200pt;}
.wsa3{word-spacing:10.412800pt;}
.wsa2{word-spacing:10.438400pt;}
.ws2d{word-spacing:10.688000pt;}
.ws24{word-spacing:10.732800pt;}
.wsa4{word-spacing:10.739200pt;}
.ws25{word-spacing:10.745600pt;}
.ws26{word-spacing:10.764800pt;}
.ws23{word-spacing:10.771200pt;}
.ws59{word-spacing:10.995200pt;}
.ws68{word-spacing:11.129600pt;}
.ws5a{word-spacing:11.187200pt;}
.ws87{word-spacing:11.654400pt;}
.ws88{word-spacing:11.718400pt;}
.wsac{word-spacing:11.993600pt;}
.wsd7{word-spacing:12.889600pt;}
.wsd6{word-spacing:12.966400pt;}
.ws70{word-spacing:13.907200pt;}
.ws6f{word-spacing:13.939200pt;}
.wsf4{word-spacing:14.102816pt;}
.ws85{word-spacing:15.808000pt;}
.ws84{word-spacing:15.852800pt;}
.ws86{word-spacing:15.942400pt;}
.ws106{word-spacing:16.032000pt;}
.ws29{word-spacing:16.064000pt;}
.ws51{word-spacing:16.486400pt;}
.ws1d{word-spacing:16.492800pt;}
.ws1e{word-spacing:16.518400pt;}
.ws1f{word-spacing:16.582400pt;}
.ws5c{word-spacing:17.113600pt;}
.ws5b{word-spacing:17.171200pt;}
.ws1b{word-spacing:17.753600pt;}
.ws1c{word-spacing:17.817600pt;}
.ws108{word-spacing:18.581088pt;}
.wsa0{word-spacing:18.713600pt;}
.ws9f{word-spacing:18.732800pt;}
.ws62{word-spacing:19.033600pt;}
.ws61{word-spacing:19.046400pt;}
.ws6d{word-spacing:20.006400pt;}
.ws6c{word-spacing:20.070400pt;}
.ws6e{word-spacing:20.288000pt;}
.ws8d{word-spacing:20.921600pt;}
.ws8c{word-spacing:20.953600pt;}
.wsaa{word-spacing:22.553600pt;}
.wsa9{word-spacing:22.636800pt;}
.wsaf{word-spacing:22.899200pt;}
.wsb0{word-spacing:22.918400pt;}
.ws114{word-spacing:23.064704pt;}
.ws113{word-spacing:23.075392pt;}
.wsc3{word-spacing:23.180800pt;}
.ws6b{word-spacing:23.532800pt;}
.ws9d{word-spacing:24.147200pt;}
.ws9e{word-spacing:24.217600pt;}
.ws92{word-spacing:25.427200pt;}
.ws91{word-spacing:25.497600pt;}
.wsc2{word-spacing:26.406400pt;}
.wsc1{word-spacing:26.579200pt;}
.wsbf{word-spacing:26.694400pt;}
.wsc0{word-spacing:26.713600pt;}
.ws47{word-spacing:27.046400pt;}
.wsbd{word-spacing:27.110400pt;}
.wsbe{word-spacing:27.116800pt;}
.ws46{word-spacing:27.129600pt;}
.ws53{word-spacing:27.968000pt;}
.ws54{word-spacing:28.006400pt;}
.ws52{word-spacing:28.025600pt;}
.ws55{word-spacing:28.646400pt;}
.ws56{word-spacing:28.800000pt;}
.ws97{word-spacing:30.572800pt;}
.ws96{word-spacing:30.636800pt;}
.ws2c{word-spacing:34.681600pt;}
.ws60{word-spacing:35.046400pt;}
.ws5f{word-spacing:35.161600pt;}
.wsa8{word-spacing:39.532800pt;}
.wsd3{word-spacing:43.347200pt;}
.wsd2{word-spacing:43.603200pt;}
.ws58{word-spacing:43.667200pt;}
.ws57{word-spacing:44.019200pt;}
.wsd5{word-spacing:44.633600pt;}
.wsd4{word-spacing:44.652800pt;}
.ws67{word-spacing:45.273600pt;}
.wsd9{word-spacing:45.397280pt;}
.ws64{word-spacing:47.584000pt;}
.ws63{word-spacing:47.859200pt;}
.ws4d{word-spacing:51.929600pt;}
.ws4e{word-spacing:52.012800pt;}
.ws7c{word-spacing:52.768416pt;}
.ws79{word-spacing:52.791840pt;}
.wsce{word-spacing:55.520000pt;}
.ws6a{word-spacing:55.526400pt;}
.ws44{word-spacing:56.473600pt;}
.ws5d{word-spacing:56.787200pt;}
.ws43{word-spacing:56.819200pt;}
.ws5e{word-spacing:56.979200pt;}
.ws66{word-spacing:72.934400pt;}
.ws65{word-spacing:73.113600pt;}
.wsd0{word-spacing:77.868800pt;}
.wscf{word-spacing:78.105600pt;}
.ws102{word-spacing:82.853376pt;}
.wse1{word-spacing:101.455840pt;}
.ws117{word-spacing:101.733728pt;}
.wsf3{word-spacing:106.805184pt;}
.wsf1{word-spacing:106.810528pt;}
.wsf2{word-spacing:106.847936pt;}
.wsf0{word-spacing:106.858624pt;}
.wsef{word-spacing:106.863968pt;}
.wsea{word-spacing:106.874656pt;}
.ws101{word-spacing:108.408384pt;}
.wsff{word-spacing:108.413728pt;}
.ws100{word-spacing:108.451136pt;}
.wsfe{word-spacing:108.461824pt;}
.wsfd{word-spacing:108.467168pt;}
.wsfc{word-spacing:108.477856pt;}
.ws112{word-spacing:126.006176pt;}
.ws10f{word-spacing:126.011520pt;}
.ws111{word-spacing:126.048928pt;}
.ws10e{word-spacing:126.059616pt;}
.ws10a{word-spacing:126.064960pt;}
.ws105{word-spacing:126.075648pt;}
.ws10b{word-spacing:155.558496pt;}
.wse4{word-spacing:942.425088pt;}
.ws76{word-spacing:1348.174176pt;}
._19{margin-left:-1158.720491pt;}
._3e{margin-left:-102.390901pt;}
._35{margin-left:-83.526763pt;}
._1d{margin-left:-53.172480pt;}
._15{margin-left:-31.680000pt;}
._2f{margin-left:-12.184320pt;}
._7{margin-left:-10.560000pt;}
._11{margin-left:-8.000000pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.056000pt;}
._a{width:3.225600pt;}
._9{width:4.377600pt;}
._f{width:5.920000pt;}
._6{width:7.910400pt;}
._b{width:9.536000pt;}
._3{width:10.560000pt;}
._c{width:11.520000pt;}
._24{width:16.000000pt;}
._26{width:22.720000pt;}
._30{width:24.956480pt;}
._13{width:26.880000pt;}
._14{width:28.780800pt;}
._22{width:31.360000pt;}
._25{width:32.640000pt;}
._16{width:35.456000pt;}
._12{width:41.280000pt;}
._8{width:45.440000pt;}
._21{width:46.720000pt;}
._10{width:48.896000pt;}
._d{width:52.480000pt;}
._4{width:56.000000pt;}
._27{width:58.368000pt;}
._5{width:63.360000pt;}
._23{width:65.920000pt;}
._2{width:70.400000pt;}
._e{width:73.920000pt;}
._32{width:82.558901pt;}
._2b{width:101.470976pt;}
._31{width:106.879605pt;}
._34{width:108.482805pt;}
._3a{width:126.080672pt;}
._3b{width:131.729600pt;}
._3d{width:141.509120pt;}
._3c{width:162.778240pt;}
._28{width:170.880000pt;}
._39{width:179.857845pt;}
._33{width:195.841824pt;}
._37{width:216.688320pt;}
._38{width:219.873920pt;}
._1c{width:256.953771pt;}
._1a{width:273.276395pt;}
._18{width:295.991349pt;}
._20{width:303.993067pt;}
._36{width:448.035520pt;}
._2a{width:628.944064pt;}
._2d{width:655.430667pt;}
._2e{width:837.762432pt;}
._29{width:933.765472pt;}
._2c{width:980.175061pt;}
._1f{width:1341.486624pt;}
._1b{width:1383.784512pt;}
._17{width:1436.119584pt;}
._1e{width:1651.298304pt;}
.fs2{font-size:37.120000pt;}
.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;}
.yf1{bottom:2.800400pt;}
.y1f{bottom:39.200000pt;}
.y1e{bottom:58.720000pt;}
.y1d{bottom:76.960000pt;}
.y6e{bottom:80.027067pt;}
.y221{bottom:92.109733pt;}
.y142{bottom:93.299360pt;}
.y9f{bottom:94.827200pt;}
.y1c{bottom:95.040000pt;}
.y1be{bottom:96.831333pt;}
.y6d{bottom:98.667067pt;}
.ybd{bottom:101.387067pt;}
.y220{bottom:107.381627pt;}
.y141{bottom:108.583200pt;}
.y9e{bottom:111.707200pt;}
.y1bd{bottom:112.111200pt;}
.y1b{bottom:113.120000pt;}
.ybc{bottom:120.027067pt;}
.y21f{bottom:122.665467pt;}
.y140{bottom:123.947200pt;}
.y6c{bottom:125.387067pt;}
.y1bc{bottom:127.390933pt;}
.y9d{bottom:128.587067pt;}
.y1a{bottom:131.200000pt;}
.y21e{bottom:138.029467pt;}
.ybb{bottom:138.667067pt;}
.y13f{bottom:139.227067pt;}
.y1bb{bottom:142.670800pt;}
.y6b{bottom:144.027067pt;}
.y182{bottom:146.267200pt;}
.y19{bottom:149.440000pt;}
.y9c{bottom:150.027147pt;}
.y13e{bottom:155.143200pt;}
.y1ba{bottom:158.030800pt;}
.y181{bottom:161.547067pt;}
.y6a{bottom:162.667067pt;}
.yba{bottom:165.387067pt;}
.y9b{bottom:166.907067pt;}
.y18{bottom:167.520000pt;}
.y21d{bottom:168.589067pt;}
.y13d{bottom:170.507200pt;}
.y1b9{bottom:173.310667pt;}
.y180{bottom:177.547200pt;}
.y69{bottom:181.387067pt;}
.y21c{bottom:183.868933pt;}
.yb9{bottom:184.027067pt;}
.y17{bottom:185.600000pt;}
.y13c{bottom:185.787067pt;}
.y9a{bottom:188.427067pt;}
.y1b8{bottom:188.590533pt;}
.y17f{bottom:192.827067pt;}
.y21b{bottom:199.228933pt;}
.y68{bottom:200.027067pt;}
.y13b{bottom:201.707200pt;}
.y16{bottom:203.680000pt;}
.y1b7{bottom:203.870267pt;}
.y17e{bottom:208.823627pt;}
.yb8{bottom:210.667067pt;}
.y21a{bottom:214.504693pt;}
.y13a{bottom:217.067200pt;}
.y67{bottom:218.667067pt;}
.y1b6{bottom:219.230267pt;}
.y15{bottom:221.920000pt;}
.y17d{bottom:224.107467pt;}
.yb7{bottom:229.387067pt;}
.y219{bottom:229.788533pt;}
.y139{bottom:232.987467pt;}
.y99{bottom:233.386533pt;}
.y1b5{bottom:234.510133pt;}
.y66{bottom:237.387067pt;}
.y17c{bottom:239.383227pt;}
.y14{bottom:240.000000pt;}
.y218{bottom:245.060427pt;}
.y138{bottom:248.343360pt;}
.y17b{bottom:254.667067pt;}
.yb6{bottom:256.027067pt;}
.y13{bottom:258.080000pt;}
.y217{bottom:260.424427pt;}
.y98{bottom:261.627067pt;}
.y137{bottom:263.627200pt;}
.y65{bottom:264.027067pt;}
.y44{bottom:264.107067pt;}
.y1b4{bottom:265.069867pt;}
.y17a{bottom:270.027067pt;}
.yb5{bottom:274.667067pt;}
.y216{bottom:275.708267pt;}
.y12{bottom:276.320000pt;}
.y136{bottom:278.907067pt;}
.y1b3{bottom:280.429733pt;}
.y64{bottom:282.667067pt;}
.y43{bottom:282.747067pt;}
.y179{bottom:285.947067pt;}
.y96{bottom:290.499947pt;}
.y215{bottom:290.984027pt;}
.yb4{bottom:293.387067pt;}
.y97{bottom:293.867147pt;}
.y11{bottom:294.400000pt;}
.y135{bottom:294.907333pt;}
.y1b2{bottom:295.709600pt;}
.y178{bottom:301.307067pt;}
.y214{bottom:306.267867pt;}
.y63{bottom:309.387067pt;}
.y42{bottom:309.467067pt;}
.y134{bottom:310.187200pt;}
.y95{bottom:310.747067pt;}
.y1b1{bottom:310.989467pt;}
.y10{bottom:312.480000pt;}
.y177{bottom:317.227200pt;}
.yb3{bottom:320.027067pt;}
.y213{bottom:321.615813pt;}
.y133{bottom:326.107067pt;}
.y1b0{bottom:326.269333pt;}
.y62{bottom:328.027067pt;}
.y41{bottom:328.107067pt;}
.yf{bottom:330.560000pt;}
.y94{bottom:332.267067pt;}
.y176{bottom:332.507067pt;}
.y212{bottom:336.899653pt;}
.y132{bottom:341.467067pt;}
.y1af{bottom:341.629333pt;}
.y61{bottom:346.667067pt;}
.y40{bottom:346.747067pt;}
.ye{bottom:348.000000pt;}
.y175{bottom:348.507200pt;}
.y211{bottom:352.183493pt;}
.y1ae{bottom:356.909067pt;}
.y131{bottom:357.383760pt;}
.y174{bottom:363.787067pt;}
.y60{bottom:365.387067pt;}
.y3f{bottom:365.467067pt;}
.y8f{bottom:365.868800pt;}
.yd{bottom:366.720000pt;}
.y210{bottom:367.467333pt;}
.y1e7{bottom:367.867333pt;}
.y1ad{bottom:372.188933pt;}
.y130{bottom:372.667600pt;}
.y173{bottom:379.787333pt;}
.y8e{bottom:382.748667pt;}
.y20f{bottom:382.827333pt;}
.y1e6{bottom:383.147200pt;}
.yb2{bottom:384.027067pt;}
.y1ac{bottom:387.468800pt;}
.y12f{bottom:388.019520pt;}
.y5f{bottom:392.027067pt;}
.y3e{bottom:392.107200pt;}
.yc{bottom:392.480000pt;}
.y172{bottom:395.067200pt;}
.y20e{bottom:398.107200pt;}
.y1e5{bottom:399.067067pt;}
.y8d{bottom:399.548133pt;}
.y1ab{bottom:402.828800pt;}
.y12e{bottom:403.303360pt;}
.y5e{bottom:410.667067pt;}
.y3d{bottom:410.747200pt;}
.yb1{bottom:410.835280pt;}
.y171{bottom:411.067867pt;}
.y20d{bottom:414.030667pt;}
.y1e4{bottom:414.427067pt;}
.y8c{bottom:416.428000pt;}
.y12d{bottom:418.587200pt;}
.yb{bottom:426.080000pt;}
.y170{bottom:426.347733pt;}
.y5d{bottom:429.387067pt;}
.y20c{bottom:429.390667pt;}
.y3c{bottom:429.467200pt;}
.y1e3{bottom:430.343627pt;}
.yb0{bottom:430.747200pt;}
.y8b{bottom:433.307867pt;}
.y1aa{bottom:433.388400pt;}
.y12c{bottom:433.867067pt;}
.y16f{bottom:441.627600pt;}
.y20b{bottom:444.670533pt;}
.y1e2{bottom:445.627467pt;}
.ye8{bottom:447.947067pt;}
.y3b{bottom:448.107200pt;}
.y1a9{bottom:448.668267pt;}
.y12b{bottom:449.870533pt;}
.y8a{bottom:450.187867pt;}
.y93{bottom:450.189333pt;}
.y5c{bottom:456.027067pt;}
.y16e{bottom:456.907467pt;}
.ya{bottom:459.680000pt;}
.y20a{bottom:459.950267pt;}
.y1e1{bottom:460.983360pt;}
.y1a8{bottom:464.028267pt;}
.y12a{bottom:465.146293pt;}
.yaf{bottom:466.587067pt;}
.yd2{bottom:466.667067pt;}
.y3a{bottom:466.747200pt;}
.y89{bottom:467.067733pt;}
.y92{bottom:467.069200pt;}
.y16d{bottom:472.267333pt;}
.ye7{bottom:474.587067pt;}
.y5b{bottom:474.667067pt;}
.y1e0{bottom:476.267200pt;}
.y1a7{bottom:479.308133pt;}
.y129{bottom:480.430133pt;}
.y91{bottom:483.949200pt;}
.y88{bottom:483.954987pt;}
.yae{bottom:485.227067pt;}
.yd1{bottom:485.387067pt;}
.y39{bottom:485.467067pt;}
.y16c{bottom:487.547200pt;}
.y235{bottom:488.427067pt;}
.y209{bottom:490.590133pt;}
.y1df{bottom:491.547067pt;}
.y9{bottom:493.280000pt;}
.y5a{bottom:493.387067pt;}
.y1a6{bottom:494.587867pt;}
.y128{bottom:495.786160pt;}
.y87{bottom:500.747067pt;}
.y90{bottom:500.748533pt;}
.ye6{bottom:501.227067pt;}
.y16b{bottom:502.827067pt;}
.y107{bottom:503.707067pt;}
.yad{bottom:503.867067pt;}
.yd0{bottom:504.027067pt;}
.y38{bottom:504.107067pt;}
.y234{bottom:505.547200pt;}
.y208{bottom:505.866027pt;}
.y1de{bottom:507.547200pt;}
.y1a5{bottom:509.867733pt;}
.y127{bottom:511.070000pt;}
.y59{bottom:512.027067pt;}
.y16a{bottom:518.829067pt;}
.y233{bottom:520.827067pt;}
.y207{bottom:521.149867pt;}
.y86{bottom:522.274987pt;}
.ycf{bottom:522.667067pt;}
.y1dd{bottom:522.827067pt;}
.y1a4{bottom:525.227733pt;}
.y126{bottom:526.349733pt;}
.y8{bottom:526.880000pt;}
.ye5{bottom:527.867067pt;}
.y58{bottom:530.667067pt;}
.yac{bottom:530.668347pt;}
.y37{bottom:530.747067pt;}
.y169{bottom:534.108933pt;}
.y105{bottom:535.627067pt;}
.y206{bottom:536.425600pt;}
.y232{bottom:536.827200pt;}
.y1dc{bottom:538.823360pt;}
.y85{bottom:539.067067pt;}
.y1a3{bottom:540.507600pt;}
.yce{bottom:541.387067pt;}
.y125{bottom:541.625600pt;}
.y168{bottom:549.384827pt;}
.y36{bottom:549.467067pt;}
.yab{bottom:550.667067pt;}
.y104{bottom:550.907067pt;}
.y205{bottom:551.789600pt;}
.y231{bottom:552.107067pt;}
.y1db{bottom:554.107200pt;}
.ye4{bottom:554.587067pt;}
.y1a2{bottom:555.787467pt;}
.y7{bottom:556.960000pt;}
.y124{bottom:556.989600pt;}
.y57{bottom:557.387067pt;}
.y84{bottom:560.587067pt;}
.y167{bottom:564.668667pt;}
.y103{bottom:566.267067pt;}
.y204{bottom:567.065493pt;}
.y230{bottom:568.027467pt;}
.y35{bottom:568.107067pt;}
.ycd{bottom:568.195147pt;}
.y1da{bottom:569.387067pt;}
.y1a1{bottom:571.067200pt;}
.y56{bottom:576.027067pt;}
.y6{bottom:579.360000pt;}
.ye3{bottom:581.227067pt;}
.y102{bottom:581.547067pt;}
.y203{bottom:582.349333pt;}
.y22f{bottom:583.383360pt;}
.y1d9{bottom:585.387200pt;}
.y1a0{bottom:586.427200pt;}
.y34{bottom:586.747067pt;}
.yaa{bottom:586.907067pt;}
.y123{bottom:587.549333pt;}
.ycc{bottom:588.107067pt;}
.y83{bottom:594.267867pt;}
.y166{bottom:595.308400pt;}
.y101{bottom:596.827067pt;}
.y202{bottom:597.625067pt;}
.y22e{bottom:598.667200pt;}
.y1d8{bottom:600.667067pt;}
.y19f{bottom:601.707067pt;}
.y5{bottom:601.760000pt;}
.y122{bottom:602.825067pt;}
.y55{bottom:602.835147pt;}
.y33{bottom:605.467067pt;}
.ye2{bottom:607.867067pt;}
.y165{bottom:610.584293pt;}
.y81{bottom:611.067200pt;}
.y201{bottom:612.989067pt;}
.y22d{bottom:613.947067pt;}
.ya9{bottom:616.347067pt;}
.y1d7{bottom:616.667200pt;}
.y19e{bottom:617.628400pt;}
.y121{bottom:618.189067pt;}
.y54{bottom:622.747067pt;}
.y100{bottom:623.227067pt;}
.y106{bottom:623.227200pt;}
.ycb{bottom:623.867067pt;}
.y32{bottom:624.107067pt;}
.y4{bottom:624.160000pt;}
.y164{bottom:625.868133pt;}
.y80{bottom:627.947147pt;}
.y82{bottom:627.947200pt;}
.y200{bottom:628.260853pt;}
.y22c{bottom:629.947200pt;}
.y1d6{bottom:631.947067pt;}
.y19d{bottom:632.988400pt;}
.y120{bottom:633.464960pt;}
.ye1{bottom:634.587067pt;}
.y163{bottom:641.224027pt;}
.yca{bottom:642.587067pt;}
.y31{bottom:642.747067pt;}
.y1ff{bottom:643.544693pt;}
.y7f{bottom:644.827067pt;}
.y22b{bottom:645.227067pt;}
.ya8{bottom:645.387067pt;}
.y3{bottom:646.560000pt;}
.y1d5{bottom:647.870133pt;}
.y19c{bottom:648.264160pt;}
.y11f{bottom:648.748800pt;}
.yff{bottom:655.147067pt;}
.y162{bottom:656.507867pt;}
.y53{bottom:658.587067pt;}
.y1fe{bottom:658.828533pt;}
.yc9{bottom:661.227067pt;}
.y22a{bottom:661.227200pt;}
.y30{bottom:661.467067pt;}
.y1d4{bottom:663.230133pt;}
.y19b{bottom:663.548000pt;}
.y11e{bottom:664.024533pt;}
.y7e{bottom:666.267280pt;}
.yfe{bottom:670.427067pt;}
.y161{bottom:671.783760pt;}
.ya7{bottom:672.027067pt;}
.y2{bottom:672.480000pt;}
.y1fd{bottom:674.184560pt;}
.y229{bottom:676.507067pt;}
.y52{bottom:677.227067pt;}
.y1d3{bottom:678.510000pt;}
.y11d{bottom:679.388533pt;}
.yc8{bottom:679.867067pt;}
.y2f{bottom:680.107067pt;}
.y7d{bottom:683.147200pt;}
.yfd{bottom:685.787067pt;}
.y160{bottom:687.067600pt;}
.ye0{bottom:687.867067pt;}
.y1fc{bottom:689.468400pt;}
.y228{bottom:692.427067pt;}
.y1d2{bottom:693.789733pt;}
.y19a{bottom:694.187867pt;}
.y11c{bottom:694.668400pt;}
.y51{bottom:695.867067pt;}
.yc7{bottom:698.587067pt;}
.ya6{bottom:698.667067pt;}
.y2e{bottom:698.747067pt;}
.yfc{bottom:701.067067pt;}
.y15f{bottom:702.423627pt;}
.y7c{bottom:704.667067pt;}
.y1fb{bottom:704.748267pt;}
.y227{bottom:707.787067pt;}
.y1d1{bottom:709.069600pt;}
.y199{bottom:709.459653pt;}
.y11b{bottom:709.944293pt;}
.ydf{bottom:714.587067pt;}
.yfb{bottom:716.347067pt;}
.ya5{bottom:717.387067pt;}
.y15e{bottom:717.707467pt;}
.y1fa{bottom:720.028133pt;}
.y50{bottom:722.668347pt;}
.y226{bottom:723.707333pt;}
.y1d0{bottom:724.429600pt;}
.y198{bottom:724.743493pt;}
.yc6{bottom:725.227067pt;}
.y11a{bottom:725.228133pt;}
.y2d{bottom:725.467067pt;}
.y15d{bottom:732.987200pt;}
.yde{bottom:733.227067pt;}
.y1f9{bottom:735.384027pt;}
.ya4{bottom:736.027067pt;}
.y225{bottom:738.987200pt;}
.yfa{bottom:739.627067pt;}
.y1cf{bottom:739.709467pt;}
.y197{bottom:740.027333pt;}
.y119{bottom:740.584027pt;}
.y4f{bottom:742.667067pt;}
.yc5{bottom:743.867067pt;}
.y7b{bottom:746.587067pt;}
.y15c{bottom:748.267067pt;}
.y1f8{bottom:750.667867pt;}
.ydd{bottom:751.867067pt;}
.ya3{bottom:754.667067pt;}
.yf9{bottom:754.987200pt;}
.y1ce{bottom:754.989333pt;}
.y196{bottom:755.387333pt;}
.y118{bottom:755.867867pt;}
.yc4{bottom:762.587067pt;}
.y15b{bottom:763.627067pt;}
.y7a{bottom:765.227067pt;}
.y1f7{bottom:765.947733pt;}
.y1cd{bottom:770.269067pt;}
.ydc{bottom:770.587067pt;}
.y195{bottom:770.667200pt;}
.y117{bottom:771.143760pt;}
.y4e{bottom:778.427067pt;}
.y158{bottom:779.548267pt;}
.y2c{bottom:780.027067pt;}
.yc3{bottom:781.227067pt;}
.y1f6{bottom:781.227600pt;}
.ya2{bottom:781.468347pt;}
.y1cc{bottom:785.629067pt;}
.y116{bottom:786.427600pt;}
.y192{bottom:786.588133pt;}
.yf8{bottom:786.903227pt;}
.y79{bottom:791.867067pt;}
.y157{bottom:794.828133pt;}
.y1f5{bottom:796.587600pt;}
.y4d{bottom:797.067067pt;}
.ydb{bottom:797.227067pt;}
.yc2{bottom:799.867067pt;}
.y224{bottom:800.904960pt;}
.y1cb{bottom:800.908933pt;}
.ya1{bottom:801.467067pt;}
.y115{bottom:801.787600pt;}
.y191{bottom:801.948133pt;}
.yf7{bottom:802.187067pt;}
.y2b{bottom:806.667067pt;}
.y156{bottom:810.188133pt;}
.y78{bottom:810.587067pt;}
.y1f4{bottom:811.867467pt;}
.yda{bottom:815.867067pt;}
.y1ca{bottom:816.188800pt;}
.y114{bottom:817.067467pt;}
.y190{bottom:817.227867pt;}
.yc1{bottom:818.587067pt;}
.y4c{bottom:823.868347pt;}
.y155{bottom:825.467867pt;}
.y1f3{bottom:827.147200pt;}
.y77{bottom:829.227067pt;}
.y1c9{bottom:831.468667pt;}
.y113{bottom:832.347200pt;}
.y18f{bottom:832.507733pt;}
.y2a{bottom:833.387067pt;}
.yf5{bottom:834.187067pt;}
.ya0{bottom:837.227067pt;}
.y154{bottom:840.747733pt;}
.y1f2{bottom:842.427067pt;}
.yd9{bottom:842.587067pt;}
.y4b{bottom:843.867067pt;}
.y1c8{bottom:846.748400pt;}
.y112{bottom:847.627067pt;}
.y18e{bottom:847.787600pt;}
.yf4{bottom:849.467067pt;}
.y29{bottom:851.787067pt;}
.yf0{bottom:854.026667pt;}
.y76{bottom:855.867067pt;}
.y153{bottom:856.027600pt;}
.yef{bottom:856.827067pt;}
.y1f0{bottom:858.427467pt;}
.yd8{bottom:861.227067pt;}
.y1c7{bottom:862.108400pt;}
.y18d{bottom:863.147600pt;}
.y111{bottom:863.627467pt;}
.yf3{bottom:864.827067pt;}
.y28{bottom:870.187067pt;}
.y152{bottom:871.375547pt;}
.y1f1{bottom:873.703227pt;}
.y1ef{bottom:873.707200pt;}
.y75{bottom:874.587067pt;}
.yf2{bottom:877.306667pt;}
.y1c6{bottom:877.388267pt;}
.y18c{bottom:878.427467pt;}
.y110{bottom:878.907200pt;}
.y4a{bottom:879.627067pt;}
.yd7{bottom:879.867067pt;}
.yee{bottom:880.107067pt;}
.yc0{bottom:882.675147pt;}
.y151{bottom:886.659387pt;}
.y27{bottom:888.587067pt;}
.y1ee{bottom:888.987067pt;}
.y1c5{bottom:892.668133pt;}
.y18b{bottom:893.703227pt;}
.y10f{bottom:894.187067pt;}
.yed{bottom:895.387067pt;}
.y49{bottom:898.267067pt;}
.y74{bottom:901.395147pt;}
.y150{bottom:901.943227pt;}
.ybf{bottom:902.587067pt;}
.y1ed{bottom:904.347067pt;}
.yd6{bottom:906.668347pt;}
.y26{bottom:906.987067pt;}
.y223{bottom:907.943867pt;}
.y1c4{bottom:907.947867pt;}
.y18a{bottom:908.987067pt;}
.y194{bottom:908.988400pt;}
.y10d{bottom:910.187333pt;}
.y14f{bottom:917.227067pt;}
.y15a{bottom:917.228400pt;}
.yf6{bottom:918.666400pt;}
.yec{bottom:918.667067pt;}
.y1eb{bottom:920.267200pt;}
.y73{bottom:921.307067pt;}
.y1c3{bottom:923.307867pt;}
.y189{bottom:924.347067pt;}
.y193{bottom:924.348400pt;}
.y48{bottom:925.068347pt;}
.y25{bottom:925.387067pt;}
.y10e{bottom:925.463227pt;}
.y10c{bottom:925.467200pt;}
.yd5{bottom:926.667067pt;}
.y14e{bottom:932.587067pt;}
.y159{bottom:932.588400pt;}
.y1ec{bottom:935.543067pt;}
.y1ea{bottom:935.547067pt;}
.ybe{bottom:938.427067pt;}
.y1c2{bottom:938.587733pt;}
.y188{bottom:940.267200pt;}
.y10b{bottom:940.747067pt;}
.y147{bottom:941.467067pt;}
.y47{bottom:945.067067pt;}
.y14c{bottom:948.507200pt;}
.yeb{bottom:950.667067pt;}
.y1e9{bottom:950.907067pt;}
.y24{bottom:952.185200pt;}
.y1c1{bottom:953.867600pt;}
.y187{bottom:955.543067pt;}
.y186{bottom:955.547067pt;}
.y72{bottom:957.067067pt;}
.y146{bottom:960.507200pt;}
.y10a{bottom:960.747067pt;}
.yd4{bottom:962.907067pt;}
.y14d{bottom:963.783067pt;}
.y14b{bottom:963.787067pt;}
.y1c0{bottom:969.147467pt;}
.y1e8{bottom:970.827067pt;}
.y185{bottom:970.907067pt;}
.y23{bottom:972.123227pt;}
.y71{bottom:975.707067pt;}
.y145{bottom:975.787067pt;}
.y14a{bottom:979.147067pt;}
.y46{bottom:981.307067pt;}
.yea{bottom:982.907067pt;}
.y1bf{bottom:984.507467pt;}
.y184{bottom:986.827067pt;}
.y22{bottom:992.035147pt;}
.y109{bottom:993.067067pt;}
.y70{bottom:994.427067pt;}
.y149{bottom:999.067067pt;}
.y144{bottom:999.783227pt;}
.y222{bottom:999.787200pt;}
.y45{bottom:1010.747067pt;}
.ye9{bottom:1010.827067pt;}
.y21{bottom:1011.947067pt;}
.y6f{bottom:1013.067067pt;}
.yd3{bottom:1013.387067pt;}
.y183{bottom:1014.587200pt;}
.y143{bottom:1015.067067pt;}
.y108{bottom:1061.067067pt;}
.y148{bottom:1061.867067pt;}
.y20{bottom:1062.347067pt;}
.y1{bottom:1108.800000pt;}
.h12{height:15.120000pt;}
.h5{height:45.184000pt;}
.h7{height:53.086720pt;}
.h8{height:55.736250pt;}
.h11{height:57.020480pt;}
.h13{height:57.928960pt;}
.hc{height:61.076250pt;}
.h16{height:62.483520pt;}
.h3{height:62.781250pt;}
.h10{height:62.812500pt;}
.ha{height:66.750000pt;}
.h4{height:67.776000pt;}
.h9{height:72.423750pt;}
.hb{height:77.763750pt;}
.h6{height:103.104000pt;}
.h14{height:118.155840pt;}
.h15{height:118.460480pt;}
.he{height:128.244570pt;}
.hd{height:128.595930pt;}
.hf{height:142.064730pt;}
.h2{height:1122.548000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:194.000000pt;}
.w4{width:265.920000pt;}
.w2{width:793.241333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w3{width:793.626667pt;}
.x0{left:0.000000pt;}
.x2d{left:27.920000pt;}
.x1{left:37.760000pt;}
.x2{left:71.840000pt;}
.x9{left:94.480000pt;}
.x49{left:101.680000pt;}
.x5{left:106.472000pt;}
.x26{left:122.720000pt;}
.x3f{left:130.319600pt;}
.x11{left:132.320000pt;}
.x47{left:135.520533pt;}
.x60{left:137.519467pt;}
.x55{left:142.319733pt;}
.x27{left:144.560000pt;}
.x51{left:147.120000pt;}
.x44{left:154.319467pt;}
.x12{left:156.080000pt;}
.x1f{left:158.076560pt;}
.x20{left:160.640000pt;}
.x4{left:163.760000pt;}
.x52{left:166.319733pt;}
.x45{left:178.314027pt;}
.x61{left:185.514027pt;}
.x56{left:190.314293pt;}
.x2f{left:192.640000pt;}
.x29{left:209.680000pt;}
.x31{left:211.600400pt;}
.x16{left:217.359333pt;}
.x1d{left:219.040267pt;}
.x33{left:222.880267pt;}
.x46{left:224.720000pt;}
.x58{left:230.081600pt;}
.xd{left:234.078640pt;}
.x4a{left:235.600667pt;}
.x32{left:236.560933pt;}
.x18{left:241.358667pt;}
.x57{left:243.760933pt;}
.x6{left:247.522000pt;}
.x24{left:256.716080pt;}
.x15{left:259.923787pt;}
.x19{left:265.358133pt;}
.x1e{left:275.048240pt;}
.x28{left:280.240000pt;}
.x10{left:290.394480pt;}
.x23{left:294.719733pt;}
.x34{left:306.640800pt;}
.x22{left:307.754480pt;}
.x59{left:313.842133pt;}
.x7{left:320.722133pt;}
.x36{left:322.481733pt;}
.x35{left:325.521200pt;}
.x5a{left:329.683067pt;}
.x1a{left:332.804960pt;}
.xf{left:333.759760pt;}
.xe{left:336.641520pt;}
.xb{left:341.919333pt;}
.x1b{left:343.359840pt;}
.x21{left:345.286800pt;}
.x13{left:366.483360pt;}
.x1c{left:372.960000pt;}
.xa{left:375.600000pt;}
.x3{left:376.640000pt;}
.xc{left:379.920000pt;}
.x38{left:385.037280pt;}
.x37{left:387.201600pt;}
.x39{left:390.241067pt;}
.x5b{left:392.238613pt;}
.x4b{left:394.875947pt;}
.x8{left:396.880000pt;}
.x4c{left:400.079600pt;}
.x2a{left:405.440000pt;}
.x2b{left:442.560000pt;}
.x2c{left:445.600000pt;}
.x25{left:472.080000pt;}
.x2e{left:474.160000pt;}
.x3c{left:486.080267pt;}
.x3a{left:488.240667pt;}
.x5e{left:490.079200pt;}
.x41{left:493.438933pt;}
.x4e{left:494.719200pt;}
.x40{left:496.159067pt;}
.x54{left:499.039733pt;}
.x3b{left:500.398267pt;}
.x53{left:504.799333pt;}
.x5c{left:507.599600pt;}
.x4d{left:509.037067pt;}
.x17{left:558.478667pt;}
.x5f{left:606.479600pt;}
.x42{left:609.919467pt;}
.x3e{left:619.680267pt;}
.x50{left:627.279733pt;}
.x3d{left:632.079733pt;}
.x48{left:634.240000pt;}
.x43{left:636.958800pt;}
.x4f{left:639.679200pt;}
.x30{left:644.080267pt;}
.x14{left:647.358187pt;}
.x5d{left:654.802667pt;}
}


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