
/* 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_75a7a3cf3e91.woff")format("woff");}.ff1{font-family:ff1;line-height:0.995000;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_bb3a0a2b8ed0.woff")format("woff");}.ff2{font-family:ff2;line-height:0.954000;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_67da78694cbf.woff")format("woff");}.ff3{font-family:ff3;line-height:0.918000;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_b466efdca613.woff")format("woff");}.ff4{font-family:ff4;line-height:0.444000;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_d85e6d4dec87.woff")format("woff");}.ff5{font-family:ff5;line-height:0.856934;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_458a5daebc05.woff")format("woff");}.ff6{font-family:ff6;line-height:0.429000;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_eefa8fac0cd4.woff")format("woff");}.ff7{font-family:ff7;line-height:0.522000;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_a3c6e03aca12.woff")format("woff");}.ff8{font-family:ff8;line-height:0.705000;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_a4d456167d83.woff")format("woff");}.ff9{font-family:ff9;line-height:0.431000;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_d37a1781341e.woff")format("woff");}.ffa{font-family:ffa;line-height:0.734000;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_7a83f527e7d7.woff")format("woff");}.ffb{font-family:ffb;line-height:0.907000;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_8def31de28cc.woff")format("woff");}.ffc{font-family:ffc;line-height:0.658000;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_f140ea6c070f.woff")format("woff");}.ffd{font-family:ffd;line-height:0.454000;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_69a142bbd3da.woff")format("woff");}.ffe{font-family:ffe;line-height:0.658000;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:fff;src:url("fonts/font_0014_9fd7c304e1f7.woff")format("woff");}.fff{font-family:fff;line-height:0.714000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-35.100000px;}
.v6{vertical-align:-28.554000px;}
.v3{vertical-align:-20.916000px;}
.v4{vertical-align:-9.000000px;}
.v7{vertical-align:-7.500000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:21.774000px;}
.v8{vertical-align:22.938000px;}
.v2{vertical-align:26.898000px;}
.lsf{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000150px;}
.lsd{letter-spacing:0.000200px;}
.ls14{letter-spacing:0.000266px;}
.ls0{letter-spacing:0.000300px;}
.ls15{letter-spacing:0.000362px;}
.ls2{letter-spacing:0.000368px;}
.ls9{letter-spacing:0.000433px;}
.ls3{letter-spacing:0.000600px;}
.ls27{letter-spacing:0.001572px;}
.ls1f{letter-spacing:0.006361px;}
.ls2c{letter-spacing:0.006433px;}
.ls25{letter-spacing:2.754200px;}
.ls12{letter-spacing:2.984736px;}
.ls1d{letter-spacing:2.985983px;}
.ls6{letter-spacing:2.987751px;}
.ls19{letter-spacing:2.988000px;}
.ls31{letter-spacing:2.991983px;}
.ls1c{letter-spacing:2.993751px;}
.ls1b{letter-spacing:2.994000px;}
.ls21{letter-spacing:3.060200px;}
.ls22{letter-spacing:4.620367px;}
.lse{letter-spacing:11.220150px;}
.ls37{letter-spacing:11.532150px;}
.ls5{letter-spacing:13.446300px;}
.ls40{letter-spacing:13.500266px;}
.ls3f{letter-spacing:13.500300px;}
.ls41{letter-spacing:13.500400px;}
.ls3d{letter-spacing:13.500433px;}
.ls2e{letter-spacing:13.530000px;}
.ls39{letter-spacing:13.686150px;}
.ls17{letter-spacing:14.568300px;}
.ls18{letter-spacing:14.568467px;}
.ls11{letter-spacing:15.000150px;}
.ls7{letter-spacing:15.000467px;}
.ls3c{letter-spacing:15.000600px;}
.ls35{letter-spacing:15.486150px;}
.lsa{letter-spacing:15.906150px;}
.ls33{letter-spacing:16.026000px;}
.ls30{letter-spacing:16.368300px;}
.ls3e{letter-spacing:16.483800px;}
.ls42{letter-spacing:16.489800px;}
.ls1e{letter-spacing:16.680000px;}
.ls26{letter-spacing:17.658367px;}
.ls29{letter-spacing:17.868367px;}
.ls8{letter-spacing:17.988000px;}
.ls20{letter-spacing:18.126467px;}
.ls2a{letter-spacing:18.330467px;}
.ls4{letter-spacing:18.348600px;}
.lsc{letter-spacing:18.438150px;}
.ls24{letter-spacing:18.612000px;}
.ls34{letter-spacing:18.738150px;}
.ls32{letter-spacing:20.352150px;}
.ls28{letter-spacing:21.180367px;}
.ls2b{letter-spacing:21.318000px;}
.ls2d{letter-spacing:21.324000px;}
.ls10{letter-spacing:21.702150px;}
.ls38{letter-spacing:21.870150px;}
.ls2f{letter-spacing:21.888300px;}
.ls13{letter-spacing:24.264150px;}
.ls1a{letter-spacing:25.752000px;}
.ls36{letter-spacing:25.764300px;}
.lsb{letter-spacing:29.889442px;}
.ls16{letter-spacing:34.656600px;}
.ls3a{letter-spacing:45.096467px;}
.ls3b{letter-spacing:48.084000px;}
.ls23{letter-spacing:60.678300px;}
.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;}
}
.ws7{word-spacing:-71.999100px;}
.ws8{word-spacing:-62.099400px;}
.ws6{word-spacing:-32.111599px;}
.ws5{word-spacing:-31.967600px;}
.ws10{word-spacing:-29.999700px;}
.wsc{word-spacing:-26.999700px;}
.wsc1{word-spacing:-23.039770px;}
.wsf{word-spacing:-21.078000px;}
.ws4{word-spacing:-20.999700px;}
.ws32{word-spacing:-19.979800px;}
.wsd4{word-spacing:-19.799802px;}
.wsc8{word-spacing:-19.739803px;}
.ws104{word-spacing:-19.601782px;}
.wse8{word-spacing:-19.559804px;}
.ws111{word-spacing:-19.552549px;}
.ws107{word-spacing:-19.551800px;}
.ws110{word-spacing:-19.550615px;}
.ws106{word-spacing:-19.547783px;}
.ws10f{word-spacing:-19.546316px;}
.ws59{word-spacing:-19.499805px;}
.wsd7{word-spacing:-19.379806px;}
.wsbe{word-spacing:-19.139809px;}
.wsb2{word-spacing:-19.079809px;}
.wsa9{word-spacing:-19.019810px;}
.wsa8{word-spacing:-19.012800px;}
.ws62{word-spacing:-18.970200px;}
.wse9{word-spacing:-18.959810px;}
.ws60{word-spacing:-18.839812px;}
.ws2b{word-spacing:-18.779812px;}
.ws9d{word-spacing:-18.719813px;}
.wsde{word-spacing:-18.659813px;}
.ws83{word-spacing:-18.539815px;}
.ws2d{word-spacing:-18.479815px;}
.wsb3{word-spacing:-18.359816px;}
.wsca{word-spacing:-18.299817px;}
.ws6f{word-spacing:-18.179818px;}
.wsc6{word-spacing:-18.059819px;}
.ws17{word-spacing:-17.999820px;}
.wsd8{word-spacing:-17.879821px;}
.ws6e{word-spacing:-17.819822px;}
.ws4f{word-spacing:-17.759822px;}
.wsd0{word-spacing:-17.639824px;}
.wsee{word-spacing:-17.589867px;}
.wsef{word-spacing:-17.579824px;}
.wsc0{word-spacing:-17.459825px;}
.wsf8{word-spacing:-17.399826px;}
.ws4e{word-spacing:-17.339827px;}
.ws100{word-spacing:-17.159828px;}
.wsdd{word-spacing:-17.099829px;}
.wsdc{word-spacing:-17.039830px;}
.wsb1{word-spacing:-16.979830px;}
.wsa2{word-spacing:-16.919831px;}
.ws27{word-spacing:-16.859831px;}
.ws97{word-spacing:-16.834067px;}
.ws85{word-spacing:-16.799832px;}
.ws84{word-spacing:-16.739833px;}
.ws2c{word-spacing:-16.559834px;}
.ws98{word-spacing:-16.499835px;}
.wsac{word-spacing:-16.439836px;}
.ws9c{word-spacing:-16.379836px;}
.ws64{word-spacing:-16.319837px;}
.ws26{word-spacing:-16.199838px;}
.wse4{word-spacing:-16.139839px;}
.ws21{word-spacing:-16.079839px;}
.ws2a{word-spacing:-16.019840px;}
.ws7a{word-spacing:-15.959840px;}
.ws86{word-spacing:-15.899841px;}
.wsa1{word-spacing:-15.779842px;}
.wsf7{word-spacing:-15.719843px;}
.wsdf{word-spacing:-15.599844px;}
.ws4b{word-spacing:-15.479845px;}
.ws4d{word-spacing:-15.419846px;}
.ws1d{word-spacing:-15.407807px;}
.ws76{word-spacing:-15.359846px;}
.ws89{word-spacing:-15.239848px;}
.wscc{word-spacing:-15.179848px;}
.ws115{word-spacing:-15.119832px;}
.ws11{word-spacing:-15.059849px;}
.wsda{word-spacing:-15.004300px;}
.wse{word-spacing:-14.999850px;}
.ws13{word-spacing:-14.999550px;}
.wsc5{word-spacing:-14.998300px;}
.wsc7{word-spacing:-14.998100px;}
.ws8e{word-spacing:-14.939851px;}
.wsa6{word-spacing:-14.819852px;}
.wsb4{word-spacing:-14.759852px;}
.ws9{word-spacing:-14.717866px;}
.wsa{word-spacing:-14.651867px;}
.ws57{word-spacing:-14.639854px;}
.ws99{word-spacing:-14.583546px;}
.ws2f{word-spacing:-14.579854px;}
.wsb5{word-spacing:-14.519855px;}
.wsd3{word-spacing:-14.459855px;}
.ws20{word-spacing:-14.447819px;}
.ws79{word-spacing:-14.399856px;}
.ws3e{word-spacing:-14.339857px;}
.ws95{word-spacing:-14.219858px;}
.ws18{word-spacing:-14.159858px;}
.wsd9{word-spacing:-14.099859px;}
.ws10b{word-spacing:-13.931845px;}
.ws5a{word-spacing:-13.799862px;}
.ws108{word-spacing:-13.769847px;}
.wse6{word-spacing:-13.739863px;}
.ws91{word-spacing:-13.661848px;}
.ws8d{word-spacing:-13.630133px;}
.ws54{word-spacing:-13.619864px;}
.ws90{word-spacing:-13.607849px;}
.ws96{word-spacing:-13.559864px;}
.ws63{word-spacing:-13.553849px;}
.ws10a{word-spacing:-13.505100px;}
.ws114{word-spacing:-13.504800px;}
.wsd{word-spacing:-13.503900px;}
.ws113{word-spacing:-13.503867px;}
.ws109{word-spacing:-13.503467px;}
.ws10e{word-spacing:-13.501868px;}
.ws112{word-spacing:-13.501635px;}
.ws116{word-spacing:-13.501584px;}
.ws10c{word-spacing:-13.500352px;}
.ws7f{word-spacing:-13.499865px;}
.wsb{word-spacing:-13.499850px;}
.ws105{word-spacing:-13.499100px;}
.ws10d{word-spacing:-13.498800px;}
.ws7e{word-spacing:-13.439866px;}
.ws7d{word-spacing:-13.437900px;}
.ws72{word-spacing:-13.379866px;}
.wsc9{word-spacing:-13.319867px;}
.ws3f{word-spacing:-13.199868px;}
.ws40{word-spacing:-12.959870px;}
.wscb{word-spacing:-12.899871px;}
.ws39{word-spacing:-12.839872px;}
.ws33{word-spacing:-12.779872px;}
.ws1b{word-spacing:-12.719873px;}
.wse2{word-spacing:-12.659873px;}
.ws77{word-spacing:-12.539875px;}
.ws31{word-spacing:-12.515821px;}
.wsa3{word-spacing:-12.419876px;}
.wsaf{word-spacing:-12.359876px;}
.ws3b{word-spacing:-12.179878px;}
.ws55{word-spacing:-12.059879px;}
.wsd6{word-spacing:-11.999880px;}
.ws1c{word-spacing:-11.999850px;}
.ws5f{word-spacing:-11.939881px;}
.ws65{word-spacing:-11.879881px;}
.ws66{word-spacing:-11.866800px;}
.ws25{word-spacing:-11.699883px;}
.ws8a{word-spacing:-11.662950px;}
.wse7{word-spacing:-11.639884px;}
.ws24{word-spacing:-11.579884px;}
.ws16{word-spacing:-11.519885px;}
.ws71{word-spacing:-11.459885px;}
.wsa7{word-spacing:-11.279887px;}
.wsf0{word-spacing:-11.159888px;}
.wsec{word-spacing:-11.099889px;}
.wsb9{word-spacing:-11.039890px;}
.ws52{word-spacing:-10.859891px;}
.ws5e{word-spacing:-10.799892px;}
.ws8f{word-spacing:-10.799865px;}
.ws1a{word-spacing:-10.739893px;}
.ws61{word-spacing:-10.703866px;}
.wse1{word-spacing:-10.679893px;}
.wsb0{word-spacing:-10.559894px;}
.ws29{word-spacing:-10.499895px;}
.ws1f{word-spacing:-10.463869px;}
.ws7b{word-spacing:-10.439896px;}
.ws1e{word-spacing:-10.415870px;}
.wsad{word-spacing:-10.379896px;}
.wsc2{word-spacing:-10.319897px;}
.ws9e{word-spacing:-10.259897px;}
.ws9f{word-spacing:-10.199898px;}
.wsb8{word-spacing:-10.139899px;}
.wsc3{word-spacing:-10.079899px;}
.ws28{word-spacing:-9.959900px;}
.ws6d{word-spacing:-9.899901px;}
.ws9a{word-spacing:-9.844300px;}
.ws9b{word-spacing:-9.839902px;}
.ws78{word-spacing:-9.779902px;}
.ws5d{word-spacing:-9.719903px;}
.ws5c{word-spacing:-9.659903px;}
.wsba{word-spacing:-9.539905px;}
.wsa0{word-spacing:-9.479905px;}
.wsa5{word-spacing:-9.419906px;}
.ws3{word-spacing:-9.365866px;}
.ws81{word-spacing:-9.359906px;}
.ws1{word-spacing:-9.353191px;}
.ws0{word-spacing:-9.323867px;}
.ws2{word-spacing:-9.323033px;}
.ws37{word-spacing:-9.299907px;}
.ws51{word-spacing:-9.179908px;}
.ws23{word-spacing:-9.119909px;}
.wsf5{word-spacing:-9.059909px;}
.ws34{word-spacing:-8.879911px;}
.ws22{word-spacing:-8.759912px;}
.ws5b{word-spacing:-8.699913px;}
.wsff{word-spacing:-8.579914px;}
.ws93{word-spacing:-8.459915px;}
.ws94{word-spacing:-8.399916px;}
.ws35{word-spacing:-8.339917px;}
.ws36{word-spacing:-8.279917px;}
.ws38{word-spacing:-8.159918px;}
.ws8c{word-spacing:-8.104834px;}
.ws8b{word-spacing:-8.099919px;}
.ws82{word-spacing:-7.979920px;}
.wse0{word-spacing:-7.919921px;}
.ws6c{word-spacing:-7.859921px;}
.ws101{word-spacing:-7.739923px;}
.ws3d{word-spacing:-7.679923px;}
.wsab{word-spacing:-7.619924px;}
.wsaa{word-spacing:-7.612100px;}
.wsd2{word-spacing:-7.499925px;}
.ws88{word-spacing:-7.439926px;}
.ws87{word-spacing:-7.402100px;}
.ws50{word-spacing:-7.259927px;}
.wsa4{word-spacing:-7.139929px;}
.ws2e{word-spacing:-6.959930px;}
.ws58{word-spacing:-6.659933px;}
.wsb6{word-spacing:-6.539935px;}
.ws19{word-spacing:-6.419936px;}
.wse3{word-spacing:-6.359936px;}
.wsae{word-spacing:-6.299937px;}
.ws70{word-spacing:-6.239938px;}
.wsf3{word-spacing:-6.059939px;}
.ws15{word-spacing:-5.939941px;}
.ws3c{word-spacing:-5.759942px;}
.wsbb{word-spacing:-5.579944px;}
.wsbf{word-spacing:-5.519945px;}
.wse5{word-spacing:-5.399946px;}
.ws56{word-spacing:-5.279947px;}
.ws7c{word-spacing:-4.799952px;}
.wsed{word-spacing:-4.739953px;}
.ws80{word-spacing:-4.679953px;}
.wscd{word-spacing:-4.499955px;}
.ws92{word-spacing:-4.379956px;}
.wsbc{word-spacing:-4.319957px;}
.wsbd{word-spacing:-4.259957px;}
.ws103{word-spacing:-4.019960px;}
.wsea{word-spacing:-3.959960px;}
.ws53{word-spacing:-3.899961px;}
.wsf4{word-spacing:-3.839962px;}
.ws4c{word-spacing:-3.522000px;}
.ws3a{word-spacing:-3.119969px;}
.ws6a{word-spacing:-3.059969px;}
.wsdb{word-spacing:-2.819972px;}
.wsd5{word-spacing:-2.759972px;}
.wsd1{word-spacing:-2.639974px;}
.wsfe{word-spacing:-2.459975px;}
.wsb7{word-spacing:-2.219978px;}
.wsf2{word-spacing:-1.919981px;}
.ws4a{word-spacing:-1.859981px;}
.wsf6{word-spacing:-1.799982px;}
.ws68{word-spacing:-1.619984px;}
.ws67{word-spacing:-1.577100px;}
.wsf1{word-spacing:-0.659993px;}
.ws14{word-spacing:-0.059999px;}
.ws12{word-spacing:-0.041999px;}
.ws30{word-spacing:0.000000px;}
.ws102{word-spacing:0.899991px;}
.wseb{word-spacing:2.039980px;}
.wscf{word-spacing:2.159978px;}
.wsce{word-spacing:2.219978px;}
.ws44{word-spacing:2.279977px;}
.ws46{word-spacing:2.939971px;}
.ws6b{word-spacing:3.839962px;}
.ws48{word-spacing:4.619954px;}
.ws49{word-spacing:4.657400px;}
.wsf9{word-spacing:6.419936px;}
.wsc4{word-spacing:6.539935px;}
.ws45{word-spacing:7.559924px;}
.ws69{word-spacing:12.539875px;}
.ws47{word-spacing:13.139869px;}
.wsfa{word-spacing:14.279857px;}
.ws43{word-spacing:14.639854px;}
.wsfc{word-spacing:15.059849px;}
.wsfd{word-spacing:16.079839px;}
.ws41{word-spacing:19.679803px;}
.wsfb{word-spacing:19.979800px;}
.ws75{word-spacing:20.999790px;}
.ws42{word-spacing:21.599784px;}
.ws74{word-spacing:30.599694px;}
.ws73{word-spacing:30.679867px;}
._14{margin-left:-9.887879px;}
._8{margin-left:-7.055912px;}
._0{margin-left:-5.837917px;}
._6{margin-left:-4.175948px;}
._3{margin-left:-3.149955px;}
._2{margin-left:-1.343981px;}
._9{width:1.140883px;}
._5{width:2.189965px;}
._7{width:3.782206px;}
._15{width:11.543879px;}
._b{width:13.943855px;}
._1{width:15.539778px;}
._16{width:17.279827px;}
._13{width:18.595322px;}
._11{width:22.962770px;}
._10{width:24.143753px;}
._a{width:29.627692px;}
._12{width:33.089656px;}
._c{width:41.009422px;}
._e{width:474.648334px;}
._d{width:568.122401px;}
._4{width:1365.473372px;}
._f{width:1978.893818px;}
.fc2{color:rgb(167,208,57);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.999400px;}
.fsb{font-size:35.999400px;}
.fs5{font-size:37.799400px;}
.fsa{font-size:37.940400px;}
.fs0{font-size:41.999400px;}
.fs8{font-size:42.156000px;}
.fs4{font-size:47.999400px;}
.fs6{font-size:53.999400px;}
.fs7{font-size:59.999400px;}
.fs3{font-size:65.999400px;}
.fs2{font-size:124.198800px;}
.fs1{font-size:143.998200px;}
.y0{bottom:0.000000px;}
.y85{bottom:70.414500px;}
.y38{bottom:71.610000px;}
.y11f{bottom:111.943500px;}
.y141{bottom:111.958500px;}
.y28{bottom:116.442000px;}
.y37{bottom:116.460000px;}
.ybc{bottom:121.212000px;}
.ydd{bottom:121.224000px;}
.yfc{bottom:124.932000px;}
.y140{bottom:126.958500px;}
.y93{bottom:129.280500px;}
.y27{bottom:130.692000px;}
.y98{bottom:132.636000px;}
.y36{bottom:134.460000px;}
.y6f{bottom:138.856500px;}
.ybb{bottom:139.212000px;}
.ydc{bottom:139.224000px;}
.y13f{bottom:141.958500px;}
.yfb{bottom:142.932000px;}
.y26{bottom:144.940500px;}
.y11e{bottom:146.443500px;}
.y92{bottom:147.280500px;}
.y97{bottom:147.636000px;}
.y35{bottom:152.460000px;}
.y6e{bottom:156.856500px;}
.y13e{bottom:156.958500px;}
.yba{bottom:157.212000px;}
.ydb{bottom:157.224000px;}
.y25{bottom:159.190500px;}
.yfa{bottom:160.932000px;}
.y91{bottom:165.280500px;}
.y34{bottom:170.460000px;}
.y13d{bottom:171.958500px;}
.y6d{bottom:174.856500px;}
.yb9{bottom:175.212000px;}
.yda{bottom:175.224000px;}
.yf9{bottom:178.932000px;}
.y90{bottom:183.280500px;}
.y13c{bottom:186.958500px;}
.y33{bottom:188.460000px;}
.y6c{bottom:192.856500px;}
.yb8{bottom:193.212000px;}
.yd9{bottom:193.224000px;}
.yf8{bottom:196.932000px;}
.y11d{bottom:199.167000px;}
.y8f{bottom:201.280500px;}
.y24{bottom:201.958500px;}
.y32{bottom:206.460000px;}
.y6b{bottom:210.856500px;}
.yb7{bottom:211.212000px;}
.yd8{bottom:211.224000px;}
.yf7{bottom:214.932000px;}
.y13b{bottom:216.958500px;}
.y11c{bottom:217.167000px;}
.y8e{bottom:219.280500px;}
.y31{bottom:224.460000px;}
.y6a{bottom:228.856500px;}
.yb6{bottom:229.212000px;}
.yd7{bottom:229.224000px;}
.y13a{bottom:231.958500px;}
.yf6{bottom:232.932000px;}
.y11b{bottom:235.167000px;}
.y8d{bottom:237.280500px;}
.y30{bottom:242.460000px;}
.y23{bottom:243.961500px;}
.y69{bottom:246.856500px;}
.y139{bottom:246.958500px;}
.yb5{bottom:247.212000px;}
.yd6{bottom:247.224000px;}
.yf5{bottom:250.932000px;}
.y11a{bottom:253.167000px;}
.y8c{bottom:255.280500px;}
.y2f{bottom:260.460000px;}
.y138{bottom:261.958500px;}
.y22{bottom:261.961500px;}
.y68{bottom:264.856500px;}
.yb4{bottom:265.212000px;}
.yd5{bottom:265.224000px;}
.yf4{bottom:268.932000px;}
.y119{bottom:271.167000px;}
.y8b{bottom:273.280500px;}
.y137{bottom:276.958500px;}
.y2e{bottom:278.460000px;}
.y21{bottom:279.961500px;}
.y67{bottom:282.856500px;}
.yb3{bottom:283.212000px;}
.yd4{bottom:283.224000px;}
.yf3{bottom:286.932000px;}
.y118{bottom:289.167000px;}
.y136{bottom:291.958500px;}
.y2d{bottom:296.460000px;}
.y20{bottom:297.961500px;}
.y66{bottom:300.856500px;}
.yb2{bottom:301.212000px;}
.yd3{bottom:301.224000px;}
.yf2{bottom:304.932000px;}
.y135{bottom:306.958500px;}
.y117{bottom:307.167000px;}
.y2c{bottom:314.460000px;}
.y1f{bottom:315.961500px;}
.y84{bottom:317.356500px;}
.y65{bottom:318.856500px;}
.yb1{bottom:319.212000px;}
.yd2{bottom:319.224000px;}
.y8a{bottom:320.472000px;}
.y134{bottom:321.958500px;}
.yf1{bottom:322.932000px;}
.y116{bottom:325.167000px;}
.y2b{bottom:332.460000px;}
.y1e{bottom:333.961500px;}
.y89{bottom:335.472000px;}
.y64{bottom:336.856500px;}
.y133{bottom:336.958500px;}
.yb0{bottom:337.212000px;}
.yd1{bottom:337.224000px;}
.yf0{bottom:340.932000px;}
.y115{bottom:343.167000px;}
.y2a{bottom:350.460000px;}
.y132{bottom:351.958500px;}
.y1d{bottom:351.961500px;}
.y63{bottom:354.856500px;}
.yaf{bottom:355.212000px;}
.yd0{bottom:355.224000px;}
.yef{bottom:358.932000px;}
.y114{bottom:361.167000px;}
.y83{bottom:364.239000px;}
.y131{bottom:366.958500px;}
.y29{bottom:368.460000px;}
.y62{bottom:372.856500px;}
.yae{bottom:373.212000px;}
.ycf{bottom:373.224000px;}
.yee{bottom:376.932000px;}
.y113{bottom:379.167000px;}
.y130{bottom:381.958500px;}
.y82{bottom:382.239000px;}
.y1c{bottom:386.460000px;}
.y61{bottom:390.856500px;}
.yad{bottom:391.212000px;}
.yce{bottom:391.224000px;}
.yed{bottom:394.932000px;}
.y112{bottom:397.167000px;}
.y81{bottom:400.239000px;}
.y60{bottom:408.856500px;}
.yac{bottom:409.212000px;}
.ycd{bottom:409.224000px;}
.yec{bottom:412.932000px;}
.y12f{bottom:413.457000px;}
.y111{bottom:415.167000px;}
.y80{bottom:418.239000px;}
.y5f{bottom:426.856500px;}
.yab{bottom:427.212000px;}
.ycc{bottom:427.224000px;}
.yeb{bottom:430.932000px;}
.y110{bottom:433.167000px;}
.y7f{bottom:436.239000px;}
.y1b{bottom:440.296500px;}
.y5e{bottom:444.856500px;}
.yaa{bottom:445.212000px;}
.ycb{bottom:445.224000px;}
.yea{bottom:448.932000px;}
.y10f{bottom:451.167000px;}
.y7e{bottom:454.239000px;}
.y12e{bottom:459.424500px;}
.y5d{bottom:462.856500px;}
.ya9{bottom:463.212000px;}
.yca{bottom:463.224000px;}
.ye9{bottom:466.932000px;}
.y10e{bottom:469.167000px;}
.y1a{bottom:471.744000px;}
.y7d{bottom:472.239000px;}
.y12d{bottom:477.424500px;}
.y5c{bottom:480.856500px;}
.ya8{bottom:481.212000px;}
.yc9{bottom:481.224000px;}
.ye8{bottom:484.932000px;}
.y10d{bottom:487.167000px;}
.y7c{bottom:490.239000px;}
.y12c{bottom:495.424500px;}
.y5b{bottom:498.856500px;}
.ya7{bottom:499.212000px;}
.yc8{bottom:499.224000px;}
.y19{bottom:501.682500px;}
.ye7{bottom:502.932000px;}
.y7b{bottom:508.239000px;}
.y12b{bottom:513.424500px;}
.y5a{bottom:516.856500px;}
.ya6{bottom:517.212000px;}
.yc7{bottom:517.224000px;}
.y18{bottom:519.682500px;}
.ye6{bottom:520.932000px;}
.y10c{bottom:521.667000px;}
.y7a{bottom:526.239000px;}
.y164{bottom:529.213500px;}
.y96{bottom:534.747000px;}
.y59{bottom:534.856500px;}
.ya5{bottom:535.212000px;}
.yc6{bottom:535.224000px;}
.y17{bottom:537.682500px;}
.ye5{bottom:538.932000px;}
.y163{bottom:544.213500px;}
.y79{bottom:544.239000px;}
.y12a{bottom:547.924500px;}
.y95{bottom:549.747000px;}
.y58{bottom:552.856500px;}
.ya4{bottom:553.212000px;}
.y16{bottom:555.682500px;}
.ye4{bottom:556.932000px;}
.y162{bottom:559.213500px;}
.y78{bottom:562.239000px;}
.y94{bottom:564.747000px;}
.y57{bottom:570.856500px;}
.ya3{bottom:571.212000px;}
.yc5{bottom:571.218000px;}
.y15{bottom:573.682500px;}
.y161{bottom:574.213500px;}
.y10b{bottom:574.392000px;}
.ye3{bottom:574.932000px;}
.y77{bottom:580.239000px;}
.y56{bottom:588.856500px;}
.ya2{bottom:589.212000px;}
.y160{bottom:589.213500px;}
.yc4{bottom:589.218000px;}
.y14{bottom:591.682500px;}
.y10a{bottom:592.392000px;}
.ye2{bottom:592.932000px;}
.y129{bottom:593.892000px;}
.y76{bottom:598.239000px;}
.y15f{bottom:604.213500px;}
.y55{bottom:606.856500px;}
.ya1{bottom:607.212000px;}
.yc3{bottom:607.218000px;}
.y13{bottom:609.682500px;}
.y109{bottom:610.392000px;}
.y128{bottom:611.892000px;}
.y75{bottom:616.239000px;}
.y15e{bottom:619.213500px;}
.y54{bottom:624.856500px;}
.ya0{bottom:625.212000px;}
.yc2{bottom:625.218000px;}
.y12{bottom:627.682500px;}
.y108{bottom:628.392000px;}
.y127{bottom:629.892000px;}
.y15d{bottom:634.213500px;}
.ye1{bottom:640.125000px;}
.y53{bottom:642.856500px;}
.y9f{bottom:643.212000px;}
.yc1{bottom:643.218000px;}
.y11{bottom:645.682500px;}
.y107{bottom:646.392000px;}
.y126{bottom:647.892000px;}
.y15c{bottom:649.213500px;}
.ye0{bottom:655.125000px;}
.y74{bottom:656.355000px;}
.y52{bottom:660.856500px;}
.y9e{bottom:661.212000px;}
.yc0{bottom:661.218000px;}
.y10{bottom:663.750000px;}
.y15b{bottom:664.212000px;}
.y106{bottom:664.392000px;}
.y125{bottom:665.892000px;}
.ydf{bottom:670.125000px;}
.y73{bottom:671.355000px;}
.y51{bottom:678.856500px;}
.y9d{bottom:679.212000px;}
.ybf{bottom:679.218000px;}
.y105{bottom:682.392000px;}
.y124{bottom:683.892000px;}
.yde{bottom:685.125000px;}
.y72{bottom:686.355000px;}
.y15a{bottom:694.212000px;}
.y50{bottom:696.856500px;}
.y9c{bottom:697.212000px;}
.ybe{bottom:697.218000px;}
.y104{bottom:700.392000px;}
.y71{bottom:701.355000px;}
.y123{bottom:701.892000px;}
.yf{bottom:705.138000px;}
.y159{bottom:709.212000px;}
.y9b{bottom:715.212000px;}
.ybd{bottom:715.218000px;}
.y70{bottom:716.355000px;}
.y103{bottom:718.392000px;}
.y122{bottom:719.892000px;}
.ye{bottom:721.638000px;}
.y158{bottom:724.212000px;}
.y4f{bottom:731.356500px;}
.y9a{bottom:733.212000px;}
.y102{bottom:736.392000px;}
.y121{bottom:737.892000px;}
.yd{bottom:738.138000px;}
.y157{bottom:739.212000px;}
.y99{bottom:751.212000px;}
.y156{bottom:754.212000px;}
.y101{bottom:754.392000px;}
.y120{bottom:755.892000px;}
.y4e{bottom:769.212000px;}
.y100{bottom:772.392000px;}
.yc{bottom:774.064500px;}
.y155{bottom:784.212000px;}
.y4d{bottom:787.212000px;}
.yff{bottom:790.392000px;}
.y154{bottom:799.212000px;}
.y4c{bottom:805.212000px;}
.yb{bottom:807.150000px;}
.y153{bottom:814.212000px;}
.y4b{bottom:823.212000px;}
.y88{bottom:828.652500px;}
.ya{bottom:828.879000px;}
.y152{bottom:829.212000px;}
.yfe{bottom:837.583500px;}
.y4a{bottom:841.212000px;}
.y87{bottom:843.651000px;}
.y151{bottom:844.212000px;}
.y9{bottom:845.379000px;}
.yfd{bottom:852.583500px;}
.y86{bottom:858.651000px;}
.y49{bottom:859.212000px;}
.y8{bottom:868.635000px;}
.y150{bottom:874.212000px;}
.y48{bottom:877.212000px;}
.y7{bottom:888.135000px;}
.y14f{bottom:889.212000px;}
.y47{bottom:895.212000px;}
.y14e{bottom:904.212000px;}
.y46{bottom:913.212000px;}
.y14d{bottom:919.212000px;}
.y45{bottom:931.212000px;}
.y14c{bottom:934.212000px;}
.y6{bottom:945.901500px;}
.y44{bottom:949.212000px;}
.y14b{bottom:964.212000px;}
.y43{bottom:967.212000px;}
.y14a{bottom:979.212000px;}
.y42{bottom:985.212000px;}
.y5{bottom:990.901500px;}
.y149{bottom:994.212000px;}
.y41{bottom:1003.212000px;}
.y148{bottom:1009.212000px;}
.y40{bottom:1021.212000px;}
.y147{bottom:1024.212000px;}
.y4{bottom:1035.901500px;}
.y3f{bottom:1039.212000px;}
.y146{bottom:1054.212000px;}
.y3e{bottom:1057.212000px;}
.y145{bottom:1069.212000px;}
.y3d{bottom:1075.212000px;}
.y3{bottom:1080.901500px;}
.y144{bottom:1084.212000px;}
.y3c{bottom:1093.212000px;}
.y143{bottom:1099.212000px;}
.y3b{bottom:1111.212000px;}
.y142{bottom:1114.212000px;}
.y3a{bottom:1129.212000px;}
.y2{bottom:1144.066500px;}
.y1{bottom:1165.866000px;}
.y39{bottom:1174.168500px;}
.hb{height:13.949721px;}
.h5{height:26.459580px;}
.h2{height:32.549535px;}
.he{height:32.555535px;}
.hc{height:33.599580px;}
.hd{height:33.605580px;}
.h6{height:37.799580px;}
.h12{height:37.805580px;}
.h7{height:39.797558px;}
.hf{height:40.109714px;}
.h10{height:40.115714px;}
.h8{height:41.999580px;}
.ha{height:44.219558px;}
.h11{height:47.138200px;}
.h9{height:51.283200px;}
.h4{height:60.497580px;}
.h3{height:106.126673px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:71.731500px;}
.xd{left:72.735000px;}
.xb{left:79.485000px;}
.x6{left:89.664000px;}
.xc{left:116.226000px;}
.x3{left:155.812500px;}
.x7{left:446.524500px;}
.x4{left:458.409000px;}
.xe{left:459.414000px;}
.x9{left:466.164000px;}
.x5{left:476.341500px;}
.x8{left:481.572000px;}
.xa{left:502.905000px;}
.x1{left:640.708500px;}
@media print{
.v1{vertical-align:-31.200000pt;}
.v6{vertical-align:-25.381333pt;}
.v3{vertical-align:-18.592000pt;}
.v4{vertical-align:-8.000000pt;}
.v7{vertical-align:-6.666667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:19.354667pt;}
.v8{vertical-align:20.389333pt;}
.v2{vertical-align:23.909333pt;}
.lsf{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000133pt;}
.lsd{letter-spacing:0.000178pt;}
.ls14{letter-spacing:0.000237pt;}
.ls0{letter-spacing:0.000267pt;}
.ls15{letter-spacing:0.000321pt;}
.ls2{letter-spacing:0.000327pt;}
.ls9{letter-spacing:0.000385pt;}
.ls3{letter-spacing:0.000533pt;}
.ls27{letter-spacing:0.001397pt;}
.ls1f{letter-spacing:0.005655pt;}
.ls2c{letter-spacing:0.005719pt;}
.ls25{letter-spacing:2.448178pt;}
.ls12{letter-spacing:2.653099pt;}
.ls1d{letter-spacing:2.654207pt;}
.ls6{letter-spacing:2.655779pt;}
.ls19{letter-spacing:2.656000pt;}
.ls31{letter-spacing:2.659541pt;}
.ls1c{letter-spacing:2.661112pt;}
.ls1b{letter-spacing:2.661333pt;}
.ls21{letter-spacing:2.720178pt;}
.ls22{letter-spacing:4.106993pt;}
.lse{letter-spacing:9.973467pt;}
.ls37{letter-spacing:10.250800pt;}
.ls5{letter-spacing:11.952267pt;}
.ls40{letter-spacing:12.000237pt;}
.ls3f{letter-spacing:12.000267pt;}
.ls41{letter-spacing:12.000356pt;}
.ls3d{letter-spacing:12.000385pt;}
.ls2e{letter-spacing:12.026667pt;}
.ls39{letter-spacing:12.165467pt;}
.ls17{letter-spacing:12.949600pt;}
.ls18{letter-spacing:12.949748pt;}
.ls11{letter-spacing:13.333467pt;}
.ls7{letter-spacing:13.333748pt;}
.ls3c{letter-spacing:13.333867pt;}
.ls35{letter-spacing:13.765467pt;}
.lsa{letter-spacing:14.138800pt;}
.ls33{letter-spacing:14.245333pt;}
.ls30{letter-spacing:14.549600pt;}
.ls3e{letter-spacing:14.652267pt;}
.ls42{letter-spacing:14.657600pt;}
.ls1e{letter-spacing:14.826667pt;}
.ls26{letter-spacing:15.696326pt;}
.ls29{letter-spacing:15.882993pt;}
.ls8{letter-spacing:15.989333pt;}
.ls20{letter-spacing:16.112415pt;}
.ls2a{letter-spacing:16.293748pt;}
.ls4{letter-spacing:16.309867pt;}
.lsc{letter-spacing:16.389467pt;}
.ls24{letter-spacing:16.544000pt;}
.ls34{letter-spacing:16.656133pt;}
.ls32{letter-spacing:18.090800pt;}
.ls28{letter-spacing:18.826993pt;}
.ls2b{letter-spacing:18.949333pt;}
.ls2d{letter-spacing:18.954667pt;}
.ls10{letter-spacing:19.290800pt;}
.ls38{letter-spacing:19.440133pt;}
.ls2f{letter-spacing:19.456267pt;}
.ls13{letter-spacing:21.568133pt;}
.ls1a{letter-spacing:22.890667pt;}
.ls36{letter-spacing:22.901600pt;}
.lsb{letter-spacing:26.568393pt;}
.ls16{letter-spacing:30.805867pt;}
.ls3a{letter-spacing:40.085748pt;}
.ls3b{letter-spacing:42.741333pt;}
.ls23{letter-spacing:53.936267pt;}
.ws7{word-spacing:-63.999200pt;}
.ws8{word-spacing:-55.199467pt;}
.ws6{word-spacing:-28.543643pt;}
.ws5{word-spacing:-28.415645pt;}
.ws10{word-spacing:-26.666400pt;}
.wsc{word-spacing:-23.999733pt;}
.wsc1{word-spacing:-20.479795pt;}
.wsf{word-spacing:-18.736000pt;}
.ws4{word-spacing:-18.666400pt;}
.ws32{word-spacing:-17.759822pt;}
.wsd4{word-spacing:-17.599824pt;}
.wsc8{word-spacing:-17.546491pt;}
.ws104{word-spacing:-17.423806pt;}
.wse8{word-spacing:-17.386493pt;}
.ws111{word-spacing:-17.380044pt;}
.ws107{word-spacing:-17.379378pt;}
.ws110{word-spacing:-17.378325pt;}
.ws106{word-spacing:-17.375807pt;}
.ws10f{word-spacing:-17.374503pt;}
.ws59{word-spacing:-17.333160pt;}
.wsd7{word-spacing:-17.226494pt;}
.wsbe{word-spacing:-17.013163pt;}
.wsb2{word-spacing:-16.959830pt;}
.wsa9{word-spacing:-16.906498pt;}
.wsa8{word-spacing:-16.900267pt;}
.ws62{word-spacing:-16.862400pt;}
.wse9{word-spacing:-16.853165pt;}
.ws60{word-spacing:-16.746499pt;}
.ws2b{word-spacing:-16.693166pt;}
.ws9d{word-spacing:-16.639834pt;}
.wsde{word-spacing:-16.586501pt;}
.ws83{word-spacing:-16.479835pt;}
.ws2d{word-spacing:-16.426502pt;}
.wsb3{word-spacing:-16.319837pt;}
.wsca{word-spacing:-16.266504pt;}
.ws6f{word-spacing:-16.159838pt;}
.wsc6{word-spacing:-16.053173pt;}
.ws17{word-spacing:-15.999840pt;}
.wsd8{word-spacing:-15.893174pt;}
.ws6e{word-spacing:-15.839842pt;}
.ws4f{word-spacing:-15.786509pt;}
.wsd0{word-spacing:-15.679843pt;}
.wsee{word-spacing:-15.635437pt;}
.wsef{word-spacing:-15.626510pt;}
.wsc0{word-spacing:-15.519845pt;}
.wsf8{word-spacing:-15.466512pt;}
.ws4e{word-spacing:-15.413179pt;}
.ws100{word-spacing:-15.253181pt;}
.wsdd{word-spacing:-15.199848pt;}
.wsdc{word-spacing:-15.146515pt;}
.wsb1{word-spacing:-15.093182pt;}
.wsa2{word-spacing:-15.039850pt;}
.ws27{word-spacing:-14.986517pt;}
.ws97{word-spacing:-14.963615pt;}
.ws85{word-spacing:-14.933184pt;}
.ws84{word-spacing:-14.879851pt;}
.ws2c{word-spacing:-14.719853pt;}
.ws98{word-spacing:-14.666520pt;}
.wsac{word-spacing:-14.613187pt;}
.ws9c{word-spacing:-14.559854pt;}
.ws64{word-spacing:-14.506522pt;}
.ws26{word-spacing:-14.399856pt;}
.wse4{word-spacing:-14.346523pt;}
.ws21{word-spacing:-14.293190pt;}
.ws2a{word-spacing:-14.239858pt;}
.ws7a{word-spacing:-14.186525pt;}
.ws86{word-spacing:-14.133192pt;}
.wsa1{word-spacing:-14.026526pt;}
.wsf7{word-spacing:-13.973194pt;}
.wsdf{word-spacing:-13.866528pt;}
.ws4b{word-spacing:-13.759862pt;}
.ws4d{word-spacing:-13.706530pt;}
.ws1d{word-spacing:-13.695829pt;}
.ws76{word-spacing:-13.653197pt;}
.ws89{word-spacing:-13.546531pt;}
.wscc{word-spacing:-13.493198pt;}
.ws115{word-spacing:-13.439851pt;}
.ws11{word-spacing:-13.386533pt;}
.wsda{word-spacing:-13.337156pt;}
.wse{word-spacing:-13.333200pt;}
.ws13{word-spacing:-13.332933pt;}
.wsc5{word-spacing:-13.331822pt;}
.wsc7{word-spacing:-13.331645pt;}
.ws8e{word-spacing:-13.279867pt;}
.wsa6{word-spacing:-13.173202pt;}
.wsb4{word-spacing:-13.119869pt;}
.ws9{word-spacing:-13.082548pt;}
.wsa{word-spacing:-13.023882pt;}
.ws57{word-spacing:-13.013203pt;}
.ws99{word-spacing:-12.963152pt;}
.ws2f{word-spacing:-12.959870pt;}
.wsb5{word-spacing:-12.906538pt;}
.wsd3{word-spacing:-12.853205pt;}
.ws20{word-spacing:-12.842506pt;}
.ws79{word-spacing:-12.799872pt;}
.ws3e{word-spacing:-12.746539pt;}
.ws95{word-spacing:-12.639874pt;}
.ws18{word-spacing:-12.586541pt;}
.wsd9{word-spacing:-12.533208pt;}
.ws10b{word-spacing:-12.383862pt;}
.ws5a{word-spacing:-12.266544pt;}
.ws108{word-spacing:-12.239864pt;}
.wse6{word-spacing:-12.213211pt;}
.ws91{word-spacing:-12.143865pt;}
.ws8d{word-spacing:-12.115674pt;}
.ws54{word-spacing:-12.106546pt;}
.ws90{word-spacing:-12.095866pt;}
.ws96{word-spacing:-12.053213pt;}
.ws63{word-spacing:-12.047866pt;}
.ws10a{word-spacing:-12.004533pt;}
.ws114{word-spacing:-12.004267pt;}
.wsd{word-spacing:-12.003467pt;}
.ws113{word-spacing:-12.003437pt;}
.ws109{word-spacing:-12.003082pt;}
.ws10e{word-spacing:-12.001660pt;}
.ws112{word-spacing:-12.001453pt;}
.ws116{word-spacing:-12.001408pt;}
.ws10c{word-spacing:-12.000313pt;}
.ws7f{word-spacing:-11.999880pt;}
.wsb{word-spacing:-11.999867pt;}
.ws105{word-spacing:-11.999200pt;}
.ws10d{word-spacing:-11.998933pt;}
.ws7e{word-spacing:-11.946547pt;}
.ws7d{word-spacing:-11.944800pt;}
.ws72{word-spacing:-11.893214pt;}
.wsc9{word-spacing:-11.839882pt;}
.ws3f{word-spacing:-11.733216pt;}
.ws40{word-spacing:-11.519885pt;}
.wscb{word-spacing:-11.466552pt;}
.ws39{word-spacing:-11.413219pt;}
.ws33{word-spacing:-11.359886pt;}
.ws1b{word-spacing:-11.306554pt;}
.wse2{word-spacing:-11.253221pt;}
.ws77{word-spacing:-11.146555pt;}
.ws31{word-spacing:-11.125174pt;}
.wsa3{word-spacing:-11.039890pt;}
.wsaf{word-spacing:-10.986557pt;}
.ws3b{word-spacing:-10.826558pt;}
.ws55{word-spacing:-10.719893pt;}
.wsd6{word-spacing:-10.666560pt;}
.ws1c{word-spacing:-10.666533pt;}
.ws5f{word-spacing:-10.613227pt;}
.ws65{word-spacing:-10.559894pt;}
.ws66{word-spacing:-10.548267pt;}
.ws25{word-spacing:-10.399896pt;}
.ws8a{word-spacing:-10.367067pt;}
.wse7{word-spacing:-10.346563pt;}
.ws24{word-spacing:-10.293230pt;}
.ws16{word-spacing:-10.239898pt;}
.ws71{word-spacing:-10.186565pt;}
.wsa7{word-spacing:-10.026566pt;}
.wsf0{word-spacing:-9.919901pt;}
.wsec{word-spacing:-9.866568pt;}
.wsb9{word-spacing:-9.813235pt;}
.ws52{word-spacing:-9.653237pt;}
.ws5e{word-spacing:-9.599904pt;}
.ws8f{word-spacing:-9.599880pt;}
.ws1a{word-spacing:-9.546571pt;}
.ws61{word-spacing:-9.514548pt;}
.wse1{word-spacing:-9.493238pt;}
.wsb0{word-spacing:-9.386573pt;}
.ws29{word-spacing:-9.333240pt;}
.ws1f{word-spacing:-9.301217pt;}
.ws7b{word-spacing:-9.279907pt;}
.ws1e{word-spacing:-9.258551pt;}
.wsad{word-spacing:-9.226574pt;}
.wsc2{word-spacing:-9.173242pt;}
.ws9e{word-spacing:-9.119909pt;}
.ws9f{word-spacing:-9.066576pt;}
.wsb8{word-spacing:-9.013243pt;}
.wsc3{word-spacing:-8.959910pt;}
.ws28{word-spacing:-8.853245pt;}
.ws6d{word-spacing:-8.799912pt;}
.ws9a{word-spacing:-8.750489pt;}
.ws9b{word-spacing:-8.746579pt;}
.ws78{word-spacing:-8.693246pt;}
.ws5d{word-spacing:-8.639914pt;}
.ws5c{word-spacing:-8.586581pt;}
.wsba{word-spacing:-8.479915pt;}
.wsa0{word-spacing:-8.426582pt;}
.wsa5{word-spacing:-8.373250pt;}
.ws3{word-spacing:-8.325214pt;}
.ws81{word-spacing:-8.319917pt;}
.ws1{word-spacing:-8.313948pt;}
.ws0{word-spacing:-8.287882pt;}
.ws2{word-spacing:-8.287140pt;}
.ws37{word-spacing:-8.266584pt;}
.ws51{word-spacing:-8.159918pt;}
.ws23{word-spacing:-8.106586pt;}
.wsf5{word-spacing:-8.053253pt;}
.ws34{word-spacing:-7.893254pt;}
.ws22{word-spacing:-7.786589pt;}
.ws5b{word-spacing:-7.733256pt;}
.wsff{word-spacing:-7.626590pt;}
.ws93{word-spacing:-7.519925pt;}
.ws94{word-spacing:-7.466592pt;}
.ws35{word-spacing:-7.413259pt;}
.ws36{word-spacing:-7.359926pt;}
.ws38{word-spacing:-7.253261pt;}
.ws8c{word-spacing:-7.204297pt;}
.ws8b{word-spacing:-7.199928pt;}
.ws82{word-spacing:-7.093262pt;}
.wse0{word-spacing:-7.039930pt;}
.ws6c{word-spacing:-6.986597pt;}
.ws101{word-spacing:-6.879931pt;}
.ws3d{word-spacing:-6.826598pt;}
.wsab{word-spacing:-6.773266pt;}
.wsaa{word-spacing:-6.766311pt;}
.wsd2{word-spacing:-6.666600pt;}
.ws88{word-spacing:-6.613267pt;}
.ws87{word-spacing:-6.579645pt;}
.ws50{word-spacing:-6.453269pt;}
.wsa4{word-spacing:-6.346603pt;}
.ws2e{word-spacing:-6.186605pt;}
.ws58{word-spacing:-5.919941pt;}
.wsb6{word-spacing:-5.813275pt;}
.ws19{word-spacing:-5.706610pt;}
.wse3{word-spacing:-5.653277pt;}
.wsae{word-spacing:-5.599944pt;}
.ws70{word-spacing:-5.546611pt;}
.wsf3{word-spacing:-5.386613pt;}
.ws15{word-spacing:-5.279947pt;}
.ws3c{word-spacing:-5.119949pt;}
.wsbb{word-spacing:-4.959950pt;}
.wsbf{word-spacing:-4.906618pt;}
.wse5{word-spacing:-4.799952pt;}
.ws56{word-spacing:-4.693286pt;}
.ws7c{word-spacing:-4.266624pt;}
.wsed{word-spacing:-4.213291pt;}
.ws80{word-spacing:-4.159958pt;}
.wscd{word-spacing:-3.999960pt;}
.ws92{word-spacing:-3.893294pt;}
.wsbc{word-spacing:-3.839962pt;}
.wsbd{word-spacing:-3.786629pt;}
.ws103{word-spacing:-3.573298pt;}
.wsea{word-spacing:-3.519965pt;}
.ws53{word-spacing:-3.466632pt;}
.wsf4{word-spacing:-3.413299pt;}
.ws4c{word-spacing:-3.130667pt;}
.ws3a{word-spacing:-2.773306pt;}
.ws6a{word-spacing:-2.719973pt;}
.wsdb{word-spacing:-2.506642pt;}
.wsd5{word-spacing:-2.453309pt;}
.wsd1{word-spacing:-2.346643pt;}
.wsfe{word-spacing:-2.186645pt;}
.wsb7{word-spacing:-1.973314pt;}
.wsf2{word-spacing:-1.706650pt;}
.ws4a{word-spacing:-1.653317pt;}
.wsf6{word-spacing:-1.599984pt;}
.ws68{word-spacing:-1.439986pt;}
.ws67{word-spacing:-1.401867pt;}
.wsf1{word-spacing:-0.586661pt;}
.ws14{word-spacing:-0.053333pt;}
.ws12{word-spacing:-0.037333pt;}
.ws30{word-spacing:0.000000pt;}
.ws102{word-spacing:0.799992pt;}
.wseb{word-spacing:1.813315pt;}
.wscf{word-spacing:1.919981pt;}
.wsce{word-spacing:1.973314pt;}
.ws44{word-spacing:2.026646pt;}
.ws46{word-spacing:2.613307pt;}
.ws6b{word-spacing:3.413299pt;}
.ws48{word-spacing:4.106626pt;}
.ws49{word-spacing:4.139911pt;}
.wsf9{word-spacing:5.706610pt;}
.wsc4{word-spacing:5.813275pt;}
.ws45{word-spacing:6.719933pt;}
.ws69{word-spacing:11.146555pt;}
.ws47{word-spacing:11.679883pt;}
.wsfa{word-spacing:12.693206pt;}
.ws43{word-spacing:13.013203pt;}
.wsfc{word-spacing:13.386533pt;}
.wsfd{word-spacing:14.293190pt;}
.ws41{word-spacing:17.493158pt;}
.wsfb{word-spacing:17.759822pt;}
.ws75{word-spacing:18.666480pt;}
.ws42{word-spacing:19.199808pt;}
.ws74{word-spacing:27.199728pt;}
.ws73{word-spacing:27.270993pt;}
._14{margin-left:-8.789226pt;}
._8{margin-left:-6.271922pt;}
._0{margin-left:-5.189259pt;}
._6{margin-left:-3.711954pt;}
._3{margin-left:-2.799960pt;}
._2{margin-left:-1.194650pt;}
._9{width:1.014118pt;}
._5{width:1.946635pt;}
._7{width:3.361961pt;}
._15{width:10.261226pt;}
._b{width:12.394538pt;}
._1{width:13.813136pt;}
._16{width:15.359846pt;}
._13{width:16.529175pt;}
._11{width:20.411351pt;}
._10{width:21.461114pt;}
._a{width:26.335726pt;}
._12{width:29.413027pt;}
._c{width:36.452819pt;}
._e{width:421.909630pt;}
._d{width:504.997690pt;}
._4{width:1213.754109pt;}
._f{width:1759.016727pt;}
.fs9{font-size:26.666133pt;}
.fsb{font-size:31.999467pt;}
.fs5{font-size:33.599467pt;}
.fsa{font-size:33.724800pt;}
.fs0{font-size:37.332800pt;}
.fs8{font-size:37.472000pt;}
.fs4{font-size:42.666133pt;}
.fs6{font-size:47.999467pt;}
.fs7{font-size:53.332800pt;}
.fs3{font-size:58.666133pt;}
.fs2{font-size:110.398933pt;}
.fs1{font-size:127.998400pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:62.590667pt;}
.y38{bottom:63.653333pt;}
.y11f{bottom:99.505333pt;}
.y141{bottom:99.518667pt;}
.y28{bottom:103.504000pt;}
.y37{bottom:103.520000pt;}
.ybc{bottom:107.744000pt;}
.ydd{bottom:107.754667pt;}
.yfc{bottom:111.050667pt;}
.y140{bottom:112.852000pt;}
.y93{bottom:114.916000pt;}
.y27{bottom:116.170667pt;}
.y98{bottom:117.898667pt;}
.y36{bottom:119.520000pt;}
.y6f{bottom:123.428000pt;}
.ybb{bottom:123.744000pt;}
.ydc{bottom:123.754667pt;}
.y13f{bottom:126.185333pt;}
.yfb{bottom:127.050667pt;}
.y26{bottom:128.836000pt;}
.y11e{bottom:130.172000pt;}
.y92{bottom:130.916000pt;}
.y97{bottom:131.232000pt;}
.y35{bottom:135.520000pt;}
.y6e{bottom:139.428000pt;}
.y13e{bottom:139.518667pt;}
.yba{bottom:139.744000pt;}
.ydb{bottom:139.754667pt;}
.y25{bottom:141.502667pt;}
.yfa{bottom:143.050667pt;}
.y91{bottom:146.916000pt;}
.y34{bottom:151.520000pt;}
.y13d{bottom:152.852000pt;}
.y6d{bottom:155.428000pt;}
.yb9{bottom:155.744000pt;}
.yda{bottom:155.754667pt;}
.yf9{bottom:159.050667pt;}
.y90{bottom:162.916000pt;}
.y13c{bottom:166.185333pt;}
.y33{bottom:167.520000pt;}
.y6c{bottom:171.428000pt;}
.yb8{bottom:171.744000pt;}
.yd9{bottom:171.754667pt;}
.yf8{bottom:175.050667pt;}
.y11d{bottom:177.037333pt;}
.y8f{bottom:178.916000pt;}
.y24{bottom:179.518667pt;}
.y32{bottom:183.520000pt;}
.y6b{bottom:187.428000pt;}
.yb7{bottom:187.744000pt;}
.yd8{bottom:187.754667pt;}
.yf7{bottom:191.050667pt;}
.y13b{bottom:192.852000pt;}
.y11c{bottom:193.037333pt;}
.y8e{bottom:194.916000pt;}
.y31{bottom:199.520000pt;}
.y6a{bottom:203.428000pt;}
.yb6{bottom:203.744000pt;}
.yd7{bottom:203.754667pt;}
.y13a{bottom:206.185333pt;}
.yf6{bottom:207.050667pt;}
.y11b{bottom:209.037333pt;}
.y8d{bottom:210.916000pt;}
.y30{bottom:215.520000pt;}
.y23{bottom:216.854667pt;}
.y69{bottom:219.428000pt;}
.y139{bottom:219.518667pt;}
.yb5{bottom:219.744000pt;}
.yd6{bottom:219.754667pt;}
.yf5{bottom:223.050667pt;}
.y11a{bottom:225.037333pt;}
.y8c{bottom:226.916000pt;}
.y2f{bottom:231.520000pt;}
.y138{bottom:232.852000pt;}
.y22{bottom:232.854667pt;}
.y68{bottom:235.428000pt;}
.yb4{bottom:235.744000pt;}
.yd5{bottom:235.754667pt;}
.yf4{bottom:239.050667pt;}
.y119{bottom:241.037333pt;}
.y8b{bottom:242.916000pt;}
.y137{bottom:246.185333pt;}
.y2e{bottom:247.520000pt;}
.y21{bottom:248.854667pt;}
.y67{bottom:251.428000pt;}
.yb3{bottom:251.744000pt;}
.yd4{bottom:251.754667pt;}
.yf3{bottom:255.050667pt;}
.y118{bottom:257.037333pt;}
.y136{bottom:259.518667pt;}
.y2d{bottom:263.520000pt;}
.y20{bottom:264.854667pt;}
.y66{bottom:267.428000pt;}
.yb2{bottom:267.744000pt;}
.yd3{bottom:267.754667pt;}
.yf2{bottom:271.050667pt;}
.y135{bottom:272.852000pt;}
.y117{bottom:273.037333pt;}
.y2c{bottom:279.520000pt;}
.y1f{bottom:280.854667pt;}
.y84{bottom:282.094667pt;}
.y65{bottom:283.428000pt;}
.yb1{bottom:283.744000pt;}
.yd2{bottom:283.754667pt;}
.y8a{bottom:284.864000pt;}
.y134{bottom:286.185333pt;}
.yf1{bottom:287.050667pt;}
.y116{bottom:289.037333pt;}
.y2b{bottom:295.520000pt;}
.y1e{bottom:296.854667pt;}
.y89{bottom:298.197333pt;}
.y64{bottom:299.428000pt;}
.y133{bottom:299.518667pt;}
.yb0{bottom:299.744000pt;}
.yd1{bottom:299.754667pt;}
.yf0{bottom:303.050667pt;}
.y115{bottom:305.037333pt;}
.y2a{bottom:311.520000pt;}
.y132{bottom:312.852000pt;}
.y1d{bottom:312.854667pt;}
.y63{bottom:315.428000pt;}
.yaf{bottom:315.744000pt;}
.yd0{bottom:315.754667pt;}
.yef{bottom:319.050667pt;}
.y114{bottom:321.037333pt;}
.y83{bottom:323.768000pt;}
.y131{bottom:326.185333pt;}
.y29{bottom:327.520000pt;}
.y62{bottom:331.428000pt;}
.yae{bottom:331.744000pt;}
.ycf{bottom:331.754667pt;}
.yee{bottom:335.050667pt;}
.y113{bottom:337.037333pt;}
.y130{bottom:339.518667pt;}
.y82{bottom:339.768000pt;}
.y1c{bottom:343.520000pt;}
.y61{bottom:347.428000pt;}
.yad{bottom:347.744000pt;}
.yce{bottom:347.754667pt;}
.yed{bottom:351.050667pt;}
.y112{bottom:353.037333pt;}
.y81{bottom:355.768000pt;}
.y60{bottom:363.428000pt;}
.yac{bottom:363.744000pt;}
.ycd{bottom:363.754667pt;}
.yec{bottom:367.050667pt;}
.y12f{bottom:367.517333pt;}
.y111{bottom:369.037333pt;}
.y80{bottom:371.768000pt;}
.y5f{bottom:379.428000pt;}
.yab{bottom:379.744000pt;}
.ycc{bottom:379.754667pt;}
.yeb{bottom:383.050667pt;}
.y110{bottom:385.037333pt;}
.y7f{bottom:387.768000pt;}
.y1b{bottom:391.374667pt;}
.y5e{bottom:395.428000pt;}
.yaa{bottom:395.744000pt;}
.ycb{bottom:395.754667pt;}
.yea{bottom:399.050667pt;}
.y10f{bottom:401.037333pt;}
.y7e{bottom:403.768000pt;}
.y12e{bottom:408.377333pt;}
.y5d{bottom:411.428000pt;}
.ya9{bottom:411.744000pt;}
.yca{bottom:411.754667pt;}
.ye9{bottom:415.050667pt;}
.y10e{bottom:417.037333pt;}
.y1a{bottom:419.328000pt;}
.y7d{bottom:419.768000pt;}
.y12d{bottom:424.377333pt;}
.y5c{bottom:427.428000pt;}
.ya8{bottom:427.744000pt;}
.yc9{bottom:427.754667pt;}
.ye8{bottom:431.050667pt;}
.y10d{bottom:433.037333pt;}
.y7c{bottom:435.768000pt;}
.y12c{bottom:440.377333pt;}
.y5b{bottom:443.428000pt;}
.ya7{bottom:443.744000pt;}
.yc8{bottom:443.754667pt;}
.y19{bottom:445.940000pt;}
.ye7{bottom:447.050667pt;}
.y7b{bottom:451.768000pt;}
.y12b{bottom:456.377333pt;}
.y5a{bottom:459.428000pt;}
.ya6{bottom:459.744000pt;}
.yc7{bottom:459.754667pt;}
.y18{bottom:461.940000pt;}
.ye6{bottom:463.050667pt;}
.y10c{bottom:463.704000pt;}
.y7a{bottom:467.768000pt;}
.y164{bottom:470.412000pt;}
.y96{bottom:475.330667pt;}
.y59{bottom:475.428000pt;}
.ya5{bottom:475.744000pt;}
.yc6{bottom:475.754667pt;}
.y17{bottom:477.940000pt;}
.ye5{bottom:479.050667pt;}
.y163{bottom:483.745333pt;}
.y79{bottom:483.768000pt;}
.y12a{bottom:487.044000pt;}
.y95{bottom:488.664000pt;}
.y58{bottom:491.428000pt;}
.ya4{bottom:491.744000pt;}
.y16{bottom:493.940000pt;}
.ye4{bottom:495.050667pt;}
.y162{bottom:497.078667pt;}
.y78{bottom:499.768000pt;}
.y94{bottom:501.997333pt;}
.y57{bottom:507.428000pt;}
.ya3{bottom:507.744000pt;}
.yc5{bottom:507.749333pt;}
.y15{bottom:509.940000pt;}
.y161{bottom:510.412000pt;}
.y10b{bottom:510.570667pt;}
.ye3{bottom:511.050667pt;}
.y77{bottom:515.768000pt;}
.y56{bottom:523.428000pt;}
.ya2{bottom:523.744000pt;}
.y160{bottom:523.745333pt;}
.yc4{bottom:523.749333pt;}
.y14{bottom:525.940000pt;}
.y10a{bottom:526.570667pt;}
.ye2{bottom:527.050667pt;}
.y129{bottom:527.904000pt;}
.y76{bottom:531.768000pt;}
.y15f{bottom:537.078667pt;}
.y55{bottom:539.428000pt;}
.ya1{bottom:539.744000pt;}
.yc3{bottom:539.749333pt;}
.y13{bottom:541.940000pt;}
.y109{bottom:542.570667pt;}
.y128{bottom:543.904000pt;}
.y75{bottom:547.768000pt;}
.y15e{bottom:550.412000pt;}
.y54{bottom:555.428000pt;}
.ya0{bottom:555.744000pt;}
.yc2{bottom:555.749333pt;}
.y12{bottom:557.940000pt;}
.y108{bottom:558.570667pt;}
.y127{bottom:559.904000pt;}
.y15d{bottom:563.745333pt;}
.ye1{bottom:569.000000pt;}
.y53{bottom:571.428000pt;}
.y9f{bottom:571.744000pt;}
.yc1{bottom:571.749333pt;}
.y11{bottom:573.940000pt;}
.y107{bottom:574.570667pt;}
.y126{bottom:575.904000pt;}
.y15c{bottom:577.078667pt;}
.ye0{bottom:582.333333pt;}
.y74{bottom:583.426667pt;}
.y52{bottom:587.428000pt;}
.y9e{bottom:587.744000pt;}
.yc0{bottom:587.749333pt;}
.y10{bottom:590.000000pt;}
.y15b{bottom:590.410667pt;}
.y106{bottom:590.570667pt;}
.y125{bottom:591.904000pt;}
.ydf{bottom:595.666667pt;}
.y73{bottom:596.760000pt;}
.y51{bottom:603.428000pt;}
.y9d{bottom:603.744000pt;}
.ybf{bottom:603.749333pt;}
.y105{bottom:606.570667pt;}
.y124{bottom:607.904000pt;}
.yde{bottom:609.000000pt;}
.y72{bottom:610.093333pt;}
.y15a{bottom:617.077333pt;}
.y50{bottom:619.428000pt;}
.y9c{bottom:619.744000pt;}
.ybe{bottom:619.749333pt;}
.y104{bottom:622.570667pt;}
.y71{bottom:623.426667pt;}
.y123{bottom:623.904000pt;}
.yf{bottom:626.789333pt;}
.y159{bottom:630.410667pt;}
.y9b{bottom:635.744000pt;}
.ybd{bottom:635.749333pt;}
.y70{bottom:636.760000pt;}
.y103{bottom:638.570667pt;}
.y122{bottom:639.904000pt;}
.ye{bottom:641.456000pt;}
.y158{bottom:643.744000pt;}
.y4f{bottom:650.094667pt;}
.y9a{bottom:651.744000pt;}
.y102{bottom:654.570667pt;}
.y121{bottom:655.904000pt;}
.yd{bottom:656.122667pt;}
.y157{bottom:657.077333pt;}
.y99{bottom:667.744000pt;}
.y156{bottom:670.410667pt;}
.y101{bottom:670.570667pt;}
.y120{bottom:671.904000pt;}
.y4e{bottom:683.744000pt;}
.y100{bottom:686.570667pt;}
.yc{bottom:688.057333pt;}
.y155{bottom:697.077333pt;}
.y4d{bottom:699.744000pt;}
.yff{bottom:702.570667pt;}
.y154{bottom:710.410667pt;}
.y4c{bottom:715.744000pt;}
.yb{bottom:717.466667pt;}
.y153{bottom:723.744000pt;}
.y4b{bottom:731.744000pt;}
.y88{bottom:736.580000pt;}
.ya{bottom:736.781333pt;}
.y152{bottom:737.077333pt;}
.yfe{bottom:744.518667pt;}
.y4a{bottom:747.744000pt;}
.y87{bottom:749.912000pt;}
.y151{bottom:750.410667pt;}
.y9{bottom:751.448000pt;}
.yfd{bottom:757.852000pt;}
.y86{bottom:763.245333pt;}
.y49{bottom:763.744000pt;}
.y8{bottom:772.120000pt;}
.y150{bottom:777.077333pt;}
.y48{bottom:779.744000pt;}
.y7{bottom:789.453333pt;}
.y14f{bottom:790.410667pt;}
.y47{bottom:795.744000pt;}
.y14e{bottom:803.744000pt;}
.y46{bottom:811.744000pt;}
.y14d{bottom:817.077333pt;}
.y45{bottom:827.744000pt;}
.y14c{bottom:830.410667pt;}
.y6{bottom:840.801333pt;}
.y44{bottom:843.744000pt;}
.y14b{bottom:857.077333pt;}
.y43{bottom:859.744000pt;}
.y14a{bottom:870.410667pt;}
.y42{bottom:875.744000pt;}
.y5{bottom:880.801333pt;}
.y149{bottom:883.744000pt;}
.y41{bottom:891.744000pt;}
.y148{bottom:897.077333pt;}
.y40{bottom:907.744000pt;}
.y147{bottom:910.410667pt;}
.y4{bottom:920.801333pt;}
.y3f{bottom:923.744000pt;}
.y146{bottom:937.077333pt;}
.y3e{bottom:939.744000pt;}
.y145{bottom:950.410667pt;}
.y3d{bottom:955.744000pt;}
.y3{bottom:960.801333pt;}
.y144{bottom:963.744000pt;}
.y3c{bottom:971.744000pt;}
.y143{bottom:977.077333pt;}
.y3b{bottom:987.744000pt;}
.y142{bottom:990.410667pt;}
.y3a{bottom:1003.744000pt;}
.y2{bottom:1016.948000pt;}
.y1{bottom:1036.325333pt;}
.y39{bottom:1043.705333pt;}
.hb{height:12.399752pt;}
.h5{height:23.519627pt;}
.h2{height:28.932920pt;}
.he{height:28.938253pt;}
.hc{height:29.866293pt;}
.hd{height:29.871627pt;}
.h6{height:33.599627pt;}
.h12{height:33.604960pt;}
.h7{height:35.375607pt;}
.hf{height:35.653079pt;}
.h10{height:35.658412pt;}
.h8{height:37.332960pt;}
.ha{height:39.306274pt;}
.h11{height:41.900623pt;}
.h9{height:45.585067pt;}
.h4{height:53.775627pt;}
.h3{height:94.334821pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:63.761333pt;}
.xd{left:64.653333pt;}
.xb{left:70.653333pt;}
.x6{left:79.701333pt;}
.xc{left:103.312000pt;}
.x3{left:138.500000pt;}
.x7{left:396.910667pt;}
.x4{left:407.474667pt;}
.xe{left:408.368000pt;}
.x9{left:414.368000pt;}
.x5{left:423.414667pt;}
.x8{left:428.064000pt;}
.xa{left:447.026667pt;}
.x1{left:569.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;
}
