
/* 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_7bdd90227f7e.woff")format("woff");}.ff2{font-family:ff2;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_8e5a33c947ab.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_3dc7e4b83a33.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_309a16c6828e.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_9a6e1f9c36ea.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_8bb7065bc0e4.woff")format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_8b4601701f74.woff")format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_692e3ba403e3.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_96d9be583fe0.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_f2d7a78c15d6.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_5c78e8a1e781.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-88.560000px;}
.v7{vertical-align:-68.758800px;}
.v5{vertical-align:-29.520000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.v6{vertical-align:53.280000px;}
.v4{vertical-align:83.880000px;}
.v3{vertical-align:93.602400px;}
.ls3b{letter-spacing:-1.202400px;}
.ls39{letter-spacing:-1.180800px;}
.ls3a{letter-spacing:-1.144800px;}
.ls3{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls62{letter-spacing:-0.114228px;}
.ls8{letter-spacing:-0.108000px;}
.ls5a{letter-spacing:-0.096192px;}
.ls1f{letter-spacing:-0.093600px;}
.ls2f{letter-spacing:-0.086400px;}
.ls57{letter-spacing:-0.084168px;}
.ls1c{letter-spacing:-0.079200px;}
.ls59{letter-spacing:-0.078156px;}
.ls36{letter-spacing:-0.078120px;}
.ls5d{letter-spacing:-0.072144px;}
.ls1e{letter-spacing:-0.072000px;}
.ls30{letter-spacing:-0.070308px;}
.ls5c{letter-spacing:-0.066132px;}
.ls1a{letter-spacing:-0.064800px;}
.ls55{letter-spacing:-0.060120px;}
.ls27{letter-spacing:-0.057600px;}
.ls19{letter-spacing:-0.054684px;}
.ls58{letter-spacing:-0.054108px;}
.ls1d{letter-spacing:-0.050400px;}
.ls53{letter-spacing:-0.048096px;}
.ls15{letter-spacing:-0.043200px;}
.ls5e{letter-spacing:-0.042084px;}
.ls12{letter-spacing:-0.039060px;}
.ls5f{letter-spacing:-0.036072px;}
.ls13{letter-spacing:-0.036000px;}
.ls38{letter-spacing:-0.031248px;}
.ls60{letter-spacing:-0.030060px;}
.ls14{letter-spacing:-0.028800px;}
.ls3e{letter-spacing:-0.025164px;}
.ls52{letter-spacing:-0.024048px;}
.ls34{letter-spacing:-0.023436px;}
.ls16{letter-spacing:-0.021600px;}
.ls56{letter-spacing:-0.018036px;}
.ls32{letter-spacing:-0.016776px;}
.ls17{letter-spacing:-0.014400px;}
.ls5b{letter-spacing:-0.012024px;}
.ls33{letter-spacing:-0.008388px;}
.ls28{letter-spacing:-0.007812px;}
.ls18{letter-spacing:-0.007200px;}
.ls54{letter-spacing:-0.006012px;}
.ls2{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.006012px;}
.ls1b{letter-spacing:0.007200px;}
.ls4c{letter-spacing:0.012024px;}
.lsb{letter-spacing:0.014400px;}
.ls63{letter-spacing:0.016776px;}
.ls64{letter-spacing:0.018036px;}
.ls2a{letter-spacing:0.021600px;}
.ls51{letter-spacing:0.024048px;}
.ls23{letter-spacing:0.028800px;}
.ls47{letter-spacing:0.030060px;}
.ls9{letter-spacing:0.031248px;}
.ls29{letter-spacing:0.036000px;}
.ls4b{letter-spacing:0.036072px;}
.lsa{letter-spacing:0.039060px;}
.ls65{letter-spacing:0.041940px;}
.ls22{letter-spacing:0.043200px;}
.ls20{letter-spacing:0.046872px;}
.ls46{letter-spacing:0.048096px;}
.ls25{letter-spacing:0.050328px;}
.ls42{letter-spacing:0.052704px;}
.ls50{letter-spacing:0.054108px;}
.ls37{letter-spacing:0.058716px;}
.ls2e{letter-spacing:0.059292px;}
.ls21{letter-spacing:0.062496px;}
.ls2d{letter-spacing:0.065880px;}
.ls24{letter-spacing:0.067104px;}
.ls4{letter-spacing:0.072000px;}
.ls31{letter-spacing:0.075492px;}
.ls2b{letter-spacing:0.085932px;}
.ls10{letter-spacing:0.086400px;}
.ls3f{letter-spacing:0.093600px;}
.ls48{letter-spacing:0.096192px;}
.ls1{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.114228px;}
.ls26{letter-spacing:0.117180px;}
.ls4d{letter-spacing:0.120240px;}
.lsf{letter-spacing:0.136800px;}
.lse{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.151200px;}
.ls6{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.324000px;}
.ls49{letter-spacing:7.893840px;}
.ls35{letter-spacing:13.464000px;}
.ls4e{letter-spacing:59.939640px;}
.ls61{letter-spacing:63.546840px;}
.ls4a{letter-spacing:66.913560px;}
.ls40{letter-spacing:346.478400px;}
.ls41{letter-spacing:461.318400px;}
.ls45{letter-spacing:495.878400px;}
.ls3d{letter-spacing:687.024000px;}
.ls44{letter-spacing:753.264000px;}
.lsc{letter-spacing:950.544000px;}
.ls43{letter-spacing:973.584000px;}
.ls3c{letter-spacing:1085.544000px;}
.ls2c{letter-spacing:1172.565360px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-26.676000px;}
.ws5a{word-spacing:-20.023200px;}
.wsc{word-spacing:-19.972800px;}
.wsd{word-spacing:-19.944000px;}
.wse{word-spacing:-19.922400px;}
.ws0{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.wsec{word-spacing:-13.755456px;}
.wsed{word-spacing:-13.647240px;}
.wsb{word-spacing:-1.260000px;}
.ws35{word-spacing:-0.523404px;}
.ws9{word-spacing:-0.432000px;}
.wsd8{word-spacing:-0.429660px;}
.wsf3{word-spacing:-0.420840px;}
.ws10f{word-spacing:-0.408816px;}
.wsfb{word-spacing:-0.384768px;}
.ws10a{word-spacing:-0.378756px;}
.ws10{word-spacing:-0.374976px;}
.ws12{word-spacing:-0.367164px;}
.ws13{word-spacing:-0.335916px;}
.ws11{word-spacing:-0.312480px;}
.ws9a{word-spacing:-0.257796px;}
.ws29{word-spacing:-0.218736px;}
.ws7{word-spacing:-0.216000px;}
.wsf{word-spacing:-0.203112px;}
.ws2a{word-spacing:-0.148428px;}
.ws96{word-spacing:-0.132804px;}
.ws8{word-spacing:-0.108000px;}
.wsb8{word-spacing:-0.093744px;}
.wse0{word-spacing:-0.079200px;}
.ws4{word-spacing:-0.072000px;}
.wscf{word-spacing:-0.062496px;}
.ws106{word-spacing:-0.054108px;}
.wsfa{word-spacing:-0.042084px;}
.ws107{word-spacing:-0.036072px;}
.ws88{word-spacing:-0.031248px;}
.ws76{word-spacing:-0.028800px;}
.wsf0{word-spacing:-0.024048px;}
.wsb9{word-spacing:-0.023436px;}
.wsdf{word-spacing:-0.014400px;}
.ws103{word-spacing:-0.012024px;}
.ws77{word-spacing:-0.006588px;}
.wsef{word-spacing:-0.006012px;}
.ws3{word-spacing:0.000000px;}
.wsff{word-spacing:0.006012px;}
.wse7{word-spacing:0.006588px;}
.wsfe{word-spacing:0.012024px;}
.ws94{word-spacing:0.016776px;}
.wsf2{word-spacing:0.018036px;}
.wsf5{word-spacing:0.024048px;}
.ws28{word-spacing:0.025164px;}
.wsf1{word-spacing:0.030060px;}
.ws10d{word-spacing:0.033552px;}
.wsf9{word-spacing:0.036072px;}
.wsfc{word-spacing:0.042084px;}
.wsa2{word-spacing:0.043200px;}
.wsfd{word-spacing:0.048096px;}
.ws10e{word-spacing:0.050328px;}
.wsf4{word-spacing:0.054108px;}
.ws32{word-spacing:0.064800px;}
.wsf8{word-spacing:0.066132px;}
.ws2f{word-spacing:0.072000px;}
.ws10b{word-spacing:0.084168px;}
.wsde{word-spacing:0.086400px;}
.wsee{word-spacing:0.092268px;}
.ws31{word-spacing:0.093600px;}
.ws78{word-spacing:0.100800px;}
.ws7f{word-spacing:0.108000px;}
.wse8{word-spacing:0.122400px;}
.wse5{word-spacing:0.136800px;}
.ws5{word-spacing:0.144000px;}
.ws6d{word-spacing:0.151200px;}
.ws59{word-spacing:0.158400px;}
.ws10c{word-spacing:0.159372px;}
.ws1b{word-spacing:0.165600px;}
.ws1a{word-spacing:0.172800px;}
.ws33{word-spacing:0.180000px;}
.ws2e{word-spacing:0.187200px;}
.ws1d{word-spacing:0.194400px;}
.ws26{word-spacing:0.201600px;}
.ws6{word-spacing:0.216000px;}
.ws1c{word-spacing:0.223200px;}
.ws25{word-spacing:0.237600px;}
.ws42{word-spacing:0.244800px;}
.ws34{word-spacing:0.259200px;}
.ws79{word-spacing:0.273600px;}
.ws7e{word-spacing:0.280800px;}
.ws95{word-spacing:0.285192px;}
.ws30{word-spacing:0.302400px;}
.wsb7{word-spacing:0.309600px;}
.wsa{word-spacing:0.324000px;}
.wsea{word-spacing:0.403200px;}
.ws74{word-spacing:0.554400px;}
.wseb{word-spacing:0.576000px;}
.ws49{word-spacing:0.885600px;}
.ws48{word-spacing:0.900000px;}
.wsc4{word-spacing:1.252800px;}
.wsc3{word-spacing:1.368000px;}
.ws17{word-spacing:1.598400px;}
.ws16{word-spacing:1.728000px;}
.wsa6{word-spacing:1.987200px;}
.wsa5{word-spacing:2.001600px;}
.ws14{word-spacing:2.030400px;}
.ws15{word-spacing:2.102400px;}
.ws64{word-spacing:2.296800px;}
.ws63{word-spacing:2.318400px;}
.ws2b{word-spacing:2.448000px;}
.ws2d{word-spacing:2.455200px;}
.ws2c{word-spacing:2.606400px;}
.ws8e{word-spacing:2.685600px;}
.ws8d{word-spacing:2.728800px;}
.ws58{word-spacing:3.103200px;}
.ws57{word-spacing:3.146400px;}
.wsb1{word-spacing:3.744000px;}
.wsaf{word-spacing:3.780000px;}
.wsb0{word-spacing:3.902400px;}
.ws18{word-spacing:4.010400px;}
.ws19{word-spacing:4.089600px;}
.ws54{word-spacing:4.795200px;}
.wsc6{word-spacing:4.838400px;}
.wsbd{word-spacing:4.845600px;}
.ws53{word-spacing:4.867200px;}
.wsc5{word-spacing:4.896000px;}
.ws89{word-spacing:6.624000px;}
.wsd1{word-spacing:6.638400px;}
.ws8a{word-spacing:6.681600px;}
.wsd0{word-spacing:6.717600px;}
.ws40{word-spacing:6.760800px;}
.ws41{word-spacing:6.789600px;}
.wsc9{word-spacing:7.012800px;}
.ws52{word-spacing:7.322400px;}
.ws67{word-spacing:7.365600px;}
.ws51{word-spacing:7.416000px;}
.ws50{word-spacing:7.624800px;}
.ws68{word-spacing:7.632000px;}
.ws47{word-spacing:7.682400px;}
.ws46{word-spacing:7.704000px;}
.ws4f{word-spacing:7.718400px;}
.wsac{word-spacing:7.732800px;}
.ws4e{word-spacing:7.840800px;}
.ws45{word-spacing:7.977600px;}
.wsae{word-spacing:9.151200px;}
.ws93{word-spacing:9.165600px;}
.ws92{word-spacing:9.194400px;}
.wsc8{word-spacing:9.252000px;}
.wsad{word-spacing:9.288000px;}
.ws83{word-spacing:9.554400px;}
.ws82{word-spacing:9.561600px;}
.ws84{word-spacing:9.885600px;}
.ws80{word-spacing:9.921600px;}
.ws81{word-spacing:10.000800px;}
.wsce{word-spacing:10.929600px;}
.ws73{word-spacing:10.958400px;}
.wscd{word-spacing:10.965600px;}
.ws37{word-spacing:10.987200px;}
.ws36{word-spacing:11.001600px;}
.ws72{word-spacing:11.073600px;}
.ws38{word-spacing:11.145600px;}
.wsbc{word-spacing:11.340000px;}
.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;}
.wsbe{word-spacing:12.405600px;}
.wsbf{word-spacing:12.448800px;}
.ws6a{word-spacing:12.780000px;}
.wscb{word-spacing:12.794400px;}
.wscc{word-spacing:12.895200px;}
.ws69{word-spacing:12.909600px;}
.ws55{word-spacing:13.132800px;}
.ws56{word-spacing:13.147200px;}
.wsd2{word-spacing:13.514400px;}
.wsd4{word-spacing:13.521600px;}
.wsd3{word-spacing:13.550400px;}
.wsd5{word-spacing:13.586400px;}
.ws4c{word-spacing:13.860000px;}
.ws4d{word-spacing:14.025600px;}
.ws3d{word-spacing:14.925600px;}
.ws97{word-spacing:14.954400px;}
.ws3b{word-spacing:15.040800px;}
.ws3c{word-spacing:15.069600px;}
.ws61{word-spacing:15.645600px;}
.ws62{word-spacing:15.667200px;}
.ws71{word-spacing:15.681600px;}
.wsca{word-spacing:15.818400px;}
.wsab{word-spacing:16.358400px;}
.wsaa{word-spacing:16.380000px;}
.ws8c{word-spacing:16.790400px;}
.ws8b{word-spacing:16.833600px;}
.ws86{word-spacing:17.784000px;}
.ws3f{word-spacing:17.812800px;}
.ws3e{word-spacing:17.820000px;}
.ws85{word-spacing:17.834400px;}
.ws87{word-spacing:17.935200px;}
.ws23{word-spacing:18.072000px;}
.wsa4{word-spacing:20.332800px;}
.wsa3{word-spacing:20.347200px;}
.ws7d{word-spacing:22.147200px;}
.ws7c{word-spacing:22.233600px;}
.ws6f{word-spacing:22.507200px;}
.ws6e{word-spacing:22.579200px;}
.ws70{word-spacing:22.824000px;}
.ws5d{word-spacing:22.838400px;}
.ws7b{word-spacing:24.292800px;}
.wsc2{word-spacing:24.307200px;}
.wsc0{word-spacing:24.321600px;}
.ws7a{word-spacing:24.350400px;}
.wsc1{word-spacing:24.681600px;}
.ws60{word-spacing:25.329600px;}
.ws5f{word-spacing:25.430400px;}
.wsba{word-spacing:25.761600px;}
.wsbb{word-spacing:25.783200px;}
.ws6c{word-spacing:26.474400px;}
.wse3{word-spacing:26.798400px;}
.ws90{word-spacing:26.805600px;}
.ws8f{word-spacing:26.827200px;}
.wse4{word-spacing:26.841600px;}
.ws91{word-spacing:26.913600px;}
.wsd6{word-spacing:27.108000px;}
.wsd7{word-spacing:27.172800px;}
.wsb5{word-spacing:27.900000px;}
.wsb6{word-spacing:27.928800px;}
.wsa7{word-spacing:28.224000px;}
.wsa9{word-spacing:28.252800px;}
.wsa8{word-spacing:28.432800px;}
.ws9b{word-spacing:28.576800px;}
.ws9c{word-spacing:28.591200px;}
.ws9f{word-spacing:28.627200px;}
.wsa0{word-spacing:28.706400px;}
.wsc7{word-spacing:30.801600px;}
.ws39{word-spacing:31.795200px;}
.ws3a{word-spacing:31.989600px;}
.ws65{word-spacing:34.718400px;}
.ws66{word-spacing:34.740000px;}
.ws5e{word-spacing:37.274400px;}
.ws43{word-spacing:38.700000px;}
.ws44{word-spacing:38.728800px;}
.ws99{word-spacing:41.212800px;}
.ws98{word-spacing:41.241600px;}
.wsb2{word-spacing:42.991200px;}
.wsb3{word-spacing:43.005600px;}
.wsb4{word-spacing:43.221600px;}
.wse2{word-spacing:50.220000px;}
.wse1{word-spacing:50.234400px;}
.wsdd{word-spacing:50.882400px;}
.wsdc{word-spacing:50.918400px;}
.ws9d{word-spacing:51.998400px;}
.ws9e{word-spacing:52.092000px;}
.ws5c{word-spacing:52.372800px;}
.ws5b{word-spacing:54.885600px;}
.wsd9{word-spacing:62.460000px;}
.ws6b{word-spacing:62.467200px;}
.ws4a{word-spacing:64.951200px;}
.ws4b{word-spacing:65.008800px;}
.ws109{word-spacing:67.003740px;}
.wsf7{word-spacing:67.009752px;}
.ws108{word-spacing:83.194056px;}
.wsdb{word-spacing:87.602400px;}
.wsda{word-spacing:87.868800px;}
.wsa1{word-spacing:108.165600px;}
.ws105{word-spacing:141.756948px;}
.ws102{word-spacing:141.762960px;}
.ws104{word-spacing:141.805044px;}
.ws101{word-spacing:141.817068px;}
.ws100{word-spacing:141.823080px;}
.wsf6{word-spacing:141.835104px;}
.wse9{word-spacing:346.449600px;}
.wse6{word-spacing:346.485600px;}
.ws75{word-spacing:768.589020px;}
._19{margin-left:-768.582960px;}
._3b{margin-left:-346.320600px;}
._38{margin-left:-324.360600px;}
._3c{margin-left:-214.921800px;}
._4f{margin-left:-145.801200px;}
._2f{margin-left:-94.680600px;}
._56{margin-left:-83.145960px;}
._4e{margin-left:-69.539400px;}
._52{margin-left:-66.973680px;}
._3a{margin-left:-58.737000px;}
._17{margin-left:-35.640000px;}
._47{margin-left:-25.560600px;}
._58{margin-left:-13.707360px;}
._7{margin-left:-11.880000px;}
._13{margin-left:-10.080000px;}
._15{margin-left:-2.160000px;}
._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;}
._25{width:25.560000px;}
._28{width:31.219200px;}
._24{width:36.720000px;}
._11{width:38.880000px;}
._18{width:39.888000px;}
._16{width:41.976000px;}
._14{width:47.016000px;}
._8{width:51.120000px;}
._1d{width:52.560000px;}
._12{width:54.720000px;}
._31{width:56.103600px;}
._1a{width:57.354600px;}
._d{width:59.040000px;}
._23{width:60.480000px;}
._4{width:63.000000px;}
._20{width:64.077600px;}
._26{width:65.664000px;}
._55{width:66.973680px;}
._57{width:69.498720px;}
._5{width:71.280000px;}
._1e{width:76.104000px;}
._2b{width:77.760600px;}
._2{width:79.200000px;}
._f{width:83.160000px;}
._4c{width:97.919400px;}
._3e{width:106.441800px;}
._54{width:114.479964px;}
._51{width:130.201800px;}
._2c{width:131.399400px;}
._53{width:141.840756px;}
._50{width:155.510400px;}
._27{width:192.240000px;}
._41{width:200.519400px;}
._22{width:204.453000px;}
._3d{width:224.991000px;}
._29{width:248.443200px;}
._32{width:251.644800px;}
._2a{width:270.216000px;}
._40{width:274.910400px;}
._3f{width:301.478400px;}
._49{width:320.764800px;}
._44{width:338.042400px;}
._37{width:346.320000px;}
._42{width:354.631200px;}
._35{width:407.541000px;}
._46{width:418.521600px;}
._2d{width:423.751200px;}
._2e{width:432.717600px;}
._36{width:452.225400px;}
._43{width:456.117600px;}
._21{width:468.355200px;}
._45{width:476.364600px;}
._4a{width:477.366000px;}
._1f{width:552.594600px;}
._33{width:589.326000px;}
._1c{width:599.758716px;}
._1b{width:684.355116px;}
._34{width:686.631000px;}
._4d{width:714.602400px;}
._4b{width:752.871000px;}
._39{width:818.640000px;}
._48{width:863.999400px;}
._30{width:933.479400px;}
.fc2{color:rgb(15,36,62);}
.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;}
.y1f{bottom:44.100000px;}
.y1e{bottom:66.060000px;}
.yf9{bottom:70.589700px;}
.y1d{bottom:86.580000px;}
.ybe{bottom:93.900450px;}
.y6d{bottom:99.030450px;}
.y1c{bottom:106.920000px;}
.ybd{bottom:114.870450px;}
.y6c{bottom:120.000450px;}
.y1b{bottom:127.260000px;}
.ybc{bottom:135.840450px;}
.y6b{bottom:141.060450px;}
.ye7{bottom:144.030450px;}
.y1a{bottom:147.600000px;}
.ybb{bottom:156.900450px;}
.y6a{bottom:162.030450px;}
.y19{bottom:168.120000px;}
.ye6{bottom:174.000450px;}
.y1c4{bottom:175.890450px;}
.y69{bottom:183.000450px;}
.yba{bottom:187.059690px;}
.y18{bottom:188.460000px;}
.ye5{bottom:195.060450px;}
.y1c3{bottom:206.220600px;}
.y17{bottom:208.800000px;}
.yb9{bottom:209.460600px;}
.y68{bottom:213.060450px;}
.ye4{bottom:216.030450px;}
.y1c2{bottom:223.410450px;}
.y94{bottom:225.030450px;}
.y16{bottom:229.140000px;}
.y67{bottom:234.030450px;}
.ye3{bottom:237.000450px;}
.y1c1{bottom:241.410600px;}
.y93{bottom:245.730450px;}
.y155{bottom:247.890600px;}
.y15{bottom:249.660000px;}
.yb8{bottom:249.690450px;}
.ye2{bottom:258.060450px;}
.y1c0{bottom:258.600450px;}
.y66{bottom:264.000450px;}
.y154{bottom:265.080450px;}
.y95{bottom:266.250450px;}
.y92{bottom:266.340450px;}
.y14{bottom:270.000000px;}
.yb7{bottom:270.750450px;}
.y18b{bottom:271.740600px;}
.y1bf{bottom:276.510600px;}
.y153{bottom:282.990450px;}
.y65{bottom:285.060450px;}
.y91{bottom:287.040450px;}
.ye1{bottom:288.219540px;}
.y18a{bottom:288.930450px;}
.y13{bottom:290.340000px;}
.yb6{bottom:291.720450px;}
.y1be{bottom:293.790600px;}
.y152{bottom:300.270450px;}
.y64{bottom:306.030450px;}
.y189{bottom:306.930600px;}
.y90{bottom:307.740450px;}
.ye0{bottom:310.620450px;}
.y12{bottom:310.860000px;}
.y1bd{bottom:310.980450px;}
.y43{bottom:317.820450px;}
.y151{bottom:318.176280px;}
.yb5{bottom:321.879540px;}
.y188{bottom:324.120450px;}
.y8f{bottom:328.440450px;}
.y1bc{bottom:328.980600px;}
.y11{bottom:331.200000px;}
.y150{bottom:335.370600px;}
.y63{bottom:336.000450px;}
.y42{bottom:338.790450px;}
.y187{bottom:342.030750px;}
.yb4{bottom:344.280450px;}
.y1bb{bottom:346.170450px;}
.y8e{bottom:349.140450px;}
.ydf{bottom:350.850450px;}
.y10{bottom:351.540000px;}
.y14f{bottom:352.650600px;}
.y62{bottom:357.060450px;}
.y186{bottom:359.310750px;}
.y1ba{bottom:364.080450px;}
.y41{bottom:368.850450px;}
.y8d{bottom:369.840450px;}
.yf{bottom:371.880000px;}
.yde{bottom:371.910450px;}
.y185{bottom:376.500600px;}
.y61{bottom:378.030450px;}
.y1b9{bottom:381.360450px;}
.yb3{bottom:385.140450px;}
.y14e{bottom:387.840600px;}
.y40{bottom:389.820450px;}
.y8c{bottom:390.990450px;}
.ye{bottom:391.500000px;}
.ydd{bottom:392.880450px;}
.y184{bottom:394.410450px;}
.y60{bottom:399.000450px;}
.y1b8{bottom:399.270750px;}
.y14d{bottom:405.030450px;}
.y3f{bottom:410.790450px;}
.y183{bottom:411.690450px;}
.yd{bottom:412.560000px;}
.ydc{bottom:413.850450px;}
.y8b{bottom:414.300390px;}
.y1b7{bottom:416.460600px;}
.yb2{bottom:418.260450px;}
.y5f{bottom:420.060450px;}
.y14c{bottom:422.940450px;}
.y182{bottom:429.600750px;}
.y3e{bottom:431.850450px;}
.y8a{bottom:433.290300px;}
.y1b6{bottom:434.460600px;}
.ydb{bottom:434.910450px;}
.y14b{bottom:440.220450px;}
.yc{bottom:441.540000px;}
.y181{bottom:446.790600px;}
.y5e{bottom:450.030450px;}
.yb1{bottom:450.840450px;}
.y1b5{bottom:451.650450px;}
.y14a{bottom:458.130600px;}
.y3d{bottom:461.820450px;}
.y180{bottom:464.790600px;}
.yda{bottom:464.880450px;}
.y1b4{bottom:469.649100px;}
.y5d{bottom:471.000450px;}
.y89{bottom:471.090600px;}
.y149{bottom:475.320450px;}
.yb{bottom:479.340000px;}
.yb0{bottom:480.900450px;}
.y17f{bottom:481.980450px;}
.y3c{bottom:482.790450px;}
.yd9{bottom:485.850450px;}
.y1b3{bottom:487.919550px;}
.y88{bottom:491.250450px;}
.y5c{bottom:492.060450px;}
.y148{bottom:493.320600px;}
.y17e{bottom:499.980600px;}
.y3b{bottom:503.850450px;}
.y1b2{bottom:506.095350px;}
.yd8{bottom:506.910450px;}
.y147{bottom:510.510450px;}
.yaf{bottom:510.870450px;}
.y87{bottom:511.950450px;}
.y5b{bottom:513.030450px;}
.ya{bottom:517.140000px;}
.y17d{bottom:517.170450px;}
.y1b1{bottom:523.379850px;}
.y3a{bottom:524.820450px;}
.yd7{bottom:527.880450px;}
.y146{bottom:528.509400px;}
.yae{bottom:531.840450px;}
.y86{bottom:532.650450px;}
.y5a{bottom:534.000450px;}
.y17c{bottom:535.169100px;}
.y1b0{bottom:541.555650px;}
.y39{bottom:545.790450px;}
.y145{bottom:546.685200px;}
.yd6{bottom:548.850450px;}
.yad{bottom:552.900450px;}
.y85{bottom:553.350450px;}
.y17b{bottom:553.439550px;}
.y9{bottom:554.940000px;}
.y59{bottom:555.060450px;}
.y1af{bottom:558.840150px;}
.y144{bottom:563.969700px;}
.y38{bottom:566.850450px;}
.yf7{bottom:567.030450px;}
.yd5{bottom:569.910450px;}
.y17a{bottom:571.615350px;}
.yac{bottom:573.870450px;}
.y84{bottom:574.409850px;}
.y1ae{bottom:577.020450px;}
.y10e{bottom:578.550450px;}
.y143{bottom:582.240150px;}
.y58{bottom:585.219540px;}
.y37{bottom:587.820450px;}
.y179{bottom:588.899850px;}
.yd4{bottom:590.880450px;}
.y8{bottom:592.740000px;}
.yf6{bottom:593.580450px;}
.y1ad{bottom:595.017600px;}
.y124{bottom:596.190450px;}
.y83{bottom:597.810450px;}
.y142{bottom:600.420450px;}
.y10d{bottom:602.310450px;}
.yab{bottom:604.029540px;}
.y178{bottom:607.075680px;}
.y57{bottom:607.620450px;}
.yd3{bottom:611.850450px;}
.y1ac{bottom:613.197900px;}
.y36{bottom:617.790450px;}
.y141{bottom:618.418650px;}
.yf5{bottom:620.580450px;}
.y123{bottom:622.560450px;}
.y177{bottom:624.270000px;}
.yaa{bottom:626.430450px;}
.y7{bottom:626.580000px;}
.y1ab{bottom:631.468350px;}
.yd2{bottom:632.910450px;}
.y10c{bottom:633.090450px;}
.y140{bottom:636.689100px;}
.y35{bottom:638.850450px;}
.y176{bottom:642.540450px;}
.yf4{bottom:647.580450px;}
.y56{bottom:647.850450px;}
.y1aa{bottom:649.738800px;}
.y6{bottom:651.780000px;}
.y122{bottom:653.340450px;}
.y82{bottom:653.880450px;}
.y13f{bottom:654.869400px;}
.y34{bottom:659.820450px;}
.y175{bottom:660.537600px;}
.y10b{bottom:661.890450px;}
.ya9{bottom:666.750450px;}
.y1a9{bottom:667.914600px;}
.y55{bottom:668.910450px;}
.y13e{bottom:673.139850px;}
.yf3{bottom:674.580450px;}
.y81{bottom:674.850450px;}
.y5{bottom:676.980000px;}
.y174{bottom:678.717750px;}
.y33{bottom:680.790450px;}
.y121{bottom:682.140450px;}
.y10a{bottom:682.590450px;}
.yd1{bottom:684.039540px;}
.y1a8{bottom:685.199100px;}
.ya8{bottom:687.720450px;}
.y54{bottom:689.880450px;}
.y13d{bottom:691.320150px;}
.y173{bottom:696.988350px;}
.yf2{bottom:701.580450px;}
.y32{bottom:701.850450px;}
.y4{bottom:702.180000px;}
.y120{bottom:702.840450px;}
.y109{bottom:703.290450px;}
.y1a7{bottom:703.379400px;}
.y80{bottom:704.910450px;}
.yd0{bottom:706.440450px;}
.y13c{bottom:708.505350px;}
.ya7{bottom:708.690450px;}
.y53{bottom:710.850450px;}
.y172{bottom:715.258800px;}
.y1a6{bottom:720.569100px;}
.y31{bottom:722.820450px;}
.y11f{bottom:725.520450px;}
.y13b{bottom:725.789850px;}
.y7f{bottom:725.880450px;}
.y3{bottom:727.380000px;}
.yf1{bottom:728.580450px;}
.y171{bottom:733.434480px;}
.y1a5{bottom:738.839550px;}
.ya6{bottom:738.849540px;}
.y52{bottom:740.910450px;}
.y30{bottom:743.790450px;}
.y13a{bottom:743.965650px;}
.ycf{bottom:746.670450px;}
.y7e{bottom:746.850450px;}
.y170{bottom:750.628800px;}
.yf0{bottom:755.580450px;}
.y11e{bottom:756.210450px;}
.y2{bottom:756.540000px;}
.y108{bottom:756.660450px;}
.y1a4{bottom:757.015350px;}
.y139{bottom:761.250150px;}
.ya5{bottom:761.250450px;}
.y51{bottom:761.880450px;}
.y2f{bottom:764.850450px;}
.yce{bottom:767.730450px;}
.y16f{bottom:768.899250px;}
.y1a3{bottom:774.299850px;}
.y7d{bottom:776.910450px;}
.y138{bottom:779.417010px;}
.y50{bottom:782.850450px;}
.y11d{bottom:785.100450px;}
.y107{bottom:785.460600px;}
.yef{bottom:785.550450px;}
.y2e{bottom:785.820450px;}
.y16e{bottom:786.089100px;}
.ycd{bottom:788.700450px;}
.y1a2{bottom:792.570300px;}
.y137{bottom:796.611330px;}
.y7c{bottom:797.880450px;}
.ya4{bottom:801.570450px;}
.y16d{bottom:804.359550px;}
.y11c{bottom:805.800450px;}
.y106{bottom:806.160600px;}
.y2d{bottom:806.790450px;}
.ycc{bottom:809.670450px;}
.y1a1{bottom:810.750600px;}
.y4f{bottom:813.001890px;}
.y136{bottom:813.895830px;}
.yee{bottom:815.610450px;}
.y16c{bottom:822.535350px;}
.ya3{bottom:822.540450px;}
.y105{bottom:826.860600px;}
.y1a0{bottom:827.940450px;}
.y7b{bottom:828.039540px;}
.y11b{bottom:828.390450px;}
.ycb{bottom:830.730450px;}
.y135{bottom:831.090150px;}
.y4e{bottom:835.500450px;}
.y2c{bottom:836.850450px;}
.y16b{bottom:839.819850px;}
.ya2{bottom:843.510450px;}
.yed{bottom:845.580450px;}
.y199{bottom:845.937030px;}
.y134{bottom:849.265800px;}
.y104{bottom:849.540600px;}
.y7a{bottom:850.440450px;}
.y16a{bottom:858.090300px;}
.y11a{bottom:859.170450px;}
.yca{bottom:860.700450px;}
.ya1{bottom:864.570450px;}
.y133{bottom:866.550300px;}
.yec{bottom:866.550450px;}
.y4d{bottom:875.730450px;}
.y169{bottom:876.270600px;}
.y103{bottom:880.230450px;}
.y198{bottom:880.321200px;}
.yc9{bottom:881.670450px;}
.y132{bottom:884.730600px;}
.yeb{bottom:887.610450px;}
.y119{bottom:889.860600px;}
.y79{bottom:890.670450px;}
.y168{bottom:893.460450px;}
.ya0{bottom:895.350450px;}
.y4c{bottom:896.700450px;}
.y197{bottom:897.511050px;}
.y19f{bottom:897.512550px;}
.y2b{bottom:898.230450px;}
.y131{bottom:902.010600px;}
.yc8{bottom:902.730450px;}
.yea{bottom:908.580450px;}
.y101{bottom:911.010450px;}
.y78{bottom:911.730450px;}
.y196{bottom:914.791050px;}
.y19e{bottom:914.792550px;}
.y9f{bottom:916.050450px;}
.y102{bottom:918.390450px;}
.y130{bottom:919.200450px;}
.y118{bottom:920.640450px;}
.yc7{bottom:923.700450px;}
.y4b{bottom:926.851890px;}
.y2a{bottom:928.200450px;}
.y161{bottom:928.651350px;}
.y195{bottom:931.980900px;}
.y19d{bottom:931.982400px;}
.y9e{bottom:936.750450px;}
.y12e{bottom:937.106550px;}
.ye9{bottom:938.550450px;}
.y77{bottom:941.700450px;}
.y100{bottom:941.790600px;}
.yc6{bottom:944.670450px;}
.y160{bottom:945.841200px;}
.y167{bottom:945.842700px;}
.y19c{bottom:949.172100px;}
.y4a{bottom:949.350450px;}
.y117{bottom:949.440450px;}
.y12d{bottom:954.391050px;}
.y9d{bottom:957.450450px;}
.y29{bottom:958.260450px;}
.y76{bottom:962.670450px;}
.y115{bottom:962.760450px;}
.y15f{bottom:963.031050px;}
.y166{bottom:963.032550px;}
.y194{bottom:966.360450px;}
.y19b{bottom:966.361950px;}
.ye8{bottom:968.610450px;}
.y116{bottom:970.140450px;}
.y12f{bottom:971.580900px;}
.yff{bottom:972.480450px;}
.yc5{bottom:974.730450px;}
.y9c{bottom:978.150450px;}
.y28{bottom:978.960450px;}
.y15e{bottom:980.311050px;}
.y165{bottom:980.312550px;}
.y193{bottom:983.640450px;}
.y19a{bottom:983.641950px;}
.y75{bottom:983.730450px;}
.y12c{bottom:988.770600px;}
.y49{bottom:989.580450px;}
.y114{bottom:993.540600px;}
.yc4{bottom:995.700450px;}
.y164{bottom:997.502400px;}
.y9b{bottom:999.300600px;}
.y27{bottom:999.660450px;}
.y192{bottom:1001.546280px;}
.yfe{bottom:1003.260450px;}
.y74{bottom:1004.700450px;}
.y12b{bottom:1005.960450px;}
.y48{bottom:1010.550450px;}
.y15d{bottom:1014.690600px;}
.y163{bottom:1014.692100px;}
.y190{bottom:1018.740600px;}
.y26{bottom:1020.360450px;}
.y9a{bottom:1022.610540px;}
.y129{bottom:1023.960750px;}
.y113{bottom:1024.320450px;}
.y73{bottom:1025.670450px;}
.y15c{bottom:1031.880450px;}
.y162{bottom:1031.881950px;}
.yfd{bottom:1034.040450px;}
.yc3{bottom:1035.480450px;}
.y191{bottom:1036.016130px;}
.y18f{bottom:1036.020600px;}
.y47{bottom:1040.701890px;}
.y25{bottom:1041.060450px;}
.y12a{bottom:1041.146130px;}
.y128{bottom:1041.150600px;}
.y99{bottom:1041.600450px;}
.y15b{bottom:1049.876280px;}
.y18e{bottom:1053.210450px;}
.y112{bottom:1055.010450px;}
.y72{bottom:1055.730450px;}
.yc2{bottom:1056.450450px;}
.y127{bottom:1058.340450px;}
.y46{bottom:1063.200450px;}
.yfc{bottom:1064.010450px;}
.y159{bottom:1067.070600px;}
.y24{bottom:1071.208350px;}
.y18d{bottom:1075.710450px;}
.y71{bottom:1076.700450px;}
.y126{bottom:1080.840450px;}
.y15a{bottom:1084.255950px;}
.y158{bottom:1084.260450px;}
.y111{bottom:1085.070450px;}
.yc1{bottom:1087.230450px;}
.y98{bottom:1088.670450px;}
.y23{bottom:1093.638630px;}
.y70{bottom:1097.670450px;}
.yfb{bottom:1101.270450px;}
.y157{bottom:1101.540450px;}
.y45{bottom:1103.970450px;}
.yc0{bottom:1108.200450px;}
.y97{bottom:1109.730450px;}
.y18c{bottom:1112.974950px;}
.y22{bottom:1116.039540px;}
.y125{bottom:1117.200450px;}
.y6f{bottom:1118.730450px;}
.y110{bottom:1122.329340px;}
.y156{bottom:1123.950450px;}
.y96{bottom:1130.700450px;}
.yfa{bottom:1132.680450px;}
.y44{bottom:1137.090450px;}
.y21{bottom:1138.440450px;}
.ybf{bottom:1138.890450px;}
.y6e{bottom:1139.700450px;}
.y10f{bottom:1141.319250px;}
.yf8{bottom:1193.700450px;}
.y20{bottom:1195.140450px;}
.y1{bottom:1247.400000px;}
.h5{height:50.832000px;}
.h7{height:59.722560px;}
.h8{height:62.703281px;}
.h11{height:64.148040px;}
.hc{height:68.710781px;}
.h3{height:70.628906px;}
.hf{height:70.664062px;}
.ha{height:75.093750px;}
.h4{height:76.248000px;}
.h9{height:81.476719px;}
.hb{height:87.484219px;}
.h6{height:115.992000px;}
.h10{height:128.373750px;}
.he{height:158.973750px;}
.hd{height:162.313181px;}
.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;}
.x30{left:109.170000px;}
.x13{left:111.510000px;}
.x5{left:118.179540px;}
.x32{left:147.059100px;}
.xf{left:148.860000px;}
.x3f{left:154.889700px;}
.x20{left:156.960000px;}
.x1f{left:160.290000px;}
.x31{left:162.179250px;}
.x11{left:175.590000px;}
.x1e{left:177.836130px;}
.x47{left:181.889700px;}
.x4{left:184.230000px;}
.x40{left:191.341980px;}
.x48{left:208.883580px;}
.x14{left:217.882650px;}
.x22{left:242.016750px;}
.x1c{left:246.420300px;}
.x33{left:249.658350px;}
.x23{left:254.159370px;}
.xc{left:263.338470px;}
.x2c{left:271.080000px;}
.x34{left:277.738950px;}
.x27{left:288.805590px;}
.x1d{left:309.409740px;}
.x10{left:326.693790px;}
.x26{left:331.559700px;}
.x24{left:346.223790px;}
.x35{left:353.248200px;}
.x6{left:360.810450px;}
.x4f{left:367.648500px;}
.x36{left:371.069250px;}
.x19{left:374.405580px;}
.xe{left:375.479730px;}
.xd{left:378.721710px;}
.xa{left:384.659250px;}
.x1a{left:386.279820px;}
.x17{left:409.229250px;}
.x12{left:412.293780px;}
.x25{left:416.700000px;}
.x1b{left:419.580000px;}
.x9{left:422.550000px;}
.x3{left:423.720000px;}
.xb{left:427.410000px;}
.x38{left:441.444240px;}
.x37{left:443.879100px;}
.x7{left:446.490000px;}
.x21{left:465.211800px;}
.x28{left:531.090000px;}
.x4a{left:539.005440px;}
.x49{left:547.828050px;}
.x3b{left:550.527450px;}
.x39{left:552.957750px;}
.x43{left:560.520900px;}
.x41{left:561.870600px;}
.x3a{left:566.635050px;}
.x2f{left:581.040000px;}
.x29{left:584.550000px;}
.x2d{left:586.080000px;}
.x42{left:594.990750px;}
.x15{left:621.810000px;}
.x2a{left:666.810000px;}
.x18{left:685.710000px;}
.x4d{left:691.109100px;}
.x2b{left:692.730000px;}
.x2e{left:698.580000px;}
.x44{left:701.730750px;}
.x16{left:706.860000px;}
.x50{left:709.650000px;}
.x3e{left:712.708650px;}
.x4b{left:716.128050px;}
.x4e{left:721.618500px;}
.x3c{left:726.748200px;}
.x46{left:728.820900px;}
.x45{left:732.240150px;}
.x4c{left:733.588350px;}
.x3d{left:744.208500px;}
@media print{
.v2{vertical-align:-78.720000pt;}
.v7{vertical-align:-61.118933pt;}
.v5{vertical-align:-26.240000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.v6{vertical-align:47.360000pt;}
.v4{vertical-align:74.560000pt;}
.v3{vertical-align:83.202133pt;}
.ls3b{letter-spacing:-1.068800pt;}
.ls39{letter-spacing:-1.049600pt;}
.ls3a{letter-spacing:-1.017600pt;}
.ls3{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls62{letter-spacing:-0.101536pt;}
.ls8{letter-spacing:-0.096000pt;}
.ls5a{letter-spacing:-0.085504pt;}
.ls1f{letter-spacing:-0.083200pt;}
.ls2f{letter-spacing:-0.076800pt;}
.ls57{letter-spacing:-0.074816pt;}
.ls1c{letter-spacing:-0.070400pt;}
.ls59{letter-spacing:-0.069472pt;}
.ls36{letter-spacing:-0.069440pt;}
.ls5d{letter-spacing:-0.064128pt;}
.ls1e{letter-spacing:-0.064000pt;}
.ls30{letter-spacing:-0.062496pt;}
.ls5c{letter-spacing:-0.058784pt;}
.ls1a{letter-spacing:-0.057600pt;}
.ls55{letter-spacing:-0.053440pt;}
.ls27{letter-spacing:-0.051200pt;}
.ls19{letter-spacing:-0.048608pt;}
.ls58{letter-spacing:-0.048096pt;}
.ls1d{letter-spacing:-0.044800pt;}
.ls53{letter-spacing:-0.042752pt;}
.ls15{letter-spacing:-0.038400pt;}
.ls5e{letter-spacing:-0.037408pt;}
.ls12{letter-spacing:-0.034720pt;}
.ls5f{letter-spacing:-0.032064pt;}
.ls13{letter-spacing:-0.032000pt;}
.ls38{letter-spacing:-0.027776pt;}
.ls60{letter-spacing:-0.026720pt;}
.ls14{letter-spacing:-0.025600pt;}
.ls3e{letter-spacing:-0.022368pt;}
.ls52{letter-spacing:-0.021376pt;}
.ls34{letter-spacing:-0.020832pt;}
.ls16{letter-spacing:-0.019200pt;}
.ls56{letter-spacing:-0.016032pt;}
.ls32{letter-spacing:-0.014912pt;}
.ls17{letter-spacing:-0.012800pt;}
.ls5b{letter-spacing:-0.010688pt;}
.ls33{letter-spacing:-0.007456pt;}
.ls28{letter-spacing:-0.006944pt;}
.ls18{letter-spacing:-0.006400pt;}
.ls54{letter-spacing:-0.005344pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.005344pt;}
.ls1b{letter-spacing:0.006400pt;}
.ls4c{letter-spacing:0.010688pt;}
.lsb{letter-spacing:0.012800pt;}
.ls63{letter-spacing:0.014912pt;}
.ls64{letter-spacing:0.016032pt;}
.ls2a{letter-spacing:0.019200pt;}
.ls51{letter-spacing:0.021376pt;}
.ls23{letter-spacing:0.025600pt;}
.ls47{letter-spacing:0.026720pt;}
.ls9{letter-spacing:0.027776pt;}
.ls29{letter-spacing:0.032000pt;}
.ls4b{letter-spacing:0.032064pt;}
.lsa{letter-spacing:0.034720pt;}
.ls65{letter-spacing:0.037280pt;}
.ls22{letter-spacing:0.038400pt;}
.ls20{letter-spacing:0.041664pt;}
.ls46{letter-spacing:0.042752pt;}
.ls25{letter-spacing:0.044736pt;}
.ls42{letter-spacing:0.046848pt;}
.ls50{letter-spacing:0.048096pt;}
.ls37{letter-spacing:0.052192pt;}
.ls2e{letter-spacing:0.052704pt;}
.ls21{letter-spacing:0.055552pt;}
.ls2d{letter-spacing:0.058560pt;}
.ls24{letter-spacing:0.059648pt;}
.ls4{letter-spacing:0.064000pt;}
.ls31{letter-spacing:0.067104pt;}
.ls2b{letter-spacing:0.076384pt;}
.ls10{letter-spacing:0.076800pt;}
.ls3f{letter-spacing:0.083200pt;}
.ls48{letter-spacing:0.085504pt;}
.ls1{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.101536pt;}
.ls26{letter-spacing:0.104160pt;}
.ls4d{letter-spacing:0.106880pt;}
.lsf{letter-spacing:0.121600pt;}
.lse{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.134400pt;}
.ls6{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.288000pt;}
.ls49{letter-spacing:7.016747pt;}
.ls35{letter-spacing:11.968000pt;}
.ls4e{letter-spacing:53.279680pt;}
.ls61{letter-spacing:56.486080pt;}
.ls4a{letter-spacing:59.478720pt;}
.ls40{letter-spacing:307.980800pt;}
.ls41{letter-spacing:410.060800pt;}
.ls45{letter-spacing:440.780800pt;}
.ls3d{letter-spacing:610.688000pt;}
.ls44{letter-spacing:669.568000pt;}
.lsc{letter-spacing:844.928000pt;}
.ls43{letter-spacing:865.408000pt;}
.ls3c{letter-spacing:964.928000pt;}
.ls2c{letter-spacing:1042.280320pt;}
.ws2{word-spacing:-23.712000pt;}
.ws5a{word-spacing:-17.798400pt;}
.wsc{word-spacing:-17.753600pt;}
.wsd{word-spacing:-17.728000pt;}
.wse{word-spacing:-17.708800pt;}
.ws0{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsec{word-spacing:-12.227072pt;}
.wsed{word-spacing:-12.130880pt;}
.wsb{word-spacing:-1.120000pt;}
.ws35{word-spacing:-0.465248pt;}
.ws9{word-spacing:-0.384000pt;}
.wsd8{word-spacing:-0.381920pt;}
.wsf3{word-spacing:-0.374080pt;}
.ws10f{word-spacing:-0.363392pt;}
.wsfb{word-spacing:-0.342016pt;}
.ws10a{word-spacing:-0.336672pt;}
.ws10{word-spacing:-0.333312pt;}
.ws12{word-spacing:-0.326368pt;}
.ws13{word-spacing:-0.298592pt;}
.ws11{word-spacing:-0.277760pt;}
.ws9a{word-spacing:-0.229152pt;}
.ws29{word-spacing:-0.194432pt;}
.ws7{word-spacing:-0.192000pt;}
.wsf{word-spacing:-0.180544pt;}
.ws2a{word-spacing:-0.131936pt;}
.ws96{word-spacing:-0.118048pt;}
.ws8{word-spacing:-0.096000pt;}
.wsb8{word-spacing:-0.083328pt;}
.wse0{word-spacing:-0.070400pt;}
.ws4{word-spacing:-0.064000pt;}
.wscf{word-spacing:-0.055552pt;}
.ws106{word-spacing:-0.048096pt;}
.wsfa{word-spacing:-0.037408pt;}
.ws107{word-spacing:-0.032064pt;}
.ws88{word-spacing:-0.027776pt;}
.ws76{word-spacing:-0.025600pt;}
.wsf0{word-spacing:-0.021376pt;}
.wsb9{word-spacing:-0.020832pt;}
.wsdf{word-spacing:-0.012800pt;}
.ws103{word-spacing:-0.010688pt;}
.ws77{word-spacing:-0.005856pt;}
.wsef{word-spacing:-0.005344pt;}
.ws3{word-spacing:0.000000pt;}
.wsff{word-spacing:0.005344pt;}
.wse7{word-spacing:0.005856pt;}
.wsfe{word-spacing:0.010688pt;}
.ws94{word-spacing:0.014912pt;}
.wsf2{word-spacing:0.016032pt;}
.wsf5{word-spacing:0.021376pt;}
.ws28{word-spacing:0.022368pt;}
.wsf1{word-spacing:0.026720pt;}
.ws10d{word-spacing:0.029824pt;}
.wsf9{word-spacing:0.032064pt;}
.wsfc{word-spacing:0.037408pt;}
.wsa2{word-spacing:0.038400pt;}
.wsfd{word-spacing:0.042752pt;}
.ws10e{word-spacing:0.044736pt;}
.wsf4{word-spacing:0.048096pt;}
.ws32{word-spacing:0.057600pt;}
.wsf8{word-spacing:0.058784pt;}
.ws2f{word-spacing:0.064000pt;}
.ws10b{word-spacing:0.074816pt;}
.wsde{word-spacing:0.076800pt;}
.wsee{word-spacing:0.082016pt;}
.ws31{word-spacing:0.083200pt;}
.ws78{word-spacing:0.089600pt;}
.ws7f{word-spacing:0.096000pt;}
.wse8{word-spacing:0.108800pt;}
.wse5{word-spacing:0.121600pt;}
.ws5{word-spacing:0.128000pt;}
.ws6d{word-spacing:0.134400pt;}
.ws59{word-spacing:0.140800pt;}
.ws10c{word-spacing:0.141664pt;}
.ws1b{word-spacing:0.147200pt;}
.ws1a{word-spacing:0.153600pt;}
.ws33{word-spacing:0.160000pt;}
.ws2e{word-spacing:0.166400pt;}
.ws1d{word-spacing:0.172800pt;}
.ws26{word-spacing:0.179200pt;}
.ws6{word-spacing:0.192000pt;}
.ws1c{word-spacing:0.198400pt;}
.ws25{word-spacing:0.211200pt;}
.ws42{word-spacing:0.217600pt;}
.ws34{word-spacing:0.230400pt;}
.ws79{word-spacing:0.243200pt;}
.ws7e{word-spacing:0.249600pt;}
.ws95{word-spacing:0.253504pt;}
.ws30{word-spacing:0.268800pt;}
.wsb7{word-spacing:0.275200pt;}
.wsa{word-spacing:0.288000pt;}
.wsea{word-spacing:0.358400pt;}
.ws74{word-spacing:0.492800pt;}
.wseb{word-spacing:0.512000pt;}
.ws49{word-spacing:0.787200pt;}
.ws48{word-spacing:0.800000pt;}
.wsc4{word-spacing:1.113600pt;}
.wsc3{word-spacing:1.216000pt;}
.ws17{word-spacing:1.420800pt;}
.ws16{word-spacing:1.536000pt;}
.wsa6{word-spacing:1.766400pt;}
.wsa5{word-spacing:1.779200pt;}
.ws14{word-spacing:1.804800pt;}
.ws15{word-spacing:1.868800pt;}
.ws64{word-spacing:2.041600pt;}
.ws63{word-spacing:2.060800pt;}
.ws2b{word-spacing:2.176000pt;}
.ws2d{word-spacing:2.182400pt;}
.ws2c{word-spacing:2.316800pt;}
.ws8e{word-spacing:2.387200pt;}
.ws8d{word-spacing:2.425600pt;}
.ws58{word-spacing:2.758400pt;}
.ws57{word-spacing:2.796800pt;}
.wsb1{word-spacing:3.328000pt;}
.wsaf{word-spacing:3.360000pt;}
.wsb0{word-spacing:3.468800pt;}
.ws18{word-spacing:3.564800pt;}
.ws19{word-spacing:3.635200pt;}
.ws54{word-spacing:4.262400pt;}
.wsc6{word-spacing:4.300800pt;}
.wsbd{word-spacing:4.307200pt;}
.ws53{word-spacing:4.326400pt;}
.wsc5{word-spacing:4.352000pt;}
.ws89{word-spacing:5.888000pt;}
.wsd1{word-spacing:5.900800pt;}
.ws8a{word-spacing:5.939200pt;}
.wsd0{word-spacing:5.971200pt;}
.ws40{word-spacing:6.009600pt;}
.ws41{word-spacing:6.035200pt;}
.wsc9{word-spacing:6.233600pt;}
.ws52{word-spacing:6.508800pt;}
.ws67{word-spacing:6.547200pt;}
.ws51{word-spacing:6.592000pt;}
.ws50{word-spacing:6.777600pt;}
.ws68{word-spacing:6.784000pt;}
.ws47{word-spacing:6.828800pt;}
.ws46{word-spacing:6.848000pt;}
.ws4f{word-spacing:6.860800pt;}
.wsac{word-spacing:6.873600pt;}
.ws4e{word-spacing:6.969600pt;}
.ws45{word-spacing:7.091200pt;}
.wsae{word-spacing:8.134400pt;}
.ws93{word-spacing:8.147200pt;}
.ws92{word-spacing:8.172800pt;}
.wsc8{word-spacing:8.224000pt;}
.wsad{word-spacing:8.256000pt;}
.ws83{word-spacing:8.492800pt;}
.ws82{word-spacing:8.499200pt;}
.ws84{word-spacing:8.787200pt;}
.ws80{word-spacing:8.819200pt;}
.ws81{word-spacing:8.889600pt;}
.wsce{word-spacing:9.715200pt;}
.ws73{word-spacing:9.740800pt;}
.wscd{word-spacing:9.747200pt;}
.ws37{word-spacing:9.766400pt;}
.ws36{word-spacing:9.779200pt;}
.ws72{word-spacing:9.843200pt;}
.ws38{word-spacing:9.907200pt;}
.wsbc{word-spacing:10.080000pt;}
.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;}
.wsbe{word-spacing:11.027200pt;}
.wsbf{word-spacing:11.065600pt;}
.ws6a{word-spacing:11.360000pt;}
.wscb{word-spacing:11.372800pt;}
.wscc{word-spacing:11.462400pt;}
.ws69{word-spacing:11.475200pt;}
.ws55{word-spacing:11.673600pt;}
.ws56{word-spacing:11.686400pt;}
.wsd2{word-spacing:12.012800pt;}
.wsd4{word-spacing:12.019200pt;}
.wsd3{word-spacing:12.044800pt;}
.wsd5{word-spacing:12.076800pt;}
.ws4c{word-spacing:12.320000pt;}
.ws4d{word-spacing:12.467200pt;}
.ws3d{word-spacing:13.267200pt;}
.ws97{word-spacing:13.292800pt;}
.ws3b{word-spacing:13.369600pt;}
.ws3c{word-spacing:13.395200pt;}
.ws61{word-spacing:13.907200pt;}
.ws62{word-spacing:13.926400pt;}
.ws71{word-spacing:13.939200pt;}
.wsca{word-spacing:14.060800pt;}
.wsab{word-spacing:14.540800pt;}
.wsaa{word-spacing:14.560000pt;}
.ws8c{word-spacing:14.924800pt;}
.ws8b{word-spacing:14.963200pt;}
.ws86{word-spacing:15.808000pt;}
.ws3f{word-spacing:15.833600pt;}
.ws3e{word-spacing:15.840000pt;}
.ws85{word-spacing:15.852800pt;}
.ws87{word-spacing:15.942400pt;}
.ws23{word-spacing:16.064000pt;}
.wsa4{word-spacing:18.073600pt;}
.wsa3{word-spacing:18.086400pt;}
.ws7d{word-spacing:19.686400pt;}
.ws7c{word-spacing:19.763200pt;}
.ws6f{word-spacing:20.006400pt;}
.ws6e{word-spacing:20.070400pt;}
.ws70{word-spacing:20.288000pt;}
.ws5d{word-spacing:20.300800pt;}
.ws7b{word-spacing:21.593600pt;}
.wsc2{word-spacing:21.606400pt;}
.wsc0{word-spacing:21.619200pt;}
.ws7a{word-spacing:21.644800pt;}
.wsc1{word-spacing:21.939200pt;}
.ws60{word-spacing:22.515200pt;}
.ws5f{word-spacing:22.604800pt;}
.wsba{word-spacing:22.899200pt;}
.wsbb{word-spacing:22.918400pt;}
.ws6c{word-spacing:23.532800pt;}
.wse3{word-spacing:23.820800pt;}
.ws90{word-spacing:23.827200pt;}
.ws8f{word-spacing:23.846400pt;}
.wse4{word-spacing:23.859200pt;}
.ws91{word-spacing:23.923200pt;}
.wsd6{word-spacing:24.096000pt;}
.wsd7{word-spacing:24.153600pt;}
.wsb5{word-spacing:24.800000pt;}
.wsb6{word-spacing:24.825600pt;}
.wsa7{word-spacing:25.088000pt;}
.wsa9{word-spacing:25.113600pt;}
.wsa8{word-spacing:25.273600pt;}
.ws9b{word-spacing:25.401600pt;}
.ws9c{word-spacing:25.414400pt;}
.ws9f{word-spacing:25.446400pt;}
.wsa0{word-spacing:25.516800pt;}
.wsc7{word-spacing:27.379200pt;}
.ws39{word-spacing:28.262400pt;}
.ws3a{word-spacing:28.435200pt;}
.ws65{word-spacing:30.860800pt;}
.ws66{word-spacing:30.880000pt;}
.ws5e{word-spacing:33.132800pt;}
.ws43{word-spacing:34.400000pt;}
.ws44{word-spacing:34.425600pt;}
.ws99{word-spacing:36.633600pt;}
.ws98{word-spacing:36.659200pt;}
.wsb2{word-spacing:38.214400pt;}
.wsb3{word-spacing:38.227200pt;}
.wsb4{word-spacing:38.419200pt;}
.wse2{word-spacing:44.640000pt;}
.wse1{word-spacing:44.652800pt;}
.wsdd{word-spacing:45.228800pt;}
.wsdc{word-spacing:45.260800pt;}
.ws9d{word-spacing:46.220800pt;}
.ws9e{word-spacing:46.304000pt;}
.ws5c{word-spacing:46.553600pt;}
.ws5b{word-spacing:48.787200pt;}
.wsd9{word-spacing:55.520000pt;}
.ws6b{word-spacing:55.526400pt;}
.ws4a{word-spacing:57.734400pt;}
.ws4b{word-spacing:57.785600pt;}
.ws109{word-spacing:59.558880pt;}
.wsf7{word-spacing:59.564224pt;}
.ws108{word-spacing:73.950272pt;}
.wsdb{word-spacing:77.868800pt;}
.wsda{word-spacing:78.105600pt;}
.wsa1{word-spacing:96.147200pt;}
.ws105{word-spacing:126.006176pt;}
.ws102{word-spacing:126.011520pt;}
.ws104{word-spacing:126.048928pt;}
.ws101{word-spacing:126.059616pt;}
.ws100{word-spacing:126.064960pt;}
.wsf6{word-spacing:126.075648pt;}
.wse9{word-spacing:307.955200pt;}
.wse6{word-spacing:307.987200pt;}
.ws75{word-spacing:683.190240pt;}
._19{margin-left:-683.184853pt;}
._3b{margin-left:-307.840533pt;}
._38{margin-left:-288.320533pt;}
._3c{margin-left:-191.041600pt;}
._4f{margin-left:-129.601067pt;}
._2f{margin-left:-84.160533pt;}
._56{margin-left:-73.907520pt;}
._4e{margin-left:-61.812800pt;}
._52{margin-left:-59.532160pt;}
._3a{margin-left:-52.210667pt;}
._17{margin-left:-31.680000pt;}
._47{margin-left:-22.720533pt;}
._58{margin-left:-12.184320pt;}
._7{margin-left:-10.560000pt;}
._13{margin-left:-8.960000pt;}
._15{margin-left:-1.920000pt;}
._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;}
._25{width:22.720000pt;}
._28{width:27.750400pt;}
._24{width:32.640000pt;}
._11{width:34.560000pt;}
._18{width:35.456000pt;}
._16{width:37.312000pt;}
._14{width:41.792000pt;}
._8{width:45.440000pt;}
._1d{width:46.720000pt;}
._12{width:48.640000pt;}
._31{width:49.869867pt;}
._1a{width:50.981867pt;}
._d{width:52.480000pt;}
._23{width:53.760000pt;}
._4{width:56.000000pt;}
._20{width:56.957867pt;}
._26{width:58.368000pt;}
._55{width:59.532160pt;}
._57{width:61.776640pt;}
._5{width:63.360000pt;}
._1e{width:67.648000pt;}
._2b{width:69.120533pt;}
._2{width:70.400000pt;}
._f{width:73.920000pt;}
._4c{width:87.039467pt;}
._3e{width:94.614933pt;}
._54{width:101.759968pt;}
._51{width:115.734933pt;}
._2c{width:116.799467pt;}
._53{width:126.080672pt;}
._50{width:138.231467pt;}
._27{width:170.880000pt;}
._41{width:178.239467pt;}
._22{width:181.736000pt;}
._3d{width:199.992000pt;}
._29{width:220.838400pt;}
._32{width:223.684267pt;}
._2a{width:240.192000pt;}
._40{width:244.364800pt;}
._3f{width:267.980800pt;}
._49{width:285.124267pt;}
._44{width:300.482133pt;}
._37{width:307.840000pt;}
._42{width:315.227733pt;}
._35{width:362.258667pt;}
._46{width:372.019200pt;}
._2d{width:376.667733pt;}
._2e{width:384.637867pt;}
._36{width:401.978133pt;}
._43{width:405.437867pt;}
._21{width:416.315733pt;}
._45{width:423.435200pt;}
._4a{width:424.325333pt;}
._1f{width:491.195200pt;}
._33{width:523.845333pt;}
._1c{width:533.118859pt;}
._1b{width:608.315659pt;}
._34{width:610.338667pt;}
._4d{width:635.202133pt;}
._4b{width:669.218667pt;}
._39{width:727.680000pt;}
._48{width:767.999467pt;}
._30{width:829.759467pt;}
.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;}
.yf9{bottom:62.746400pt;}
.y1d{bottom:76.960000pt;}
.ybe{bottom:83.467067pt;}
.y6d{bottom:88.027067pt;}
.y1c{bottom:95.040000pt;}
.ybd{bottom:102.107067pt;}
.y6c{bottom:106.667067pt;}
.y1b{bottom:113.120000pt;}
.ybc{bottom:120.747067pt;}
.y6b{bottom:125.387067pt;}
.ye7{bottom:128.027067pt;}
.y1a{bottom:131.200000pt;}
.ybb{bottom:139.467067pt;}
.y6a{bottom:144.027067pt;}
.y19{bottom:149.440000pt;}
.ye6{bottom:154.667067pt;}
.y1c4{bottom:156.347067pt;}
.y69{bottom:162.667067pt;}
.yba{bottom:166.275280pt;}
.y18{bottom:167.520000pt;}
.ye5{bottom:173.387067pt;}
.y1c3{bottom:183.307200pt;}
.y17{bottom:185.600000pt;}
.yb9{bottom:186.187200pt;}
.y68{bottom:189.387067pt;}
.ye4{bottom:192.027067pt;}
.y1c2{bottom:198.587067pt;}
.y94{bottom:200.027067pt;}
.y16{bottom:203.680000pt;}
.y67{bottom:208.027067pt;}
.ye3{bottom:210.667067pt;}
.y1c1{bottom:214.587200pt;}
.y93{bottom:218.427067pt;}
.y155{bottom:220.347200pt;}
.y15{bottom:221.920000pt;}
.yb8{bottom:221.947067pt;}
.ye2{bottom:229.387067pt;}
.y1c0{bottom:229.867067pt;}
.y66{bottom:234.667067pt;}
.y154{bottom:235.627067pt;}
.y95{bottom:236.667067pt;}
.y92{bottom:236.747067pt;}
.y14{bottom:240.000000pt;}
.yb7{bottom:240.667067pt;}
.y18b{bottom:241.547200pt;}
.y1bf{bottom:245.787200pt;}
.y153{bottom:251.547067pt;}
.y65{bottom:253.387067pt;}
.y91{bottom:255.147067pt;}
.ye1{bottom:256.195147pt;}
.y18a{bottom:256.827067pt;}
.y13{bottom:258.080000pt;}
.yb6{bottom:259.307067pt;}
.y1be{bottom:261.147200pt;}
.y152{bottom:266.907067pt;}
.y64{bottom:272.027067pt;}
.y189{bottom:272.827200pt;}
.y90{bottom:273.547067pt;}
.ye0{bottom:276.107067pt;}
.y12{bottom:276.320000pt;}
.y1bd{bottom:276.427067pt;}
.y43{bottom:282.507067pt;}
.y151{bottom:282.823360pt;}
.yb5{bottom:286.115147pt;}
.y188{bottom:288.107067pt;}
.y8f{bottom:291.947067pt;}
.y1bc{bottom:292.427200pt;}
.y11{bottom:294.400000pt;}
.y150{bottom:298.107200pt;}
.y63{bottom:298.667067pt;}
.y42{bottom:301.147067pt;}
.y187{bottom:304.027333pt;}
.yb4{bottom:306.027067pt;}
.y1bb{bottom:307.707067pt;}
.y8e{bottom:310.347067pt;}
.ydf{bottom:311.867067pt;}
.y10{bottom:312.480000pt;}
.y14f{bottom:313.467200pt;}
.y62{bottom:317.387067pt;}
.y186{bottom:319.387333pt;}
.y1ba{bottom:323.627067pt;}
.y41{bottom:327.867067pt;}
.y8d{bottom:328.747067pt;}
.yf{bottom:330.560000pt;}
.yde{bottom:330.587067pt;}
.y185{bottom:334.667200pt;}
.y61{bottom:336.027067pt;}
.y1b9{bottom:338.987067pt;}
.yb3{bottom:342.347067pt;}
.y14e{bottom:344.747200pt;}
.y40{bottom:346.507067pt;}
.y8c{bottom:347.547067pt;}
.ye{bottom:348.000000pt;}
.ydd{bottom:349.227067pt;}
.y184{bottom:350.587067pt;}
.y60{bottom:354.667067pt;}
.y1b8{bottom:354.907333pt;}
.y14d{bottom:360.027067pt;}
.y3f{bottom:365.147067pt;}
.y183{bottom:365.947067pt;}
.yd{bottom:366.720000pt;}
.ydc{bottom:367.867067pt;}
.y8b{bottom:368.267013pt;}
.y1b7{bottom:370.187200pt;}
.yb2{bottom:371.787067pt;}
.y5f{bottom:373.387067pt;}
.y14c{bottom:375.947067pt;}
.y182{bottom:381.867333pt;}
.y3e{bottom:383.867067pt;}
.y8a{bottom:385.146933pt;}
.y1b6{bottom:386.187200pt;}
.ydb{bottom:386.587067pt;}
.y14b{bottom:391.307067pt;}
.yc{bottom:392.480000pt;}
.y181{bottom:397.147200pt;}
.y5e{bottom:400.027067pt;}
.yb1{bottom:400.747067pt;}
.y1b5{bottom:401.467067pt;}
.y14a{bottom:407.227200pt;}
.y3d{bottom:410.507067pt;}
.y180{bottom:413.147200pt;}
.yda{bottom:413.227067pt;}
.y1b4{bottom:417.465867pt;}
.y5d{bottom:418.667067pt;}
.y89{bottom:418.747200pt;}
.y149{bottom:422.507067pt;}
.yb{bottom:426.080000pt;}
.yb0{bottom:427.467067pt;}
.y17f{bottom:428.427067pt;}
.y3c{bottom:429.147067pt;}
.yd9{bottom:431.867067pt;}
.y1b3{bottom:433.706267pt;}
.y88{bottom:436.667067pt;}
.y5c{bottom:437.387067pt;}
.y148{bottom:438.507200pt;}
.y17e{bottom:444.427200pt;}
.y3b{bottom:447.867067pt;}
.y1b2{bottom:449.862533pt;}
.yd8{bottom:450.587067pt;}
.y147{bottom:453.787067pt;}
.yaf{bottom:454.107067pt;}
.y87{bottom:455.067067pt;}
.y5b{bottom:456.027067pt;}
.ya{bottom:459.680000pt;}
.y17d{bottom:459.707067pt;}
.y1b1{bottom:465.226533pt;}
.y3a{bottom:466.507067pt;}
.yd7{bottom:469.227067pt;}
.y146{bottom:469.786133pt;}
.yae{bottom:472.747067pt;}
.y86{bottom:473.467067pt;}
.y5a{bottom:474.667067pt;}
.y17c{bottom:475.705867pt;}
.y1b0{bottom:481.382800pt;}
.y39{bottom:485.147067pt;}
.y145{bottom:485.942400pt;}
.yd6{bottom:487.867067pt;}
.yad{bottom:491.467067pt;}
.y85{bottom:491.867067pt;}
.y17b{bottom:491.946267pt;}
.y9{bottom:493.280000pt;}
.y59{bottom:493.387067pt;}
.y1af{bottom:496.746800pt;}
.y144{bottom:501.306400pt;}
.y38{bottom:503.867067pt;}
.yf7{bottom:504.027067pt;}
.yd5{bottom:506.587067pt;}
.y17a{bottom:508.102533pt;}
.yac{bottom:510.107067pt;}
.y84{bottom:510.586533pt;}
.y1ae{bottom:512.907067pt;}
.y10e{bottom:514.267067pt;}
.y143{bottom:517.546800pt;}
.y58{bottom:520.195147pt;}
.y37{bottom:522.507067pt;}
.y179{bottom:523.466533pt;}
.yd4{bottom:525.227067pt;}
.y8{bottom:526.880000pt;}
.yf6{bottom:527.627067pt;}
.y1ad{bottom:528.904533pt;}
.y124{bottom:529.947067pt;}
.y83{bottom:531.387067pt;}
.y142{bottom:533.707067pt;}
.y10d{bottom:535.387067pt;}
.yab{bottom:536.915147pt;}
.y178{bottom:539.622827pt;}
.y57{bottom:540.107067pt;}
.yd3{bottom:543.867067pt;}
.y1ac{bottom:545.064800pt;}
.y36{bottom:549.147067pt;}
.y141{bottom:549.705467pt;}
.yf5{bottom:551.627067pt;}
.y123{bottom:553.387067pt;}
.y177{bottom:554.906667pt;}
.yaa{bottom:556.827067pt;}
.y7{bottom:556.960000pt;}
.y1ab{bottom:561.305200pt;}
.yd2{bottom:562.587067pt;}
.y10c{bottom:562.747067pt;}
.y140{bottom:565.945867pt;}
.y35{bottom:567.867067pt;}
.y176{bottom:571.147067pt;}
.yf4{bottom:575.627067pt;}
.y56{bottom:575.867067pt;}
.y1aa{bottom:577.545600pt;}
.y6{bottom:579.360000pt;}
.y122{bottom:580.747067pt;}
.y82{bottom:581.227067pt;}
.y13f{bottom:582.106133pt;}
.y34{bottom:586.507067pt;}
.y175{bottom:587.144533pt;}
.y10b{bottom:588.347067pt;}
.ya9{bottom:592.667067pt;}
.y1a9{bottom:593.701867pt;}
.y55{bottom:594.587067pt;}
.y13e{bottom:598.346533pt;}
.yf3{bottom:599.627067pt;}
.y81{bottom:599.867067pt;}
.y5{bottom:601.760000pt;}
.y174{bottom:603.304667pt;}
.y33{bottom:605.147067pt;}
.y121{bottom:606.347067pt;}
.y10a{bottom:606.747067pt;}
.yd1{bottom:608.035147pt;}
.y1a8{bottom:609.065867pt;}
.ya8{bottom:611.307067pt;}
.y54{bottom:613.227067pt;}
.y13d{bottom:614.506800pt;}
.y173{bottom:619.545200pt;}
.yf2{bottom:623.627067pt;}
.y32{bottom:623.867067pt;}
.y4{bottom:624.160000pt;}
.y120{bottom:624.747067pt;}
.y109{bottom:625.147067pt;}
.y1a7{bottom:625.226133pt;}
.y80{bottom:626.587067pt;}
.yd0{bottom:627.947067pt;}
.y13c{bottom:629.782533pt;}
.ya7{bottom:629.947067pt;}
.y53{bottom:631.867067pt;}
.y172{bottom:635.785600pt;}
.y1a6{bottom:640.505867pt;}
.y31{bottom:642.507067pt;}
.y11f{bottom:644.907067pt;}
.y13b{bottom:645.146533pt;}
.y7f{bottom:645.227067pt;}
.y3{bottom:646.560000pt;}
.yf1{bottom:647.627067pt;}
.y171{bottom:651.941760pt;}
.y1a5{bottom:656.746267pt;}
.ya6{bottom:656.755147pt;}
.y52{bottom:658.587067pt;}
.y30{bottom:661.147067pt;}
.y13a{bottom:661.302800pt;}
.ycf{bottom:663.707067pt;}
.y7e{bottom:663.867067pt;}
.y170{bottom:667.225600pt;}
.yf0{bottom:671.627067pt;}
.y11e{bottom:672.187067pt;}
.y2{bottom:672.480000pt;}
.y108{bottom:672.587067pt;}
.y1a4{bottom:672.902533pt;}
.y139{bottom:676.666800pt;}
.ya5{bottom:676.667067pt;}
.y51{bottom:677.227067pt;}
.y2f{bottom:679.867067pt;}
.yce{bottom:682.427067pt;}
.y16f{bottom:683.466000pt;}
.y1a3{bottom:688.266533pt;}
.y7d{bottom:690.587067pt;}
.y138{bottom:692.815120pt;}
.y50{bottom:695.867067pt;}
.y11d{bottom:697.867067pt;}
.y107{bottom:698.187200pt;}
.yef{bottom:698.267067pt;}
.y2e{bottom:698.507067pt;}
.y16e{bottom:698.745867pt;}
.ycd{bottom:701.067067pt;}
.y1a2{bottom:704.506933pt;}
.y137{bottom:708.098960pt;}
.y7c{bottom:709.227067pt;}
.ya4{bottom:712.507067pt;}
.y16d{bottom:714.986267pt;}
.y11c{bottom:716.267067pt;}
.y106{bottom:716.587200pt;}
.y2d{bottom:717.147067pt;}
.ycc{bottom:719.707067pt;}
.y1a1{bottom:720.667200pt;}
.y4f{bottom:722.668347pt;}
.y136{bottom:723.462960pt;}
.yee{bottom:724.987067pt;}
.y16c{bottom:731.142533pt;}
.ya3{bottom:731.147067pt;}
.y105{bottom:734.987200pt;}
.y1a0{bottom:735.947067pt;}
.y7b{bottom:736.035147pt;}
.y11b{bottom:736.347067pt;}
.ycb{bottom:738.427067pt;}
.y135{bottom:738.746800pt;}
.y4e{bottom:742.667067pt;}
.y2c{bottom:743.867067pt;}
.y16b{bottom:746.506533pt;}
.ya2{bottom:749.787067pt;}
.yed{bottom:751.627067pt;}
.y199{bottom:751.944027pt;}
.y134{bottom:754.902933pt;}
.y104{bottom:755.147200pt;}
.y7a{bottom:755.947067pt;}
.y16a{bottom:762.746933pt;}
.y11a{bottom:763.707067pt;}
.yca{bottom:765.067067pt;}
.ya1{bottom:768.507067pt;}
.y133{bottom:770.266933pt;}
.yec{bottom:770.267067pt;}
.y4d{bottom:778.427067pt;}
.y169{bottom:778.907200pt;}
.y103{bottom:782.427067pt;}
.y198{bottom:782.507733pt;}
.yc9{bottom:783.707067pt;}
.y132{bottom:786.427200pt;}
.yeb{bottom:788.987067pt;}
.y119{bottom:790.987200pt;}
.y79{bottom:791.707067pt;}
.y168{bottom:794.187067pt;}
.ya0{bottom:795.867067pt;}
.y4c{bottom:797.067067pt;}
.y197{bottom:797.787600pt;}
.y19f{bottom:797.788933pt;}
.y2b{bottom:798.427067pt;}
.y131{bottom:801.787200pt;}
.yc8{bottom:802.427067pt;}
.yea{bottom:807.627067pt;}
.y101{bottom:809.787067pt;}
.y78{bottom:810.427067pt;}
.y196{bottom:813.147600pt;}
.y19e{bottom:813.148933pt;}
.y9f{bottom:814.267067pt;}
.y102{bottom:816.347067pt;}
.y130{bottom:817.067067pt;}
.y118{bottom:818.347067pt;}
.yc7{bottom:821.067067pt;}
.y4b{bottom:823.868347pt;}
.y2a{bottom:825.067067pt;}
.y161{bottom:825.467867pt;}
.y195{bottom:828.427467pt;}
.y19d{bottom:828.428800pt;}
.y9e{bottom:832.667067pt;}
.y12e{bottom:832.983600pt;}
.ye9{bottom:834.267067pt;}
.y77{bottom:837.067067pt;}
.y100{bottom:837.147200pt;}
.yc6{bottom:839.707067pt;}
.y160{bottom:840.747733pt;}
.y167{bottom:840.749067pt;}
.y19c{bottom:843.708533pt;}
.y4a{bottom:843.867067pt;}
.y117{bottom:843.947067pt;}
.y12d{bottom:848.347600pt;}
.y9d{bottom:851.067067pt;}
.y29{bottom:851.787067pt;}
.y76{bottom:855.707067pt;}
.y115{bottom:855.787067pt;}
.y15f{bottom:856.027600pt;}
.y166{bottom:856.028933pt;}
.y194{bottom:858.987067pt;}
.y19b{bottom:858.988400pt;}
.ye8{bottom:860.987067pt;}
.y116{bottom:862.347067pt;}
.y12f{bottom:863.627467pt;}
.yff{bottom:864.427067pt;}
.yc5{bottom:866.427067pt;}
.y9c{bottom:869.467067pt;}
.y28{bottom:870.187067pt;}
.y15e{bottom:871.387600pt;}
.y165{bottom:871.388933pt;}
.y193{bottom:874.347067pt;}
.y19a{bottom:874.348400pt;}
.y75{bottom:874.427067pt;}
.y12c{bottom:878.907200pt;}
.y49{bottom:879.627067pt;}
.y114{bottom:883.147200pt;}
.yc4{bottom:885.067067pt;}
.y164{bottom:886.668800pt;}
.y9b{bottom:888.267200pt;}
.y27{bottom:888.587067pt;}
.y192{bottom:890.263360pt;}
.yfe{bottom:891.787067pt;}
.y74{bottom:893.067067pt;}
.y12b{bottom:894.187067pt;}
.y48{bottom:898.267067pt;}
.y15d{bottom:901.947200pt;}
.y163{bottom:901.948533pt;}
.y190{bottom:905.547200pt;}
.y26{bottom:906.987067pt;}
.y9a{bottom:908.987147pt;}
.y129{bottom:910.187333pt;}
.y113{bottom:910.507067pt;}
.y73{bottom:911.707067pt;}
.y15c{bottom:917.227067pt;}
.y162{bottom:917.228400pt;}
.yfd{bottom:919.147067pt;}
.yc3{bottom:920.427067pt;}
.y191{bottom:920.903227pt;}
.y18f{bottom:920.907200pt;}
.y47{bottom:925.068347pt;}
.y25{bottom:925.387067pt;}
.y12a{bottom:925.463227pt;}
.y128{bottom:925.467200pt;}
.y99{bottom:925.867067pt;}
.y15b{bottom:933.223360pt;}
.y18e{bottom:936.187067pt;}
.y112{bottom:937.787067pt;}
.y72{bottom:938.427067pt;}
.yc2{bottom:939.067067pt;}
.y127{bottom:940.747067pt;}
.y46{bottom:945.067067pt;}
.yfc{bottom:945.787067pt;}
.y159{bottom:948.507200pt;}
.y24{bottom:952.185200pt;}
.y18d{bottom:956.187067pt;}
.y71{bottom:957.067067pt;}
.y126{bottom:960.747067pt;}
.y15a{bottom:963.783067pt;}
.y158{bottom:963.787067pt;}
.y111{bottom:964.507067pt;}
.yc1{bottom:966.427067pt;}
.y98{bottom:967.707067pt;}
.y23{bottom:972.123227pt;}
.y70{bottom:975.707067pt;}
.yfb{bottom:978.907067pt;}
.y157{bottom:979.147067pt;}
.y45{bottom:981.307067pt;}
.yc0{bottom:985.067067pt;}
.y97{bottom:986.427067pt;}
.y18c{bottom:989.311067pt;}
.y22{bottom:992.035147pt;}
.y125{bottom:993.067067pt;}
.y6f{bottom:994.427067pt;}
.y110{bottom:997.626080pt;}
.y156{bottom:999.067067pt;}
.y96{bottom:1005.067067pt;}
.yfa{bottom:1006.827067pt;}
.y44{bottom:1010.747067pt;}
.y21{bottom:1011.947067pt;}
.ybf{bottom:1012.347067pt;}
.y6e{bottom:1013.067067pt;}
.y10f{bottom:1014.506000pt;}
.yf8{bottom:1061.067067pt;}
.y20{bottom:1062.347067pt;}
.y1{bottom:1108.800000pt;}
.h5{height:45.184000pt;}
.h7{height:53.086720pt;}
.h8{height:55.736250pt;}
.h11{height:57.020480pt;}
.hc{height:61.076250pt;}
.h3{height:62.781250pt;}
.hf{height:62.812500pt;}
.ha{height:66.750000pt;}
.h4{height:67.776000pt;}
.h9{height:72.423750pt;}
.hb{height:77.763750pt;}
.h6{height:103.104000pt;}
.h10{height:114.110000pt;}
.he{height:141.310000pt;}
.hd{height:144.278383pt;}
.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;}
.x30{left:97.040000pt;}
.x13{left:99.120000pt;}
.x5{left:105.048480pt;}
.x32{left:130.719200pt;}
.xf{left:132.320000pt;}
.x3f{left:137.679733pt;}
.x20{left:139.520000pt;}
.x1f{left:142.480000pt;}
.x31{left:144.159333pt;}
.x11{left:156.080000pt;}
.x1e{left:158.076560pt;}
.x47{left:161.679733pt;}
.x4{left:163.760000pt;}
.x40{left:170.081760pt;}
.x48{left:185.674293pt;}
.x14{left:193.673467pt;}
.x22{left:215.126000pt;}
.x1c{left:219.040267pt;}
.x33{left:221.918533pt;}
.x23{left:225.919440pt;}
.xc{left:234.078640pt;}
.x2c{left:240.960000pt;}
.x34{left:246.879067pt;}
.x27{left:256.716080pt;}
.x1d{left:275.030880pt;}
.x10{left:290.394480pt;}
.x26{left:294.719733pt;}
.x24{left:307.754480pt;}
.x35{left:313.998400pt;}
.x6{left:320.720400pt;}
.x4f{left:326.798667pt;}
.x36{left:329.839333pt;}
.x19{left:332.804960pt;}
.xe{left:333.759760pt;}
.xd{left:336.641520pt;}
.xa{left:341.919333pt;}
.x1a{left:343.359840pt;}
.x17{left:363.759333pt;}
.x12{left:366.483360pt;}
.x25{left:370.400000pt;}
.x1b{left:372.960000pt;}
.x9{left:375.600000pt;}
.x3{left:376.640000pt;}
.xb{left:379.920000pt;}
.x38{left:392.394880pt;}
.x37{left:394.559200pt;}
.x7{left:396.880000pt;}
.x21{left:413.521600pt;}
.x28{left:472.080000pt;}
.x4a{left:479.115947pt;}
.x49{left:486.958267pt;}
.x3b{left:489.357733pt;}
.x39{left:491.518000pt;}
.x43{left:498.240800pt;}
.x41{left:499.440533pt;}
.x3a{left:503.675600pt;}
.x2f{left:516.480000pt;}
.x29{left:519.600000pt;}
.x2d{left:520.960000pt;}
.x42{left:528.880667pt;}
.x15{left:552.720000pt;}
.x2a{left:592.720000pt;}
.x18{left:609.520000pt;}
.x4d{left:614.319200pt;}
.x2b{left:615.760000pt;}
.x2e{left:620.960000pt;}
.x44{left:623.760667pt;}
.x16{left:628.320000pt;}
.x50{left:630.800000pt;}
.x3e{left:633.518800pt;}
.x4b{left:636.558267pt;}
.x4e{left:641.438667pt;}
.x3c{left:645.998400pt;}
.x46{left:647.840800pt;}
.x45{left:650.880133pt;}
.x4c{left:652.078533pt;}
.x3d{left:661.518667pt;}
}


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