
/* 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_5f0c4ce11351.woff")format("woff");}.ff2{font-family:ff2;line-height:0.741000;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_e9b3de4f3f2a.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_abeb5ee2cc5d.woff")format("woff");}.ff4{font-family:ff4;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_fe54088e439d.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_50b27d5ef9b5.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_a4c179bfa1d2.woff")format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_0e73759bc5bb.woff")format("woff");}.ff8{font-family:ff8;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:ff9;src:url("fonts/font_0008_b641ab6714fe.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_6c4e37ceb533.woff")format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_a6eb334ac6cb.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_e7e706706a07.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;}
@font-face{font-family:ffd;src:url("fonts/font_0012_db4d7556760c.woff")format("woff");}.ffd{font-family:ffd;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_95839078145b.woff")format("woff");}.ffe{font-family:ffe;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);}
.v5{vertical-align:-69.119400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.399400px;}
.v1{vertical-align:30.240000px;}
.v4{vertical-align:68.759400px;}
.v2{vertical-align:75.959640px;}
.ls3{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls5c{letter-spacing:-0.120240px;}
.ls8{letter-spacing:-0.108000px;}
.ls59{letter-spacing:-0.096192px;}
.ls1e{letter-spacing:-0.093600px;}
.ls41{letter-spacing:-0.086400px;}
.ls54{letter-spacing:-0.084168px;}
.ls1b{letter-spacing:-0.079200px;}
.ls52{letter-spacing:-0.078156px;}
.ls4f{letter-spacing:-0.072144px;}
.ls1d{letter-spacing:-0.072000px;}
.ls35{letter-spacing:-0.070308px;}
.ls56{letter-spacing:-0.066132px;}
.ls19{letter-spacing:-0.064800px;}
.ls4e{letter-spacing:-0.060120px;}
.ls25{letter-spacing:-0.057600px;}
.ls18{letter-spacing:-0.054684px;}
.ls50{letter-spacing:-0.054108px;}
.ls1c{letter-spacing:-0.050400px;}
.ls4d{letter-spacing:-0.048096px;}
.ls14{letter-spacing:-0.043200px;}
.ls5b{letter-spacing:-0.042084px;}
.ls10{letter-spacing:-0.039060px;}
.ls57{letter-spacing:-0.036072px;}
.ls12{letter-spacing:-0.036000px;}
.ls3e{letter-spacing:-0.031248px;}
.ls58{letter-spacing:-0.030060px;}
.ls13{letter-spacing:-0.028800px;}
.ls40{letter-spacing:-0.025164px;}
.ls51{letter-spacing:-0.024048px;}
.ls3a{letter-spacing:-0.023436px;}
.ls15{letter-spacing:-0.021600px;}
.ls30{letter-spacing:-0.019764px;}
.ls4c{letter-spacing:-0.018036px;}
.ls38{letter-spacing:-0.016776px;}
.ls16{letter-spacing:-0.014400px;}
.ls53{letter-spacing:-0.012024px;}
.ls39{letter-spacing:-0.008388px;}
.ls11{letter-spacing:-0.007812px;}
.ls17{letter-spacing:-0.007200px;}
.ls55{letter-spacing:-0.006012px;}
.ls2{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.006012px;}
.ls1a{letter-spacing:0.007200px;}
.ls47{letter-spacing:0.012024px;}
.lsa{letter-spacing:0.014400px;}
.ls3c{letter-spacing:0.021600px;}
.ls3b{letter-spacing:0.028800px;}
.ls5a{letter-spacing:0.030060px;}
.ls9{letter-spacing:0.031248px;}
.ls3f{letter-spacing:0.036000px;}
.ls46{letter-spacing:0.036072px;}
.ls20{letter-spacing:0.039060px;}
.ls31{letter-spacing:0.039528px;}
.ls43{letter-spacing:0.042084px;}
.ls34{letter-spacing:0.043200px;}
.ls28{letter-spacing:0.046116px;}
.ls1f{letter-spacing:0.046872px;}
.ls42{letter-spacing:0.048096px;}
.ls23{letter-spacing:0.050328px;}
.ls36{letter-spacing:0.050400px;}
.ls2c{letter-spacing:0.052704px;}
.ls4b{letter-spacing:0.054108px;}
.ls3d{letter-spacing:0.058716px;}
.ls2e{letter-spacing:0.059292px;}
.ls21{letter-spacing:0.062496px;}
.ls2b{letter-spacing:0.065880px;}
.ls2a{letter-spacing:0.066132px;}
.ls22{letter-spacing:0.067104px;}
.ls4{letter-spacing:0.072000px;}
.ls29{letter-spacing:0.072468px;}
.ls37{letter-spacing:0.075492px;}
.ls27{letter-spacing:0.079056px;}
.ls32{letter-spacing:0.085644px;}
.ls26{letter-spacing:0.085932px;}
.lse{letter-spacing:0.086400px;}
.ls2f{letter-spacing:0.092232px;}
.ls44{letter-spacing:0.096192px;}
.ls1{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.114228px;}
.ls24{letter-spacing:0.117180px;}
.ls48{letter-spacing:0.120240px;}
.ls2d{letter-spacing:0.131760px;}
.lsd{letter-spacing:0.136800px;}
.ls33{letter-spacing:0.138276px;}
.lsc{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.151200px;}
.ls6{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.324000px;}
.ls45{letter-spacing:47.374560px;}
.ls49{letter-spacing:63.546840px;}
.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;}
}
.ws3{word-spacing:-26.892000px;}
.ws2{word-spacing:-26.676000px;}
.wsc{word-spacing:-19.972800px;}
.wsd{word-spacing:-19.944000px;}
.wse{word-spacing:-19.922400px;}
.ws5f{word-spacing:-18.406872px;}
.ws5e{word-spacing:-18.393696px;}
.ws5c{word-spacing:-18.387108px;}
.ws0{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.ws60{word-spacing:-16.851636px;}
.ws5d{word-spacing:-16.779492px;}
.wsea{word-spacing:-13.755456px;}
.wseb{word-spacing:-13.647240px;}
.wsb{word-spacing:-1.260000px;}
.ws36{word-spacing:-0.523404px;}
.wsef{word-spacing:-0.432864px;}
.wsa{word-spacing:-0.432000px;}
.wsd2{word-spacing:-0.429660px;}
.ws100{word-spacing:-0.420840px;}
.wsf6{word-spacing:-0.384768px;}
.ws10{word-spacing:-0.359352px;}
.ws13{word-spacing:-0.328104px;}
.ws92{word-spacing:-0.257796px;}
.ws12{word-spacing:-0.242172px;}
.ws29{word-spacing:-0.218736px;}
.ws8{word-spacing:-0.216000px;}
.wsf{word-spacing:-0.203112px;}
.ws44{word-spacing:-0.187200px;}
.ws2a{word-spacing:-0.148428px;}
.ws8c{word-spacing:-0.132804px;}
.ws11{word-spacing:-0.124992px;}
.ws9{word-spacing:-0.108000px;}
.wsae{word-spacing:-0.101556px;}
.ws5{word-spacing:-0.072000px;}
.wsc6{word-spacing:-0.062496px;}
.wsf5{word-spacing:-0.042084px;}
.ws7c{word-spacing:-0.031248px;}
.ws105{word-spacing:-0.030060px;}
.ws64{word-spacing:-0.028800px;}
.ws75{word-spacing:-0.026352px;}
.ws103{word-spacing:-0.024048px;}
.ws6f{word-spacing:-0.019764px;}
.ws109{word-spacing:-0.018036px;}
.ws73{word-spacing:-0.013176px;}
.wsec{word-spacing:-0.012024px;}
.ws70{word-spacing:-0.006588px;}
.wsfc{word-spacing:-0.006012px;}
.ws4{word-spacing:0.000000px;}
.wsf8{word-spacing:0.006012px;}
.ws72{word-spacing:0.006588px;}
.ws102{word-spacing:0.012024px;}
.ws74{word-spacing:0.013176px;}
.ws8a{word-spacing:0.016776px;}
.wsee{word-spacing:0.018036px;}
.wsf1{word-spacing:0.024048px;}
.ws28{word-spacing:0.025164px;}
.wsed{word-spacing:0.030060px;}
.ws4e{word-spacing:0.036000px;}
.wsf7{word-spacing:0.036072px;}
.wsf0{word-spacing:0.042084px;}
.wse1{word-spacing:0.043200px;}
.wsf3{word-spacing:0.048096px;}
.ws101{word-spacing:0.054108px;}
.wsa0{word-spacing:0.108000px;}
.ws6{word-spacing:0.144000px;}
.ws30{word-spacing:0.151200px;}
.ws49{word-spacing:0.158400px;}
.ws1b{word-spacing:0.165600px;}
.ws1a{word-spacing:0.172800px;}
.ws35{word-spacing:0.180000px;}
.ws5b{word-spacing:0.187200px;}
.ws1d{word-spacing:0.194400px;}
.ws26{word-spacing:0.201600px;}
.ws7{word-spacing:0.216000px;}
.ws1c{word-spacing:0.223200px;}
.ws25{word-spacing:0.237600px;}
.wsbe{word-spacing:0.280800px;}
.ws8b{word-spacing:0.285192px;}
.ws91{word-spacing:0.324000px;}
.wsd8{word-spacing:0.360000px;}
.ws10f{word-spacing:0.396792px;}
.ws110{word-spacing:0.402804px;}
.ws51{word-spacing:0.460800px;}
.ws6e{word-spacing:0.554400px;}
.ws55{word-spacing:0.900000px;}
.ws54{word-spacing:0.964800px;}
.wsbc{word-spacing:1.252800px;}
.wsbb{word-spacing:1.368000px;}
.wsab{word-spacing:1.576800px;}
.ws17{word-spacing:1.598400px;}
.wsa9{word-spacing:1.612800px;}
.ws16{word-spacing:1.728000px;}
.wsaa{word-spacing:1.764000px;}
.ws4c{word-spacing:1.972800px;}
.wsb1{word-spacing:1.980000px;}
.wsb2{word-spacing:2.008800px;}
.ws14{word-spacing:2.030400px;}
.ws4d{word-spacing:2.037600px;}
.ws15{word-spacing:2.102400px;}
.wscd{word-spacing:2.304000px;}
.wsce{word-spacing:2.383200px;}
.ws2b{word-spacing:2.448000px;}
.ws2d{word-spacing:2.455200px;}
.ws2c{word-spacing:2.606400px;}
.ws18{word-spacing:4.010400px;}
.ws19{word-spacing:4.089600px;}
.ws53{word-spacing:4.204800px;}
.ws52{word-spacing:4.276800px;}
.ws62{word-spacing:4.838400px;}
.wsbd{word-spacing:4.896000px;}
.ws61{word-spacing:4.975200px;}
.ws4b{word-spacing:5.191200px;}
.ws32{word-spacing:5.212800px;}
.wsca{word-spacing:5.220000px;}
.ws4a{word-spacing:5.277600px;}
.ws31{word-spacing:5.313600px;}
.wsc9{word-spacing:5.407200px;}
.ws5a{word-spacing:6.645600px;}
.ws59{word-spacing:6.667200px;}
.ws7f{word-spacing:7.070400px;}
.ws80{word-spacing:7.214400px;}
.wsd6{word-spacing:7.711200px;}
.wsd7{word-spacing:7.725600px;}
.wsa4{word-spacing:8.092800px;}
.wsa3{word-spacing:8.200800px;}
.wsd1{word-spacing:8.445600px;}
.wscf{word-spacing:8.460000px;}
.wsd0{word-spacing:8.589600px;}
.ws99{word-spacing:9.194400px;}
.wsa7{word-spacing:9.201600px;}
.wsa8{word-spacing:9.216000px;}
.ws98{word-spacing:9.374400px;}
.ws77{word-spacing:9.921600px;}
.ws78{word-spacing:10.000800px;}
.ws95{word-spacing:10.929600px;}
.ws6d{word-spacing:10.958400px;}
.ws6c{word-spacing:11.073600px;}
.ws94{word-spacing:11.124000px;}
.ws93{word-spacing:11.152800px;}
.wsac{word-spacing:11.390400px;}
.wsad{word-spacing:11.426400px;}
.wsa6{word-spacing:11.577600px;}
.wsa5{word-spacing:11.721600px;}
.ws27{word-spacing:12.038400px;}
.ws24{word-spacing:12.074400px;}
.ws1f{word-spacing:12.081600px;}
.ws21{word-spacing:12.088800px;}
.ws20{word-spacing:12.103200px;}
.ws22{word-spacing:12.110400px;}
.ws1e{word-spacing:12.117600px;}
.wsc3{word-spacing:12.780000px;}
.ws34{word-spacing:12.794400px;}
.ws33{word-spacing:12.823200px;}
.wsc5{word-spacing:13.341600px;}
.wsb3{word-spacing:13.485600px;}
.wsb5{word-spacing:13.492800px;}
.wsc4{word-spacing:13.500000px;}
.wsb4{word-spacing:13.694400px;}
.ws7e{word-spacing:14.918400px;}
.ws7d{word-spacing:14.947200px;}
.ws58{word-spacing:14.961600px;}
.ws6b{word-spacing:15.645600px;}
.wsa2{word-spacing:15.652800px;}
.ws6a{word-spacing:15.681600px;}
.wsa1{word-spacing:15.753600px;}
.ws2e{word-spacing:17.092800px;}
.ws2f{word-spacing:17.100000px;}
.ws23{word-spacing:18.072000px;}
.ws97{word-spacing:19.605600px;}
.ws96{word-spacing:19.620000px;}
.wsbf{word-spacing:20.412000px;}
.wsc0{word-spacing:20.527200px;}
.wsb0{word-spacing:21.074400px;}
.wsaf{word-spacing:21.196800px;}
.wsde{word-spacing:21.412800px;}
.ws68{word-spacing:22.507200px;}
.ws67{word-spacing:22.579200px;}
.ws69{word-spacing:22.824000px;}
.ws57{word-spacing:25.020000px;}
.ws56{word-spacing:25.113600px;}
.ws63{word-spacing:25.387200px;}
.wsc8{word-spacing:25.430400px;}
.wsc7{word-spacing:25.545600px;}
.wsb7{word-spacing:26.359200px;}
.wsb8{word-spacing:26.445600px;}
.ws9c{word-spacing:26.460000px;}
.ws66{word-spacing:26.474400px;}
.wsb6{word-spacing:26.481600px;}
.wsdf{word-spacing:26.798400px;}
.wse0{word-spacing:26.841600px;}
.ws45{word-spacing:27.547200px;}
.ws46{word-spacing:27.676800px;}
.ws9d{word-spacing:28.267200px;}
.ws9e{word-spacing:28.360800px;}
.ws9f{word-spacing:28.454400px;}
.ws86{word-spacing:29.268000px;}
.ws50{word-spacing:29.318400px;}
.ws84{word-spacing:29.347200px;}
.ws4f{word-spacing:29.361600px;}
.ws85{word-spacing:29.527200px;}
.wsc2{word-spacing:31.838400px;}
.wsc1{word-spacing:31.874400px;}
.wscb{word-spacing:33.631200px;}
.wscc{word-spacing:33.847200px;}
.ws8e{word-spacing:34.394400px;}
.ws8d{word-spacing:34.466400px;}
.ws8f{word-spacing:35.424000px;}
.ws90{word-spacing:35.460000px;}
.ws79{word-spacing:36.144000px;}
.ws7a{word-spacing:36.280800px;}
.ws7b{word-spacing:38.700000px;}
.ws9b{word-spacing:40.586400px;}
.ws3f{word-spacing:41.954400px;}
.ws40{word-spacing:42.055200px;}
.ws42{word-spacing:43.754400px;}
.ws41{word-spacing:43.855200px;}
.ws43{word-spacing:43.912800px;}
.ws3c{word-spacing:44.467200px;}
.ws3b{word-spacing:44.546400px;}
.wsda{word-spacing:48.744000px;}
.wsdb{word-spacing:48.801600px;}
.wsd9{word-spacing:49.053600px;}
.ws89{word-spacing:49.478400px;}
.ws87{word-spacing:49.492800px;}
.ws88{word-spacing:49.860000px;}
.wsdd{word-spacing:50.212800px;}
.ws3e{word-spacing:50.227200px;}
.wsdc{word-spacing:50.234400px;}
.ws3d{word-spacing:50.371200px;}
.wsf4{word-spacing:50.813424px;}
.ws9a{word-spacing:54.907200px;}
.wsb9{word-spacing:59.587200px;}
.wsba{word-spacing:59.702400px;}
.ws83{word-spacing:61.020000px;}
.wsd3{word-spacing:62.460000px;}
.ws65{word-spacing:62.467200px;}
.ws39{word-spacing:64.526400px;}
.ws3a{word-spacing:64.627200px;}
.wse2{word-spacing:65.866824px;}
.ws38{word-spacing:66.398400px;}
.ws37{word-spacing:66.434400px;}
.wse3{word-spacing:82.663200px;}
.wsd5{word-spacing:87.602400px;}
.wsd4{word-spacing:87.868800px;}
.ws47{word-spacing:92.700000px;}
.ws48{word-spacing:92.707200px;}
.ws82{word-spacing:98.820000px;}
.ws81{word-spacing:98.956800px;}
.wse9{word-spacing:101.764800px;}
.wse6{word-spacing:113.220000px;}
.wse8{word-spacing:113.248800px;}
.wse4{word-spacing:113.284800px;}
.wsff{word-spacing:114.402348px;}
.ws106{word-spacing:114.450444px;}
.ws111{word-spacing:114.456456px;}
.ws10e{word-spacing:114.817176px;}
.wsfe{word-spacing:141.756948px;}
.wsfb{word-spacing:141.762960px;}
.ws104{word-spacing:141.780996px;}
.wsfd{word-spacing:141.805044px;}
.wsfa{word-spacing:141.817068px;}
.wsf9{word-spacing:141.823080px;}
.wsf2{word-spacing:141.835104px;}
.ws10d{word-spacing:142.117668px;}
.ws10b{word-spacing:142.123680px;}
.ws10c{word-spacing:142.165764px;}
.ws10a{word-spacing:142.177788px;}
.ws108{word-spacing:142.183800px;}
.ws107{word-spacing:143.632692px;}
.wse7{word-spacing:357.300000px;}
.wse5{word-spacing:377.107200px;}
.ws76{word-spacing:1516.676184px;}
.ws71{word-spacing:1516.695948px;}
._1a{margin-left:-1303.560552px;}
._30{margin-left:-357.125400px;}
._3c{margin-left:-142.125036px;}
._32{margin-left:-113.040000px;}
._38{margin-left:-50.741280px;}
._17{margin-left:-35.640000px;}
._26{margin-left:-14.040000px;}
._7{margin-left:-11.880000px;}
._12{margin-left:-3.960000px;}
._1{margin-left:-1.080000px;}
._0{width:1.188000px;}
._a{width:3.513600px;}
._9{width:4.924800px;}
._10{width:6.732000px;}
._6{width:8.899200px;}
._b{width:10.641600px;}
._3{width:11.880000px;}
._c{width:12.960000px;}
._e{width:15.926400px;}
._29{width:25.560000px;}
._13{width:27.360000px;}
._27{width:28.440000px;}
._15{width:33.120000px;}
._11{width:38.880000px;}
._16{width:39.960000px;}
._28{width:42.048000px;}
._25{width:45.576000px;}
._14{width:49.608000px;}
._8{width:51.120000px;}
._23{width:52.560000px;}
._d{width:59.040000px;}
._24{width:61.689600px;}
._4{width:63.000000px;}
._2a{width:65.664000px;}
._37{width:66.973680px;}
._2d{width:68.760000px;}
._5{width:71.280000px;}
._2{width:79.200000px;}
._f{width:83.160000px;}
._39{width:141.840756px;}
._2b{width:192.240000px;}
._3b{width:205.586400px;}
._1d{width:212.030868px;}
._35{width:226.827000px;}
._36{width:250.237560px;}
._31{width:260.278800px;}
._2e{width:263.883000px;}
._1b{width:289.077684px;}
._19{width:332.990268px;}
._20{width:337.674792px;}
._2f{width:377.222400px;}
._34{width:520.957560px;}
._3d{width:522.755160px;}
._3a{width:542.198160px;}
._3f{width:557.300400px;}
._2c{width:594.129600px;}
._33{width:771.839400px;}
._1f{width:911.686692px;}
._22{width:925.670808px;}
._3e{width:1241.676864px;}
._40{width:1252.155780px;}
._1c{width:1427.441724px;}
._18{width:1721.141352px;}
._1e{width:1941.852528px;}
._21{width:1956.253896px;}
.fc2{color:rgb(15,36,62);}
.fc1{color:rgb(13,27,67);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:6.120000px;}
.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;}
.y1f{bottom:44.100000px;}
.y1e{bottom:66.060000px;}
.y1d{bottom:86.580000px;}
.ybe{bottom:103.620600px;}
.y1c{bottom:106.920000px;}
.ybd{bottom:124.590600px;}
.y1b{bottom:127.260000px;}
.y6c{bottom:132.060450px;}
.y177{bottom:134.400750px;}
.ybc{bottom:145.650600px;}
.y1a{bottom:147.600000px;}
.y176{bottom:151.590600px;}
.y6b{bottom:153.030450px;}
.y97{bottom:156.900450px;}
.y19{bottom:168.120000px;}
.y175{bottom:168.870600px;}
.y6a{bottom:174.000450px;}
.ybb{bottom:175.620600px;}
.y96{bottom:177.960450px;}
.y174{bottom:186.780600px;}
.y18{bottom:188.460000px;}
.y95{bottom:198.930450px;}
.y173{bottom:203.970450px;}
.y69{bottom:204.060450px;}
.yba{bottom:205.590600px;}
.y17{bottom:208.800000px;}
.y94{bottom:219.900450px;}
.y172{bottom:221.970600px;}
.y68{bottom:225.030450px;}
.yb9{bottom:226.650600px;}
.y16{bottom:229.140000px;}
.y171{bottom:239.160450px;}
.y67{bottom:246.000450px;}
.y15{bottom:249.660000px;}
.yb8{bottom:256.620600px;}
.y170{bottom:257.160600px;}
.y93{bottom:259.410450px;}
.y66{bottom:267.060450px;}
.y14{bottom:270.000000px;}
.y16f{bottom:274.350450px;}
.yb7{bottom:277.590600px;}
.y92{bottom:283.620540px;}
.y13{bottom:290.340000px;}
.y16e{bottom:292.350600px;}
.y65{bottom:297.030450px;}
.y91{bottom:302.610450px;}
.yb6{bottom:307.650600px;}
.y16d{bottom:309.540450px;}
.y12{bottom:310.860000px;}
.y44{bottom:317.820450px;}
.y64{bottom:318.000450px;}
.y90{bottom:326.820450px;}
.y16c{bottom:327.452400px;}
.yb5{bottom:328.620600px;}
.y11{bottom:331.200000px;}
.y43{bottom:338.790450px;}
.y16b{bottom:344.678220px;}
.y63{bottom:348.060450px;}
.y10{bottom:351.540000px;}
.yb4{bottom:358.590600px;}
.y16a{bottom:361.872540px;}
.y8f{bottom:364.530450px;}
.y42{bottom:368.850450px;}
.y62{bottom:369.030450px;}
.yf{bottom:371.880000px;}
.y169{bottom:379.066860px;}
.yb3{bottom:379.650600px;}
.y8e{bottom:388.650540px;}
.y41{bottom:389.730450px;}
.y61{bottom:390.000450px;}
.ye{bottom:391.500000px;}
.y168{bottom:396.261180px;}
.y8d{bottom:407.640450px;}
.yb2{bottom:409.620600px;}
.y40{bottom:410.700450px;}
.yd{bottom:412.560000px;}
.y167{bottom:413.545680px;}
.y12b{bottom:416.190450px;}
.y60{bottom:420.060450px;}
.y1cd{bottom:422.850450px;}
.yb1{bottom:430.590600px;}
.y166{bottom:430.740000px;}
.y3f{bottom:431.850450px;}
.y8c{bottom:431.940450px;}
.y12a{bottom:435.446130px;}
.y5f{bottom:441.030450px;}
.yc{bottom:441.540000px;}
.y1cc{bottom:442.106130px;}
.y1a3{bottom:447.510450px;}
.y165{bottom:447.934320px;}
.yb0{bottom:451.650600px;}
.y129{bottom:452.640450px;}
.yd9{bottom:453.000450px;}
.y1cb{bottom:459.300450px;}
.y3e{bottom:461.820450px;}
.y5e{bottom:462.000450px;}
.y164{bottom:465.128640px;}
.y1a2{bottom:466.766280px;}
.y88{bottom:469.651500px;}
.y128{bottom:470.640600px;}
.yaf{bottom:472.620600px;}
.y1ca{bottom:477.300600px;}
.yb{bottom:479.340000px;}
.y163{bottom:482.413140px;}
.y3d{bottom:482.790450px;}
.yd8{bottom:483.060450px;}
.y1a1{bottom:483.960600px;}
.yee{bottom:485.850450px;}
.y127{bottom:487.830450px;}
.y87{bottom:488.641470px;}
.y5d{bottom:492.060450px;}
.y1c9{bottom:494.490450px;}
.y162{bottom:499.607460px;}
.y1a0{bottom:501.960600px;}
.yae{bottom:502.779690px;}
.y3c{bottom:503.850450px;}
.yd7{bottom:504.030450px;}
.y126{bottom:505.826280px;}
.y86{bottom:507.631380px;}
.y1c8{bottom:512.486280px;}
.y5c{bottom:513.030450px;}
.yed{bottom:515.730450px;}
.y161{bottom:516.801780px;}
.ya{bottom:517.140000px;}
.y19f{bottom:519.150450px;}
.y125{bottom:523.020600px;}
.y3b{bottom:524.820450px;}
.yd6{bottom:525.000450px;}
.yad{bottom:525.180600px;}
.y85{bottom:526.621290px;}
.y1c7{bottom:529.680600px;}
.y160{bottom:533.996100px;}
.y5b{bottom:534.000450px;}
.y19e{bottom:537.146280px;}
.y124{bottom:540.210450px;}
.y84{bottom:545.611200px;}
.y8b{bottom:545.612850px;}
.y3a{bottom:545.790450px;}
.yd5{bottom:546.060450px;}
.y1c6{bottom:546.870450px;}
.y15f{bottom:551.280600px;}
.y19d{bottom:554.340600px;}
.y9{bottom:554.940000px;}
.y5a{bottom:555.060450px;}
.y123{bottom:558.210600px;}
.y83{bottom:564.510540px;}
.y8a{bottom:564.512250px;}
.y1c5{bottom:564.870600px;}
.yac{bottom:565.500450px;}
.y39{bottom:566.850450px;}
.yd4{bottom:567.030450px;}
.y15e{bottom:568.470450px;}
.y19c{bottom:571.530450px;}
.y122{bottom:575.400450px;}
.yec{bottom:575.760450px;}
.y59{bottom:576.030450px;}
.y1c4{bottom:582.060450px;}
.y82{bottom:583.500450px;}
.y89{bottom:583.502100px;}
.y15d{bottom:586.378200px;}
.yab{bottom:586.470450px;}
.y38{bottom:587.820450px;}
.yd3{bottom:588.000450px;}
.y19b{bottom:589.530600px;}
.y8{bottom:592.740000px;}
.y121{bottom:593.400600px;}
.y1c3{bottom:599.970450px;}
.y15c{bottom:603.662700px;}
.yeb{bottom:605.730450px;}
.y58{bottom:606.000450px;}
.y19a{bottom:606.720450px;}
.yaa{bottom:607.440450px;}
.y81{bottom:607.620540px;}
.y120{bottom:610.590450px;}
.y103{bottom:615.450450px;}
.y1c2{bottom:617.250450px;}
.y37{bottom:617.790450px;}
.yd2{bottom:618.151890px;}
.y15b{bottom:620.852550px;}
.y199{bottom:624.720600px;}
.y7{bottom:626.580000px;}
.y80{bottom:626.610450px;}
.y57{bottom:627.060450px;}
.y11f{bottom:628.500450px;}
.y1c1{bottom:635.160450px;}
.yea{bottom:635.790450px;}
.ya9{bottom:637.599540px;}
.y15a{bottom:638.042400px;}
.y36{bottom:638.850450px;}
.yd1{bottom:640.650450px;}
.y198{bottom:641.910450px;}
.y11e{bottom:645.780450px;}
.y102{bottom:646.230450px;}
.y56{bottom:648.030450px;}
.y7f{bottom:650.910450px;}
.y6{bottom:651.780000px;}
.y1c0{bottom:652.440450px;}
.y35{bottom:659.820450px;}
.ya8{bottom:660.000450px;}
.y11d{bottom:663.690450px;}
.ye9{bottom:665.760450px;}
.y1bf{bottom:670.350600px;}
.y159{bottom:672.512100px;}
.y5{bottom:676.980000px;}
.y197{bottom:677.100450px;}
.y55{bottom:678.189540px;}
.y34{bottom:680.790450px;}
.yd0{bottom:680.880450px;}
.y11c{bottom:680.970450px;}
.y1be{bottom:687.540450px;}
.y7e{bottom:688.620600px;}
.y158{bottom:689.697480px;}
.y101{bottom:691.770450px;}
.y196{bottom:695.010600px;}
.ye8{bottom:695.730450px;}
.y11b{bottom:698.878800px;}
.y54{bottom:700.590450px;}
.ya7{bottom:700.860450px;}
.y33{bottom:701.850450px;}
.y4{bottom:702.180000px;}
.y1bd{bottom:705.537750px;}
.y157{bottom:706.891800px;}
.y7d{bottom:707.610450px;}
.y195{bottom:712.200450px;}
.y11a{bottom:717.149250px;}
.y32{bottom:722.820450px;}
.ycf{bottom:722.910450px;}
.y1bc{bottom:723.808200px;}
.y156{bottom:724.077150px;}
.ye7{bottom:725.790450px;}
.y3{bottom:727.380000px;}
.y194{bottom:730.198500px;}
.y7c{bottom:731.730540px;}
.ya6{bottom:733.980450px;}
.y119{bottom:735.419700px;}
.y100{bottom:738.750450px;}
.y53{bottom:740.910450px;}
.y155{bottom:741.361650px;}
.y1bb{bottom:742.078650px;}
.y31{bottom:743.790450px;}
.yce{bottom:743.880450px;}
.y193{bottom:748.468950px;}
.y7b{bottom:750.720450px;}
.y118{bottom:753.600000px;}
.ye6{bottom:755.760450px;}
.y2{bottom:756.540000px;}
.y154{bottom:758.542410px;}
.y1ba{bottom:760.258950px;}
.y52{bottom:761.880450px;}
.y30{bottom:764.850450px;}
.ya5{bottom:766.560450px;}
.y192{bottom:766.739400px;}
.y117{bottom:771.870450px;}
.y7a{bottom:775.020450px;}
.y153{bottom:775.736730px;}
.yfe{bottom:777.810720px;}
.y1b9{bottom:778.529400px;}
.yff{bottom:782.670450px;}
.y51{bottom:782.850450px;}
.y191{bottom:784.919700px;}
.ye5{bottom:785.730450px;}
.y2f{bottom:785.820450px;}
.y116{bottom:789.868050px;}
.y152{bottom:792.931050px;}
.ycd{bottom:794.910450px;}
.ya4{bottom:796.620450px;}
.y1b8{bottom:796.799850px;}
.yfd{bottom:796.800630px;}
.y190{bottom:803.190150px;}
.y2e{bottom:806.790450px;}
.y115{bottom:808.048350px;}
.y151{bottom:810.211050px;}
.y50{bottom:813.001890px;}
.y1b7{bottom:814.980150px;}
.yfc{bottom:815.790540px;}
.ycc{bottom:815.880450px;}
.y18f{bottom:821.370450px;}
.y79{bottom:822.090450px;}
.y114{bottom:826.318800px;}
.ya3{bottom:826.590450px;}
.y150{bottom:827.396280px;}
.ye4{bottom:827.760450px;}
.y1b6{bottom:833.160450px;}
.yfb{bottom:833.430600px;}
.y4f{bottom:835.500450px;}
.y2d{bottom:836.850450px;}
.y18e{bottom:839.368800px;}
.y78{bottom:843.060450px;}
.y113{bottom:844.589250px;}
.y14f{bottom:844.590600px;}
.ya2{bottom:847.560450px;}
.ye3{bottom:848.730450px;}
.y1b5{bottom:851.158350px;}
.y18d{bottom:857.639400px;}
.ycb{bottom:857.910450px;}
.y14e{bottom:861.780450px;}
.y112{bottom:862.769550px;}
.ya1{bottom:868.620450px;}
.y1b4{bottom:869.428800px;}
.yfa{bottom:872.850450px;}
.y77{bottom:873.030450px;}
.y4e{bottom:875.730450px;}
.y18c{bottom:875.815050px;}
.y2c{bottom:876.090450px;}
.ye2{bottom:878.790450px;}
.yca{bottom:878.880450px;}
.y14d{bottom:879.060450px;}
.y111{bottom:879.959400px;}
.y1b3{bottom:887.699250px;}
.ya0{bottom:889.590450px;}
.y18b{bottom:893.099550px;}
.y76{bottom:894.090450px;}
.y4d{bottom:896.700450px;}
.y13e{bottom:896.962830px;}
.y110{bottom:898.229850px;}
.y2b{bottom:898.230450px;}
.ye1{bottom:899.760450px;}
.yc9{bottom:899.850450px;}
.y1b2{bottom:905.879550px;}
.y9f{bottom:910.560450px;}
.y18a{bottom:911.279850px;}
.yf9{bottom:912.270450px;}
.y13d{bottom:914.157150px;}
.y75{bottom:915.060450px;}
.y10f{bottom:916.500300px;}
.yc8{bottom:920.910450px;}
.y1b1{bottom:923.159550px;}
.y4c{bottom:926.851890px;}
.y2a{bottom:928.200450px;}
.y189{bottom:928.559850px;}
.ye0{bottom:929.730450px;}
.y13c{bottom:931.441650px;}
.y10e{bottom:934.680600px;}
.y9e{bottom:940.809540px;}
.y1b0{bottom:941.335380px;}
.yc7{bottom:941.880450px;}
.y74{bottom:945.030450px;}
.y188{bottom:946.740150px;}
.y13b{bottom:948.631350px;}
.y145{bottom:948.632850px;}
.y14c{bottom:948.634350px;}
.y4b{bottom:949.350450px;}
.ydf{bottom:950.790450px;}
.y10d{bottom:951.870450px;}
.yf8{bottom:956.730450px;}
.y29{bottom:958.260450px;}
.y1af{bottom:958.529700px;}
.yc6{bottom:962.850450px;}
.y9d{bottom:963.210450px;}
.y187{bottom:964.920450px;}
.y13a{bottom:965.816730px;}
.y144{bottom:965.822700px;}
.y14b{bottom:965.824200px;}
.y73{bottom:966.090450px;}
.y10c{bottom:969.870900px;}
.yf7{bottom:970.770450px;}
.yde{bottom:971.760450px;}
.yf5{bottom:976.080450px;}
.y1ae{bottom:976.800150px;}
.y28{bottom:978.960450px;}
.y186{bottom:982.200450px;}
.y139{bottom:983.011050px;}
.y143{bottom:983.012550px;}
.y14a{bottom:983.014050px;}
.y10b{bottom:987.060600px;}
.y4a{bottom:989.580450px;}
.yc5{bottom:993.009540px;}
.y1ad{bottom:994.980450px;}
.y72{bottom:996.249540px;}
.y27{bottom:999.660450px;}
.y185{bottom:1000.110450px;}
.y138{bottom:1000.286580px;}
.y142{bottom:1000.292550px;}
.y149{bottom:1000.294050px;}
.yf6{bottom:1000.470450px;}
.ydd{bottom:1001.919540px;}
.y9c{bottom:1003.440450px;}
.y10a{bottom:1004.250450px;}
.y49{bottom:1010.550450px;}
.y1ac{bottom:1012.260450px;}
.yc4{bottom:1015.410450px;}
.y184{bottom:1017.390450px;}
.y137{bottom:1017.480900px;}
.y141{bottom:1017.482250px;}
.y148{bottom:1017.483900px;}
.y71{bottom:1018.650450px;}
.y26{bottom:1020.360450px;}
.y109{bottom:1022.250750px;}
.ydc{bottom:1024.320450px;}
.y9b{bottom:1024.410450px;}
.y1ab{bottom:1030.170600px;}
.y136{bottom:1034.670600px;}
.y140{bottom:1034.672100px;}
.y147{bottom:1034.673600px;}
.y181{bottom:1035.296130px;}
.y183{bottom:1035.300600px;}
.y17d{bottom:1038.630450px;}
.y108{bottom:1039.436130px;}
.y107{bottom:1039.440600px;}
.yf4{bottom:1039.980450px;}
.y48{bottom:1040.701890px;}
.y25{bottom:1041.060450px;}
.y9a{bottom:1045.470450px;}
.y1aa{bottom:1047.360450px;}
.y135{bottom:1051.860450px;}
.y13f{bottom:1051.861950px;}
.y146{bottom:1051.863450px;}
.y182{bottom:1052.485950px;}
.y180{bottom:1052.490450px;}
.yc3{bottom:1055.730450px;}
.y106{bottom:1056.630450px;}
.y17c{bottom:1057.796130px;}
.y70{bottom:1058.880450px;}
.y47{bottom:1063.200450px;}
.ydb{bottom:1065.180450px;}
.y1a7{bottom:1065.356280px;}
.y1a9{bottom:1065.360900px;}
.y17f{bottom:1069.770450px;}
.y132{bottom:1069.861500px;}
.yf3{bottom:1069.951200px;}
.y24{bottom:1071.208350px;}
.y17b{bottom:1074.990450px;}
.y99{bottom:1075.629990px;}
.yc2{bottom:1076.700450px;}
.y12f{bottom:1078.410600px;}
.y134{bottom:1078.412100px;}
.y105{bottom:1079.130450px;}
.y6f{bottom:1079.940450px;}
.y1a8{bottom:1082.546130px;}
.y1a6{bottom:1082.550600px;}
.y131{bottom:1087.046880px;}
.yf2{bottom:1088.850540px;}
.y17e{bottom:1092.180450px;}
.y17a{bottom:1092.990600px;}
.y23{bottom:1093.638630px;}
.y12e{bottom:1095.600450px;}
.y133{bottom:1095.601950px;}
.yc1{bottom:1097.670450px;}
.y98{bottom:1098.030900px;}
.yda{bottom:1098.300450px;}
.y1a5{bottom:1099.740450px;}
.y6e{bottom:1100.910450px;}
.y46{bottom:1103.970450px;}
.y130{bottom:1104.241200px;}
.yf1{bottom:1107.840450px;}
.y179{bottom:1110.180450px;}
.y104{bottom:1116.030450px;}
.y22{bottom:1116.039540px;}
.yc0{bottom:1118.730450px;}
.y1a4{bottom:1122.240450px;}
.y12d{bottom:1131.240450px;}
.y45{bottom:1137.090450px;}
.yf0{bottom:1137.180450px;}
.y21{bottom:1138.440450px;}
.ybf{bottom:1139.700450px;}
.y6d{bottom:1139.970450px;}
.y178{bottom:1141.410600px;}
.y12c{bottom:1155.360450px;}
.yef{bottom:1194.600450px;}
.y20{bottom:1196.040600px;}
.y1{bottom:1247.400000px;}
.h19{height:5.262363px;}
.h1c{height:6.006445px;}
.h5{height:50.904000px;}
.h8{height:51.694980px;}
.h17{height:54.219551px;}
.he{height:56.647793px;}
.h11{height:59.414238px;}
.h7{height:59.764320px;}
.h18{height:59.973223px;}
.h14{height:61.909076px;}
.ha{height:61.910156px;}
.h13{height:62.047193px;}
.h15{height:64.148040px;}
.h1a{height:64.657617px;}
.hb{height:67.172520px;}
.hf{height:68.710781px;}
.h3{height:70.628906px;}
.h12{height:70.664062px;}
.hc{height:75.093750px;}
.h4{height:76.356000px;}
.h9{height:81.476719px;}
.hd{height:87.484219px;}
.h6{height:115.992000px;}
.h16{height:132.907440px;}
.h1b{height:133.268040px;}
.h10{height:144.670421px;}
.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;}
.x8{left:106.290000px;}
.x44{left:114.390000px;}
.x1d{left:138.240000px;}
.x5{left:144.173970px;}
.x11{left:148.860000px;}
.x33{left:152.009700px;}
.x2f{left:157.410000px;}
.x4f{left:160.109700px;}
.x3d{left:164.785200px;}
.x38{left:170.275770px;}
.x12{left:175.590000px;}
.x1c{left:177.836130px;}
.x43{left:179.273520px;}
.x4{left:184.230000px;}
.x52{left:186.923220px;}
.x24{left:210.060000px;}
.x45{left:236.609400px;}
.x15{left:244.529250px;}
.x1a{left:246.420300px;}
.x26{left:259.469700px;}
.xd{left:263.338470px;}
.x34{left:264.779850px;}
.x3e{left:275.309850px;}
.x22{left:288.805590px;}
.x1b{left:309.429270px;}
.x10{left:326.693790px;}
.x21{left:331.559700px;}
.x1f{left:346.223790px;}
.x9{left:348.930000px;}
.x3f{left:350.819100px;}
.x46{left:358.469700px;}
.x6{left:360.812400px;}
.x27{left:368.189250px;}
.x40{left:372.059550px;}
.x17{left:374.404830px;}
.xf{left:375.479730px;}
.xe{left:378.721710px;}
.xb{left:384.659250px;}
.x18{left:386.279820px;}
.x1e{left:388.447650px;}
.x13{left:412.293780px;}
.x20{left:416.700000px;}
.x19{left:419.580000px;}
.xa{left:422.550000px;}
.x3{left:423.720000px;}
.xc{left:427.410000px;}
.x25{left:433.350000px;}
.x36{left:435.869400px;}
.x28{left:438.564240px;}
.x35{left:440.999100px;}
.x29{left:444.418350px;}
.x7{left:446.490000px;}
.x47{left:449.100600px;}
.x48{left:452.519850px;}
.x41{left:525.960600px;}
.x23{left:531.090000px;}
.x50{left:533.609700px;}
.x2c{left:535.498650px;}
.x4b{left:538.200000px;}
.x37{left:552.239100px;}
.x2a{left:554.667900px;}
.x49{left:562.769400px;}
.x30{left:564.300750px;}
.x2b{left:568.345200px;}
.x4a{left:576.446700px;}
.x39{left:578.250000px;}
.x3a{left:597.419250px;}
.x16{left:628.288500px;}
.x42{left:686.070750px;}
.x32{left:691.110300px;}
.x31{left:692.279700px;}
.x51{left:693.810000px;}
.x2e{left:702.539100px;}
.x4e{left:710.637600px;}
.x3b{left:712.080150px;}
.x2d{left:716.488500px;}
.x4c{left:724.590000px;}
.x14{left:728.277960px;}
.x3c{left:734.670300px;}
.x4d{left:742.050300px;}
@media print{
.v5{vertical-align:-61.439467pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.799467pt;}
.v1{vertical-align:26.880000pt;}
.v4{vertical-align:61.119467pt;}
.v2{vertical-align:67.519680pt;}
.ls3{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls5c{letter-spacing:-0.106880pt;}
.ls8{letter-spacing:-0.096000pt;}
.ls59{letter-spacing:-0.085504pt;}
.ls1e{letter-spacing:-0.083200pt;}
.ls41{letter-spacing:-0.076800pt;}
.ls54{letter-spacing:-0.074816pt;}
.ls1b{letter-spacing:-0.070400pt;}
.ls52{letter-spacing:-0.069472pt;}
.ls4f{letter-spacing:-0.064128pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls35{letter-spacing:-0.062496pt;}
.ls56{letter-spacing:-0.058784pt;}
.ls19{letter-spacing:-0.057600pt;}
.ls4e{letter-spacing:-0.053440pt;}
.ls25{letter-spacing:-0.051200pt;}
.ls18{letter-spacing:-0.048608pt;}
.ls50{letter-spacing:-0.048096pt;}
.ls1c{letter-spacing:-0.044800pt;}
.ls4d{letter-spacing:-0.042752pt;}
.ls14{letter-spacing:-0.038400pt;}
.ls5b{letter-spacing:-0.037408pt;}
.ls10{letter-spacing:-0.034720pt;}
.ls57{letter-spacing:-0.032064pt;}
.ls12{letter-spacing:-0.032000pt;}
.ls3e{letter-spacing:-0.027776pt;}
.ls58{letter-spacing:-0.026720pt;}
.ls13{letter-spacing:-0.025600pt;}
.ls40{letter-spacing:-0.022368pt;}
.ls51{letter-spacing:-0.021376pt;}
.ls3a{letter-spacing:-0.020832pt;}
.ls15{letter-spacing:-0.019200pt;}
.ls30{letter-spacing:-0.017568pt;}
.ls4c{letter-spacing:-0.016032pt;}
.ls38{letter-spacing:-0.014912pt;}
.ls16{letter-spacing:-0.012800pt;}
.ls53{letter-spacing:-0.010688pt;}
.ls39{letter-spacing:-0.007456pt;}
.ls11{letter-spacing:-0.006944pt;}
.ls17{letter-spacing:-0.006400pt;}
.ls55{letter-spacing:-0.005344pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.005344pt;}
.ls1a{letter-spacing:0.006400pt;}
.ls47{letter-spacing:0.010688pt;}
.lsa{letter-spacing:0.012800pt;}
.ls3c{letter-spacing:0.019200pt;}
.ls3b{letter-spacing:0.025600pt;}
.ls5a{letter-spacing:0.026720pt;}
.ls9{letter-spacing:0.027776pt;}
.ls3f{letter-spacing:0.032000pt;}
.ls46{letter-spacing:0.032064pt;}
.ls20{letter-spacing:0.034720pt;}
.ls31{letter-spacing:0.035136pt;}
.ls43{letter-spacing:0.037408pt;}
.ls34{letter-spacing:0.038400pt;}
.ls28{letter-spacing:0.040992pt;}
.ls1f{letter-spacing:0.041664pt;}
.ls42{letter-spacing:0.042752pt;}
.ls23{letter-spacing:0.044736pt;}
.ls36{letter-spacing:0.044800pt;}
.ls2c{letter-spacing:0.046848pt;}
.ls4b{letter-spacing:0.048096pt;}
.ls3d{letter-spacing:0.052192pt;}
.ls2e{letter-spacing:0.052704pt;}
.ls21{letter-spacing:0.055552pt;}
.ls2b{letter-spacing:0.058560pt;}
.ls2a{letter-spacing:0.058784pt;}
.ls22{letter-spacing:0.059648pt;}
.ls4{letter-spacing:0.064000pt;}
.ls29{letter-spacing:0.064416pt;}
.ls37{letter-spacing:0.067104pt;}
.ls27{letter-spacing:0.070272pt;}
.ls32{letter-spacing:0.076128pt;}
.ls26{letter-spacing:0.076384pt;}
.lse{letter-spacing:0.076800pt;}
.ls2f{letter-spacing:0.081984pt;}
.ls44{letter-spacing:0.085504pt;}
.ls1{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.101536pt;}
.ls24{letter-spacing:0.104160pt;}
.ls48{letter-spacing:0.106880pt;}
.ls2d{letter-spacing:0.117120pt;}
.lsd{letter-spacing:0.121600pt;}
.ls33{letter-spacing:0.122912pt;}
.lsc{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.134400pt;}
.ls6{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.288000pt;}
.ls45{letter-spacing:42.110720pt;}
.ls49{letter-spacing:56.486080pt;}
.ws3{word-spacing:-23.904000pt;}
.ws2{word-spacing:-23.712000pt;}
.wsc{word-spacing:-17.753600pt;}
.wsd{word-spacing:-17.728000pt;}
.wse{word-spacing:-17.708800pt;}
.ws5f{word-spacing:-16.361664pt;}
.ws5e{word-spacing:-16.349952pt;}
.ws5c{word-spacing:-16.344096pt;}
.ws0{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws60{word-spacing:-14.979232pt;}
.ws5d{word-spacing:-14.915104pt;}
.wsea{word-spacing:-12.227072pt;}
.wseb{word-spacing:-12.130880pt;}
.wsb{word-spacing:-1.120000pt;}
.ws36{word-spacing:-0.465248pt;}
.wsef{word-spacing:-0.384768pt;}
.wsa{word-spacing:-0.384000pt;}
.wsd2{word-spacing:-0.381920pt;}
.ws100{word-spacing:-0.374080pt;}
.wsf6{word-spacing:-0.342016pt;}
.ws10{word-spacing:-0.319424pt;}
.ws13{word-spacing:-0.291648pt;}
.ws92{word-spacing:-0.229152pt;}
.ws12{word-spacing:-0.215264pt;}
.ws29{word-spacing:-0.194432pt;}
.ws8{word-spacing:-0.192000pt;}
.wsf{word-spacing:-0.180544pt;}
.ws44{word-spacing:-0.166400pt;}
.ws2a{word-spacing:-0.131936pt;}
.ws8c{word-spacing:-0.118048pt;}
.ws11{word-spacing:-0.111104pt;}
.ws9{word-spacing:-0.096000pt;}
.wsae{word-spacing:-0.090272pt;}
.ws5{word-spacing:-0.064000pt;}
.wsc6{word-spacing:-0.055552pt;}
.wsf5{word-spacing:-0.037408pt;}
.ws7c{word-spacing:-0.027776pt;}
.ws105{word-spacing:-0.026720pt;}
.ws64{word-spacing:-0.025600pt;}
.ws75{word-spacing:-0.023424pt;}
.ws103{word-spacing:-0.021376pt;}
.ws6f{word-spacing:-0.017568pt;}
.ws109{word-spacing:-0.016032pt;}
.ws73{word-spacing:-0.011712pt;}
.wsec{word-spacing:-0.010688pt;}
.ws70{word-spacing:-0.005856pt;}
.wsfc{word-spacing:-0.005344pt;}
.ws4{word-spacing:0.000000pt;}
.wsf8{word-spacing:0.005344pt;}
.ws72{word-spacing:0.005856pt;}
.ws102{word-spacing:0.010688pt;}
.ws74{word-spacing:0.011712pt;}
.ws8a{word-spacing:0.014912pt;}
.wsee{word-spacing:0.016032pt;}
.wsf1{word-spacing:0.021376pt;}
.ws28{word-spacing:0.022368pt;}
.wsed{word-spacing:0.026720pt;}
.ws4e{word-spacing:0.032000pt;}
.wsf7{word-spacing:0.032064pt;}
.wsf0{word-spacing:0.037408pt;}
.wse1{word-spacing:0.038400pt;}
.wsf3{word-spacing:0.042752pt;}
.ws101{word-spacing:0.048096pt;}
.wsa0{word-spacing:0.096000pt;}
.ws6{word-spacing:0.128000pt;}
.ws30{word-spacing:0.134400pt;}
.ws49{word-spacing:0.140800pt;}
.ws1b{word-spacing:0.147200pt;}
.ws1a{word-spacing:0.153600pt;}
.ws35{word-spacing:0.160000pt;}
.ws5b{word-spacing:0.166400pt;}
.ws1d{word-spacing:0.172800pt;}
.ws26{word-spacing:0.179200pt;}
.ws7{word-spacing:0.192000pt;}
.ws1c{word-spacing:0.198400pt;}
.ws25{word-spacing:0.211200pt;}
.wsbe{word-spacing:0.249600pt;}
.ws8b{word-spacing:0.253504pt;}
.ws91{word-spacing:0.288000pt;}
.wsd8{word-spacing:0.320000pt;}
.ws10f{word-spacing:0.352704pt;}
.ws110{word-spacing:0.358048pt;}
.ws51{word-spacing:0.409600pt;}
.ws6e{word-spacing:0.492800pt;}
.ws55{word-spacing:0.800000pt;}
.ws54{word-spacing:0.857600pt;}
.wsbc{word-spacing:1.113600pt;}
.wsbb{word-spacing:1.216000pt;}
.wsab{word-spacing:1.401600pt;}
.ws17{word-spacing:1.420800pt;}
.wsa9{word-spacing:1.433600pt;}
.ws16{word-spacing:1.536000pt;}
.wsaa{word-spacing:1.568000pt;}
.ws4c{word-spacing:1.753600pt;}
.wsb1{word-spacing:1.760000pt;}
.wsb2{word-spacing:1.785600pt;}
.ws14{word-spacing:1.804800pt;}
.ws4d{word-spacing:1.811200pt;}
.ws15{word-spacing:1.868800pt;}
.wscd{word-spacing:2.048000pt;}
.wsce{word-spacing:2.118400pt;}
.ws2b{word-spacing:2.176000pt;}
.ws2d{word-spacing:2.182400pt;}
.ws2c{word-spacing:2.316800pt;}
.ws18{word-spacing:3.564800pt;}
.ws19{word-spacing:3.635200pt;}
.ws53{word-spacing:3.737600pt;}
.ws52{word-spacing:3.801600pt;}
.ws62{word-spacing:4.300800pt;}
.wsbd{word-spacing:4.352000pt;}
.ws61{word-spacing:4.422400pt;}
.ws4b{word-spacing:4.614400pt;}
.ws32{word-spacing:4.633600pt;}
.wsca{word-spacing:4.640000pt;}
.ws4a{word-spacing:4.691200pt;}
.ws31{word-spacing:4.723200pt;}
.wsc9{word-spacing:4.806400pt;}
.ws5a{word-spacing:5.907200pt;}
.ws59{word-spacing:5.926400pt;}
.ws7f{word-spacing:6.284800pt;}
.ws80{word-spacing:6.412800pt;}
.wsd6{word-spacing:6.854400pt;}
.wsd7{word-spacing:6.867200pt;}
.wsa4{word-spacing:7.193600pt;}
.wsa3{word-spacing:7.289600pt;}
.wsd1{word-spacing:7.507200pt;}
.wscf{word-spacing:7.520000pt;}
.wsd0{word-spacing:7.635200pt;}
.ws99{word-spacing:8.172800pt;}
.wsa7{word-spacing:8.179200pt;}
.wsa8{word-spacing:8.192000pt;}
.ws98{word-spacing:8.332800pt;}
.ws77{word-spacing:8.819200pt;}
.ws78{word-spacing:8.889600pt;}
.ws95{word-spacing:9.715200pt;}
.ws6d{word-spacing:9.740800pt;}
.ws6c{word-spacing:9.843200pt;}
.ws94{word-spacing:9.888000pt;}
.ws93{word-spacing:9.913600pt;}
.wsac{word-spacing:10.124800pt;}
.wsad{word-spacing:10.156800pt;}
.wsa6{word-spacing:10.291200pt;}
.wsa5{word-spacing:10.419200pt;}
.ws27{word-spacing:10.700800pt;}
.ws24{word-spacing:10.732800pt;}
.ws1f{word-spacing:10.739200pt;}
.ws21{word-spacing:10.745600pt;}
.ws20{word-spacing:10.758400pt;}
.ws22{word-spacing:10.764800pt;}
.ws1e{word-spacing:10.771200pt;}
.wsc3{word-spacing:11.360000pt;}
.ws34{word-spacing:11.372800pt;}
.ws33{word-spacing:11.398400pt;}
.wsc5{word-spacing:11.859200pt;}
.wsb3{word-spacing:11.987200pt;}
.wsb5{word-spacing:11.993600pt;}
.wsc4{word-spacing:12.000000pt;}
.wsb4{word-spacing:12.172800pt;}
.ws7e{word-spacing:13.260800pt;}
.ws7d{word-spacing:13.286400pt;}
.ws58{word-spacing:13.299200pt;}
.ws6b{word-spacing:13.907200pt;}
.wsa2{word-spacing:13.913600pt;}
.ws6a{word-spacing:13.939200pt;}
.wsa1{word-spacing:14.003200pt;}
.ws2e{word-spacing:15.193600pt;}
.ws2f{word-spacing:15.200000pt;}
.ws23{word-spacing:16.064000pt;}
.ws97{word-spacing:17.427200pt;}
.ws96{word-spacing:17.440000pt;}
.wsbf{word-spacing:18.144000pt;}
.wsc0{word-spacing:18.246400pt;}
.wsb0{word-spacing:18.732800pt;}
.wsaf{word-spacing:18.841600pt;}
.wsde{word-spacing:19.033600pt;}
.ws68{word-spacing:20.006400pt;}
.ws67{word-spacing:20.070400pt;}
.ws69{word-spacing:20.288000pt;}
.ws57{word-spacing:22.240000pt;}
.ws56{word-spacing:22.323200pt;}
.ws63{word-spacing:22.566400pt;}
.wsc8{word-spacing:22.604800pt;}
.wsc7{word-spacing:22.707200pt;}
.wsb7{word-spacing:23.430400pt;}
.wsb8{word-spacing:23.507200pt;}
.ws9c{word-spacing:23.520000pt;}
.ws66{word-spacing:23.532800pt;}
.wsb6{word-spacing:23.539200pt;}
.wsdf{word-spacing:23.820800pt;}
.wse0{word-spacing:23.859200pt;}
.ws45{word-spacing:24.486400pt;}
.ws46{word-spacing:24.601600pt;}
.ws9d{word-spacing:25.126400pt;}
.ws9e{word-spacing:25.209600pt;}
.ws9f{word-spacing:25.292800pt;}
.ws86{word-spacing:26.016000pt;}
.ws50{word-spacing:26.060800pt;}
.ws84{word-spacing:26.086400pt;}
.ws4f{word-spacing:26.099200pt;}
.ws85{word-spacing:26.246400pt;}
.wsc2{word-spacing:28.300800pt;}
.wsc1{word-spacing:28.332800pt;}
.wscb{word-spacing:29.894400pt;}
.wscc{word-spacing:30.086400pt;}
.ws8e{word-spacing:30.572800pt;}
.ws8d{word-spacing:30.636800pt;}
.ws8f{word-spacing:31.488000pt;}
.ws90{word-spacing:31.520000pt;}
.ws79{word-spacing:32.128000pt;}
.ws7a{word-spacing:32.249600pt;}
.ws7b{word-spacing:34.400000pt;}
.ws9b{word-spacing:36.076800pt;}
.ws3f{word-spacing:37.292800pt;}
.ws40{word-spacing:37.382400pt;}
.ws42{word-spacing:38.892800pt;}
.ws41{word-spacing:38.982400pt;}
.ws43{word-spacing:39.033600pt;}
.ws3c{word-spacing:39.526400pt;}
.ws3b{word-spacing:39.596800pt;}
.wsda{word-spacing:43.328000pt;}
.wsdb{word-spacing:43.379200pt;}
.wsd9{word-spacing:43.603200pt;}
.ws89{word-spacing:43.980800pt;}
.ws87{word-spacing:43.993600pt;}
.ws88{word-spacing:44.320000pt;}
.wsdd{word-spacing:44.633600pt;}
.ws3e{word-spacing:44.646400pt;}
.wsdc{word-spacing:44.652800pt;}
.ws3d{word-spacing:44.774400pt;}
.wsf4{word-spacing:45.167488pt;}
.ws9a{word-spacing:48.806400pt;}
.wsb9{word-spacing:52.966400pt;}
.wsba{word-spacing:53.068800pt;}
.ws83{word-spacing:54.240000pt;}
.wsd3{word-spacing:55.520000pt;}
.ws65{word-spacing:55.526400pt;}
.ws39{word-spacing:57.356800pt;}
.ws3a{word-spacing:57.446400pt;}
.wse2{word-spacing:58.548288pt;}
.ws38{word-spacing:59.020800pt;}
.ws37{word-spacing:59.052800pt;}
.wse3{word-spacing:73.478400pt;}
.wsd5{word-spacing:77.868800pt;}
.wsd4{word-spacing:78.105600pt;}
.ws47{word-spacing:82.400000pt;}
.ws48{word-spacing:82.406400pt;}
.ws82{word-spacing:87.840000pt;}
.ws81{word-spacing:87.961600pt;}
.wse9{word-spacing:90.457600pt;}
.wse6{word-spacing:100.640000pt;}
.wse8{word-spacing:100.665600pt;}
.wse4{word-spacing:100.697600pt;}
.wsff{word-spacing:101.690976pt;}
.ws106{word-spacing:101.733728pt;}
.ws111{word-spacing:101.739072pt;}
.ws10e{word-spacing:102.059712pt;}
.wsfe{word-spacing:126.006176pt;}
.wsfb{word-spacing:126.011520pt;}
.ws104{word-spacing:126.027552pt;}
.wsfd{word-spacing:126.048928pt;}
.wsfa{word-spacing:126.059616pt;}
.wsf9{word-spacing:126.064960pt;}
.wsf2{word-spacing:126.075648pt;}
.ws10d{word-spacing:126.326816pt;}
.ws10b{word-spacing:126.332160pt;}
.ws10c{word-spacing:126.369568pt;}
.ws10a{word-spacing:126.380256pt;}
.ws108{word-spacing:126.385600pt;}
.ws107{word-spacing:127.673504pt;}
.wse7{word-spacing:317.600000pt;}
.wse5{word-spacing:335.206400pt;}
.ws76{word-spacing:1348.156608pt;}
.ws71{word-spacing:1348.174176pt;}
._1a{margin-left:-1158.720491pt;}
._30{margin-left:-317.444800pt;}
._3c{margin-left:-126.333365pt;}
._32{margin-left:-100.480000pt;}
._38{margin-left:-45.103360pt;}
._17{margin-left:-31.680000pt;}
._26{margin-left:-12.480000pt;}
._7{margin-left:-10.560000pt;}
._12{margin-left:-3.520000pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.056000pt;}
._a{width:3.123200pt;}
._9{width:4.377600pt;}
._10{width:5.984000pt;}
._6{width:7.910400pt;}
._b{width:9.459200pt;}
._3{width:10.560000pt;}
._c{width:11.520000pt;}
._e{width:14.156800pt;}
._29{width:22.720000pt;}
._13{width:24.320000pt;}
._27{width:25.280000pt;}
._15{width:29.440000pt;}
._11{width:34.560000pt;}
._16{width:35.520000pt;}
._28{width:37.376000pt;}
._25{width:40.512000pt;}
._14{width:44.096000pt;}
._8{width:45.440000pt;}
._23{width:46.720000pt;}
._d{width:52.480000pt;}
._24{width:54.835200pt;}
._4{width:56.000000pt;}
._2a{width:58.368000pt;}
._37{width:59.532160pt;}
._2d{width:61.120000pt;}
._5{width:63.360000pt;}
._2{width:70.400000pt;}
._f{width:73.920000pt;}
._39{width:126.080672pt;}
._2b{width:170.880000pt;}
._3b{width:182.743467pt;}
._1d{width:188.471883pt;}
._35{width:201.624000pt;}
._36{width:222.433387pt;}
._31{width:231.358933pt;}
._2e{width:234.562667pt;}
._1b{width:256.957941pt;}
._19{width:295.991349pt;}
._20{width:300.155371pt;}
._2f{width:335.308800pt;}
._34{width:463.073387pt;}
._3d{width:464.671253pt;}
._3a{width:481.953920pt;}
._3f{width:495.378133pt;}
._2c{width:528.115200pt;}
._33{width:686.079467pt;}
._1f{width:810.388171pt;}
._22{width:822.818496pt;}
._3e{width:1103.712768pt;}
._40{width:1113.027360pt;}
._1c{width:1268.837088pt;}
._18{width:1529.903424pt;}
._1e{width:1726.091136pt;}
._21{width:1738.892352pt;}
.fs7{font-size:5.440000pt;}
.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;}
.y1f{bottom:39.200000pt;}
.y1e{bottom:58.720000pt;}
.y1d{bottom:76.960000pt;}
.ybe{bottom:92.107200pt;}
.y1c{bottom:95.040000pt;}
.ybd{bottom:110.747200pt;}
.y1b{bottom:113.120000pt;}
.y6c{bottom:117.387067pt;}
.y177{bottom:119.467333pt;}
.ybc{bottom:129.467200pt;}
.y1a{bottom:131.200000pt;}
.y176{bottom:134.747200pt;}
.y6b{bottom:136.027067pt;}
.y97{bottom:139.467067pt;}
.y19{bottom:149.440000pt;}
.y175{bottom:150.107200pt;}
.y6a{bottom:154.667067pt;}
.ybb{bottom:156.107200pt;}
.y96{bottom:158.187067pt;}
.y174{bottom:166.027200pt;}
.y18{bottom:167.520000pt;}
.y95{bottom:176.827067pt;}
.y173{bottom:181.307067pt;}
.y69{bottom:181.387067pt;}
.yba{bottom:182.747200pt;}
.y17{bottom:185.600000pt;}
.y94{bottom:195.467067pt;}
.y172{bottom:197.307200pt;}
.y68{bottom:200.027067pt;}
.yb9{bottom:201.467200pt;}
.y16{bottom:203.680000pt;}
.y171{bottom:212.587067pt;}
.y67{bottom:218.667067pt;}
.y15{bottom:221.920000pt;}
.yb8{bottom:228.107200pt;}
.y170{bottom:228.587200pt;}
.y93{bottom:230.587067pt;}
.y66{bottom:237.387067pt;}
.y14{bottom:240.000000pt;}
.y16f{bottom:243.867067pt;}
.yb7{bottom:246.747200pt;}
.y92{bottom:252.107147pt;}
.y13{bottom:258.080000pt;}
.y16e{bottom:259.867200pt;}
.y65{bottom:264.027067pt;}
.y91{bottom:268.987067pt;}
.yb6{bottom:273.467200pt;}
.y16d{bottom:275.147067pt;}
.y12{bottom:276.320000pt;}
.y44{bottom:282.507067pt;}
.y64{bottom:282.667067pt;}
.y90{bottom:290.507067pt;}
.y16c{bottom:291.068800pt;}
.yb5{bottom:292.107200pt;}
.y11{bottom:294.400000pt;}
.y43{bottom:301.147067pt;}
.y16b{bottom:306.380640pt;}
.y63{bottom:309.387067pt;}
.y10{bottom:312.480000pt;}
.yb4{bottom:318.747200pt;}
.y16a{bottom:321.664480pt;}
.y8f{bottom:324.027067pt;}
.y42{bottom:327.867067pt;}
.y62{bottom:328.027067pt;}
.yf{bottom:330.560000pt;}
.y169{bottom:336.948320pt;}
.yb3{bottom:337.467200pt;}
.y8e{bottom:345.467147pt;}
.y41{bottom:346.427067pt;}
.y61{bottom:346.667067pt;}
.ye{bottom:348.000000pt;}
.y168{bottom:352.232160pt;}
.y8d{bottom:362.347067pt;}
.yb2{bottom:364.107200pt;}
.y40{bottom:365.067067pt;}
.yd{bottom:366.720000pt;}
.y167{bottom:367.596160pt;}
.y12b{bottom:369.947067pt;}
.y60{bottom:373.387067pt;}
.y1cd{bottom:375.867067pt;}
.yb1{bottom:382.747200pt;}
.y166{bottom:382.880000pt;}
.y3f{bottom:383.867067pt;}
.y8c{bottom:383.947067pt;}
.y12a{bottom:387.063227pt;}
.y5f{bottom:392.027067pt;}
.yc{bottom:392.480000pt;}
.y1cc{bottom:392.983227pt;}
.y1a3{bottom:397.787067pt;}
.y165{bottom:398.163840pt;}
.yb0{bottom:401.467200pt;}
.y129{bottom:402.347067pt;}
.yd9{bottom:402.667067pt;}
.y1cb{bottom:408.267067pt;}
.y3e{bottom:410.507067pt;}
.y5e{bottom:410.667067pt;}
.y164{bottom:413.447680pt;}
.y1a2{bottom:414.903360pt;}
.y88{bottom:417.468000pt;}
.y128{bottom:418.347200pt;}
.yaf{bottom:420.107200pt;}
.y1ca{bottom:424.267200pt;}
.yb{bottom:426.080000pt;}
.y163{bottom:428.811680pt;}
.y3d{bottom:429.147067pt;}
.yd8{bottom:429.387067pt;}
.y1a1{bottom:430.187200pt;}
.yee{bottom:431.867067pt;}
.y127{bottom:433.627067pt;}
.y87{bottom:434.347973pt;}
.y5d{bottom:437.387067pt;}
.y1c9{bottom:439.547067pt;}
.y162{bottom:444.095520pt;}
.y1a0{bottom:446.187200pt;}
.yae{bottom:446.915280pt;}
.y3c{bottom:447.867067pt;}
.yd7{bottom:448.027067pt;}
.y126{bottom:449.623360pt;}
.y86{bottom:451.227893pt;}
.y1c8{bottom:455.543360pt;}
.y5c{bottom:456.027067pt;}
.yed{bottom:458.427067pt;}
.y161{bottom:459.379360pt;}
.ya{bottom:459.680000pt;}
.y19f{bottom:461.467067pt;}
.y125{bottom:464.907200pt;}
.y3b{bottom:466.507067pt;}
.yd6{bottom:466.667067pt;}
.yad{bottom:466.827200pt;}
.y85{bottom:468.107813pt;}
.y1c7{bottom:470.827200pt;}
.y160{bottom:474.663200pt;}
.y5b{bottom:474.667067pt;}
.y19e{bottom:477.463360pt;}
.y124{bottom:480.187067pt;}
.y84{bottom:484.987733pt;}
.y8b{bottom:484.989200pt;}
.y3a{bottom:485.147067pt;}
.yd5{bottom:485.387067pt;}
.y1c6{bottom:486.107067pt;}
.y15f{bottom:490.027200pt;}
.y19d{bottom:492.747200pt;}
.y9{bottom:493.280000pt;}
.y5a{bottom:493.387067pt;}
.y123{bottom:496.187200pt;}
.y83{bottom:501.787147pt;}
.y8a{bottom:501.788667pt;}
.y1c5{bottom:502.107200pt;}
.yac{bottom:502.667067pt;}
.y39{bottom:503.867067pt;}
.yd4{bottom:504.027067pt;}
.y15e{bottom:505.307067pt;}
.y19c{bottom:508.027067pt;}
.y122{bottom:511.467067pt;}
.yec{bottom:511.787067pt;}
.y59{bottom:512.027067pt;}
.y1c4{bottom:517.387067pt;}
.y82{bottom:518.667067pt;}
.y89{bottom:518.668533pt;}
.y15d{bottom:521.225067pt;}
.yab{bottom:521.307067pt;}
.y38{bottom:522.507067pt;}
.yd3{bottom:522.667067pt;}
.y19b{bottom:524.027200pt;}
.y8{bottom:526.880000pt;}
.y121{bottom:527.467200pt;}
.y1c3{bottom:533.307067pt;}
.y15c{bottom:536.589067pt;}
.yeb{bottom:538.427067pt;}
.y58{bottom:538.667067pt;}
.y19a{bottom:539.307067pt;}
.yaa{bottom:539.947067pt;}
.y81{bottom:540.107147pt;}
.y120{bottom:542.747067pt;}
.y103{bottom:547.067067pt;}
.y1c2{bottom:548.667067pt;}
.y37{bottom:549.147067pt;}
.yd2{bottom:549.468347pt;}
.y15b{bottom:551.868933pt;}
.y199{bottom:555.307200pt;}
.y7{bottom:556.960000pt;}
.y80{bottom:556.987067pt;}
.y57{bottom:557.387067pt;}
.y11f{bottom:558.667067pt;}
.y1c1{bottom:564.587067pt;}
.yea{bottom:565.147067pt;}
.ya9{bottom:566.755147pt;}
.y15a{bottom:567.148800pt;}
.y36{bottom:567.867067pt;}
.yd1{bottom:569.467067pt;}
.y198{bottom:570.587067pt;}
.y11e{bottom:574.027067pt;}
.y102{bottom:574.427067pt;}
.y56{bottom:576.027067pt;}
.y7f{bottom:578.587067pt;}
.y6{bottom:579.360000pt;}
.y1c0{bottom:579.947067pt;}
.y35{bottom:586.507067pt;}
.ya8{bottom:586.667067pt;}
.y11d{bottom:589.947067pt;}
.ye9{bottom:591.787067pt;}
.y1bf{bottom:595.867200pt;}
.y159{bottom:597.788533pt;}
.y5{bottom:601.760000pt;}
.y197{bottom:601.867067pt;}
.y55{bottom:602.835147pt;}
.y34{bottom:605.147067pt;}
.yd0{bottom:605.227067pt;}
.y11c{bottom:605.307067pt;}
.y1be{bottom:611.147067pt;}
.y7e{bottom:612.107200pt;}
.y158{bottom:613.064427pt;}
.y101{bottom:614.907067pt;}
.y196{bottom:617.787200pt;}
.ye8{bottom:618.427067pt;}
.y11b{bottom:621.225600pt;}
.y54{bottom:622.747067pt;}
.ya7{bottom:622.987067pt;}
.y33{bottom:623.867067pt;}
.y4{bottom:624.160000pt;}
.y1bd{bottom:627.144667pt;}
.y157{bottom:628.348267pt;}
.y7d{bottom:628.987067pt;}
.y195{bottom:633.067067pt;}
.y11a{bottom:637.466000pt;}
.y32{bottom:642.507067pt;}
.ycf{bottom:642.587067pt;}
.y1bc{bottom:643.385067pt;}
.y156{bottom:643.624133pt;}
.ye7{bottom:645.147067pt;}
.y3{bottom:646.560000pt;}
.y194{bottom:649.065333pt;}
.y7c{bottom:650.427147pt;}
.ya6{bottom:652.427067pt;}
.y119{bottom:653.706400pt;}
.y100{bottom:656.667067pt;}
.y53{bottom:658.587067pt;}
.y155{bottom:658.988133pt;}
.y1bb{bottom:659.625467pt;}
.y31{bottom:661.147067pt;}
.yce{bottom:661.227067pt;}
.y193{bottom:665.305733pt;}
.y7b{bottom:667.307067pt;}
.y118{bottom:669.866667pt;}
.ye6{bottom:671.787067pt;}
.y2{bottom:672.480000pt;}
.y154{bottom:674.259920pt;}
.y1ba{bottom:675.785733pt;}
.y52{bottom:677.227067pt;}
.y30{bottom:679.867067pt;}
.ya5{bottom:681.387067pt;}
.y192{bottom:681.546133pt;}
.y117{bottom:686.107067pt;}
.y7a{bottom:688.907067pt;}
.y153{bottom:689.543760pt;}
.yfe{bottom:691.387307pt;}
.y1b9{bottom:692.026133pt;}
.yff{bottom:695.707067pt;}
.y51{bottom:695.867067pt;}
.y191{bottom:697.706400pt;}
.ye5{bottom:698.427067pt;}
.y2f{bottom:698.507067pt;}
.y116{bottom:702.104933pt;}
.y152{bottom:704.827600pt;}
.ycd{bottom:706.587067pt;}
.ya4{bottom:708.107067pt;}
.y1b8{bottom:708.266533pt;}
.yfd{bottom:708.267227pt;}
.y190{bottom:713.946800pt;}
.y2e{bottom:717.147067pt;}
.y115{bottom:718.265200pt;}
.y151{bottom:720.187600pt;}
.y50{bottom:722.668347pt;}
.y1b7{bottom:724.426800pt;}
.yfc{bottom:725.147147pt;}
.ycc{bottom:725.227067pt;}
.y18f{bottom:730.107067pt;}
.y79{bottom:730.747067pt;}
.y114{bottom:734.505600pt;}
.ya3{bottom:734.747067pt;}
.y150{bottom:735.463360pt;}
.ye4{bottom:735.787067pt;}
.y1b6{bottom:740.587067pt;}
.yfb{bottom:740.827200pt;}
.y4f{bottom:742.667067pt;}
.y2d{bottom:743.867067pt;}
.y18e{bottom:746.105600pt;}
.y78{bottom:749.387067pt;}
.y113{bottom:750.746000pt;}
.y14f{bottom:750.747200pt;}
.ya2{bottom:753.387067pt;}
.ye3{bottom:754.427067pt;}
.y1b5{bottom:756.585200pt;}
.y18d{bottom:762.346133pt;}
.ycb{bottom:762.587067pt;}
.y14e{bottom:766.027067pt;}
.y112{bottom:766.906267pt;}
.ya1{bottom:772.107067pt;}
.y1b4{bottom:772.825600pt;}
.yfa{bottom:775.867067pt;}
.y77{bottom:776.027067pt;}
.y4e{bottom:778.427067pt;}
.y18c{bottom:778.502267pt;}
.y2c{bottom:778.747067pt;}
.ye2{bottom:781.147067pt;}
.yca{bottom:781.227067pt;}
.y14d{bottom:781.387067pt;}
.y111{bottom:782.186133pt;}
.y1b3{bottom:789.066000pt;}
.ya0{bottom:790.747067pt;}
.y18b{bottom:793.866267pt;}
.y76{bottom:794.747067pt;}
.y4d{bottom:797.067067pt;}
.y13e{bottom:797.300293pt;}
.y110{bottom:798.426533pt;}
.y2b{bottom:798.427067pt;}
.ye1{bottom:799.787067pt;}
.yc9{bottom:799.867067pt;}
.y1b2{bottom:805.226267pt;}
.y9f{bottom:809.387067pt;}
.y18a{bottom:810.026533pt;}
.yf9{bottom:810.907067pt;}
.y13d{bottom:812.584133pt;}
.y75{bottom:813.387067pt;}
.y10f{bottom:814.666933pt;}
.yc8{bottom:818.587067pt;}
.y1b1{bottom:820.586267pt;}
.y4c{bottom:823.868347pt;}
.y2a{bottom:825.067067pt;}
.y189{bottom:825.386533pt;}
.ye0{bottom:826.427067pt;}
.y13c{bottom:827.948133pt;}
.y10e{bottom:830.827200pt;}
.y9e{bottom:836.275147pt;}
.y1b0{bottom:836.742560pt;}
.yc7{bottom:837.227067pt;}
.y74{bottom:840.027067pt;}
.y188{bottom:841.546800pt;}
.y13b{bottom:843.227867pt;}
.y145{bottom:843.229200pt;}
.y14c{bottom:843.230533pt;}
.y4b{bottom:843.867067pt;}
.ydf{bottom:845.147067pt;}
.y10d{bottom:846.107067pt;}
.yf8{bottom:850.427067pt;}
.y29{bottom:851.787067pt;}
.y1af{bottom:852.026400pt;}
.yc6{bottom:855.867067pt;}
.y9d{bottom:856.187067pt;}
.y187{bottom:857.707067pt;}
.y13a{bottom:858.503760pt;}
.y144{bottom:858.509067pt;}
.y14b{bottom:858.510400pt;}
.y73{bottom:858.747067pt;}
.y10c{bottom:862.107467pt;}
.yf7{bottom:862.907067pt;}
.yde{bottom:863.787067pt;}
.yf5{bottom:867.627067pt;}
.y1ae{bottom:868.266800pt;}
.y28{bottom:870.187067pt;}
.y186{bottom:873.067067pt;}
.y139{bottom:873.787600pt;}
.y143{bottom:873.788933pt;}
.y14a{bottom:873.790267pt;}
.y10b{bottom:877.387200pt;}
.y4a{bottom:879.627067pt;}
.yc5{bottom:882.675147pt;}
.y1ad{bottom:884.427067pt;}
.y72{bottom:885.555147pt;}
.y27{bottom:888.587067pt;}
.y185{bottom:888.987067pt;}
.y138{bottom:889.143627pt;}
.y142{bottom:889.148933pt;}
.y149{bottom:889.150267pt;}
.yf6{bottom:889.307067pt;}
.ydd{bottom:890.595147pt;}
.y9c{bottom:891.947067pt;}
.y10a{bottom:892.667067pt;}
.y49{bottom:898.267067pt;}
.y1ac{bottom:899.787067pt;}
.yc4{bottom:902.587067pt;}
.y184{bottom:904.347067pt;}
.y137{bottom:904.427467pt;}
.y141{bottom:904.428667pt;}
.y148{bottom:904.430133pt;}
.y71{bottom:905.467067pt;}
.y26{bottom:906.987067pt;}
.y109{bottom:908.667333pt;}
.ydc{bottom:910.507067pt;}
.y9b{bottom:910.587067pt;}
.y1ab{bottom:915.707200pt;}
.y136{bottom:919.707200pt;}
.y140{bottom:919.708533pt;}
.y147{bottom:919.709867pt;}
.y181{bottom:920.263227pt;}
.y183{bottom:920.267200pt;}
.y17d{bottom:923.227067pt;}
.y108{bottom:923.943227pt;}
.y107{bottom:923.947200pt;}
.yf4{bottom:924.427067pt;}
.y48{bottom:925.068347pt;}
.y25{bottom:925.387067pt;}
.y9a{bottom:929.307067pt;}
.y1aa{bottom:930.987067pt;}
.y135{bottom:934.987067pt;}
.y13f{bottom:934.988400pt;}
.y146{bottom:934.989733pt;}
.y182{bottom:935.543067pt;}
.y180{bottom:935.547067pt;}
.yc3{bottom:938.427067pt;}
.y106{bottom:939.227067pt;}
.y17c{bottom:940.263227pt;}
.y70{bottom:941.227067pt;}
.y47{bottom:945.067067pt;}
.ydb{bottom:946.827067pt;}
.y1a7{bottom:946.983360pt;}
.y1a9{bottom:946.987467pt;}
.y17f{bottom:950.907067pt;}
.y132{bottom:950.988000pt;}
.yf3{bottom:951.067733pt;}
.y24{bottom:952.185200pt;}
.y17b{bottom:955.547067pt;}
.y99{bottom:956.115547pt;}
.yc2{bottom:957.067067pt;}
.y12f{bottom:958.587200pt;}
.y134{bottom:958.588533pt;}
.y105{bottom:959.227067pt;}
.y6f{bottom:959.947067pt;}
.y1a8{bottom:962.263227pt;}
.y1a6{bottom:962.267200pt;}
.y131{bottom:966.263893pt;}
.yf2{bottom:967.867147pt;}
.y17e{bottom:970.827067pt;}
.y17a{bottom:971.547200pt;}
.y23{bottom:972.123227pt;}
.y12e{bottom:973.867067pt;}
.y133{bottom:973.868400pt;}
.yc1{bottom:975.707067pt;}
.y98{bottom:976.027467pt;}
.yda{bottom:976.267067pt;}
.y1a5{bottom:977.547067pt;}
.y6e{bottom:978.587067pt;}
.y46{bottom:981.307067pt;}
.y130{bottom:981.547733pt;}
.yf1{bottom:984.747067pt;}
.y179{bottom:986.827067pt;}
.y104{bottom:992.027067pt;}
.y22{bottom:992.035147pt;}
.yc0{bottom:994.427067pt;}
.y1a4{bottom:997.547067pt;}
.y12d{bottom:1005.547067pt;}
.y45{bottom:1010.747067pt;}
.yf0{bottom:1010.827067pt;}
.y21{bottom:1011.947067pt;}
.ybf{bottom:1013.067067pt;}
.y6d{bottom:1013.307067pt;}
.y178{bottom:1014.587200pt;}
.y12c{bottom:1026.987067pt;}
.yef{bottom:1061.867067pt;}
.y20{bottom:1063.147200pt;}
.y1{bottom:1108.800000pt;}
.h19{height:4.677656pt;}
.h1c{height:5.339062pt;}
.h5{height:45.248000pt;}
.h8{height:45.951094pt;}
.h17{height:48.195156pt;}
.he{height:50.353594pt;}
.h11{height:52.812656pt;}
.h7{height:53.123840pt;}
.h18{height:53.309531pt;}
.h14{height:55.030290pt;}
.ha{height:55.031250pt;}
.h13{height:55.153060pt;}
.h15{height:57.020480pt;}
.h1a{height:57.473437pt;}
.hb{height:59.708906pt;}
.hf{height:61.076250pt;}
.h3{height:62.781250pt;}
.h12{height:62.812500pt;}
.hc{height:66.750000pt;}
.h4{height:67.872000pt;}
.h9{height:72.423750pt;}
.hd{height:77.763750pt;}
.h6{height:103.104000pt;}
.h16{height:118.139947pt;}
.h1b{height:118.460480pt;}
.h10{height:128.595930pt;}
.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;}
.x8{left:94.480000pt;}
.x44{left:101.680000pt;}
.x1d{left:122.880000pt;}
.x5{left:128.154640pt;}
.x11{left:132.320000pt;}
.x33{left:135.119733pt;}
.x2f{left:139.920000pt;}
.x4f{left:142.319733pt;}
.x3d{left:146.475733pt;}
.x38{left:151.356240pt;}
.x12{left:156.080000pt;}
.x1c{left:158.076560pt;}
.x43{left:159.354240pt;}
.x4{left:163.760000pt;}
.x52{left:166.153973pt;}
.x24{left:186.720000pt;}
.x45{left:210.319467pt;}
.x15{left:217.359333pt;}
.x1a{left:219.040267pt;}
.x26{left:230.639733pt;}
.xd{left:234.078640pt;}
.x34{left:235.359867pt;}
.x3e{left:244.719867pt;}
.x22{left:256.716080pt;}
.x1b{left:275.048240pt;}
.x10{left:290.394480pt;}
.x21{left:294.719733pt;}
.x1f{left:307.754480pt;}
.x9{left:310.160000pt;}
.x3f{left:311.839200pt;}
.x46{left:318.639733pt;}
.x6{left:320.722133pt;}
.x27{left:327.279333pt;}
.x40{left:330.719600pt;}
.x17{left:332.804293pt;}
.xf{left:333.759760pt;}
.xe{left:336.641520pt;}
.xb{left:341.919333pt;}
.x18{left:343.359840pt;}
.x1e{left:345.286800pt;}
.x13{left:366.483360pt;}
.x20{left:370.400000pt;}
.x19{left:372.960000pt;}
.xa{left:375.600000pt;}
.x3{left:376.640000pt;}
.xc{left:379.920000pt;}
.x25{left:385.200000pt;}
.x36{left:387.439467pt;}
.x28{left:389.834880pt;}
.x35{left:391.999200pt;}
.x29{left:395.038533pt;}
.x7{left:396.880000pt;}
.x47{left:399.200533pt;}
.x48{left:402.239867pt;}
.x41{left:467.520533pt;}
.x23{left:472.080000pt;}
.x50{left:474.319733pt;}
.x2c{left:475.998800pt;}
.x4b{left:478.400000pt;}
.x37{left:490.879200pt;}
.x2a{left:493.038133pt;}
.x49{left:500.239467pt;}
.x30{left:501.600667pt;}
.x2b{left:505.195733pt;}
.x4a{left:512.397067pt;}
.x39{left:514.000000pt;}
.x3a{left:531.039333pt;}
.x16{left:558.478667pt;}
.x42{left:609.840667pt;}
.x32{left:614.320267pt;}
.x31{left:615.359733pt;}
.x51{left:616.720000pt;}
.x2e{left:624.479200pt;}
.x4e{left:631.677867pt;}
.x3b{left:632.960133pt;}
.x2d{left:636.878667pt;}
.x4c{left:644.080000pt;}
.x14{left:647.358187pt;}
.x3c{left:653.040267pt;}
.x4d{left:659.600267pt;}
}


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