
/* 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_d27823eb3a12.woff")format("woff");}.ff1{font-family:ff1;line-height:1.097000;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_46c8f95621df.woff")format("woff");}.ff2{font-family:ff2;line-height:1.056000;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_4e8ddd9ea59a.woff")format("woff");}.ff3{font-family:ff3;line-height:1.042000;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_7c41e5b5d93a.woff")format("woff");}.ff4{font-family:ff4;line-height:1.100000;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_7cb1bb6e9bc9.woff")format("woff");}.ff5{font-family:ff5;line-height:1.057000;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_a6c7686c31fc.woff")format("woff");}.ff6{font-family:ff6;line-height:0.843000;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_430d98542b6c.woff")format("woff");}.ff7{font-family:ff7;line-height:1.053000;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_66bb9936c89a.woff")format("woff");}.ff8{font-family:ff8;line-height:0.967000;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_32bfefb9b5a3.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_021644664f6f.woff")format("woff");}.ffa{font-family:ffa;line-height:0.973000;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_80646a9bb6a3.woff")format("woff");}.ffb{font-family:ffb;line-height:1.039000;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_cedd7f06f4af.woff")format("woff");}.ffc{font-family:ffc;line-height:0.933000;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_0b2504ae9298.woff")format("woff");}.ffd{font-family:ffd;line-height:1.056000;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_1e881df9531f.woff")format("woff");}.ffe{font-family:ffe;line-height:0.968000;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_2e3f101c5f6d.woff")format("woff");}.fff{font-family:fff;line-height:1.072000;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:ff10;src:url("fonts/font_0015_fd2b607e2354.woff")format("woff");}.ff10{font-family:ff10;line-height:0.941000;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;}
.m1{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,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);}
.v3{vertical-align:-18.981000px;}
.v4{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.000000px;}
.v1{vertical-align:19.869000px;}
.ls39{letter-spacing:-5.130000px;}
.ls4b{letter-spacing:-4.830600px;}
.ls56{letter-spacing:-4.581600px;}
.ls57{letter-spacing:-4.282800px;}
.ls3a{letter-spacing:-3.819000px;}
.ls3b{letter-spacing:-3.666000px;}
.ls59{letter-spacing:-3.087600px;}
.ls5a{letter-spacing:-3.037800px;}
.ls40{letter-spacing:-2.689200px;}
.ls26{letter-spacing:-2.337000px;}
.ls14{letter-spacing:-2.280000px;}
.ls55{letter-spacing:-2.091600px;}
.ls25{letter-spacing:-1.995000px;}
.ls23{letter-spacing:-1.872000px;}
.ls13{letter-spacing:-1.800000px;}
.ls44{letter-spacing:-1.494000px;}
.ls3d{letter-spacing:-1.452000px;}
.ls3f{letter-spacing:-1.404000px;}
.ls51{letter-spacing:-1.394400px;}
.ls4c{letter-spacing:-1.344600px;}
.ls3e{letter-spacing:-1.311000px;}
.ls32{letter-spacing:-1.197000px;}
.ls28{letter-spacing:-1.134000px;}
.ls37{letter-spacing:-1.083000px;}
.ls5{letter-spacing:-1.026000px;}
.ls10{letter-spacing:-0.969000px;}
.ls1{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.912000px;}
.ls1a{letter-spacing:-0.864000px;}
.ls30{letter-spacing:-0.858000px;}
.ls20{letter-spacing:-0.855000px;}
.lsa{letter-spacing:-0.798000px;}
.ls2c{letter-spacing:-0.792000px;}
.ls15{letter-spacing:-0.780000px;}
.ls1f{letter-spacing:-0.741000px;}
.ls33{letter-spacing:-0.726000px;}
.ls54{letter-spacing:-0.697200px;}
.lse{letter-spacing:-0.684000px;}
.ls29{letter-spacing:-0.660000px;}
.ls41{letter-spacing:-0.647400px;}
.lsb{letter-spacing:-0.627000px;}
.ls4a{letter-spacing:-0.597600px;}
.ls6{letter-spacing:-0.570000px;}
.ls46{letter-spacing:-0.547800px;}
.ls16{letter-spacing:-0.546000px;}
.ls19{letter-spacing:-0.528000px;}
.lsd{letter-spacing:-0.513000px;}
.ls43{letter-spacing:-0.498000px;}
.ls1b{letter-spacing:-0.480000px;}
.ls17{letter-spacing:-0.462000px;}
.ls1d{letter-spacing:-0.456000px;}
.ls5b{letter-spacing:-0.448200px;}
.ls1c{letter-spacing:-0.399000px;}
.ls58{letter-spacing:-0.348600px;}
.lsc{letter-spacing:-0.342000px;}
.ls18{letter-spacing:-0.330000px;}
.ls42{letter-spacing:-0.298800px;}
.ls7{letter-spacing:-0.285000px;}
.ls4e{letter-spacing:-0.249000px;}
.ls12{letter-spacing:-0.228000px;}
.ls49{letter-spacing:-0.199200px;}
.ls3{letter-spacing:-0.171000px;}
.ls53{letter-spacing:-0.149400px;}
.lsf{letter-spacing:-0.114000px;}
.ls48{letter-spacing:-0.099600px;}
.ls9{letter-spacing:-0.057000px;}
.ls45{letter-spacing:-0.049800px;}
.ls4{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.000120px;}
.ls11{letter-spacing:0.057000px;}
.ls22{letter-spacing:0.114000px;}
.ls21{letter-spacing:0.171000px;}
.ls24{letter-spacing:0.224520px;}
.ls1e{letter-spacing:0.228000px;}
.ls4d{letter-spacing:0.249000px;}
.ls2a{letter-spacing:0.285000px;}
.ls34{letter-spacing:0.294000px;}
.ls2b{letter-spacing:0.342000px;}
.ls52{letter-spacing:0.348600px;}
.ls38{letter-spacing:0.399000px;}
.ls2d{letter-spacing:0.420000px;}
.ls27{letter-spacing:0.456000px;}
.ls36{letter-spacing:0.627000px;}
.ls47{letter-spacing:0.647400px;}
.ls2{letter-spacing:0.684000px;}
.ls31{letter-spacing:0.714000px;}
.ls5c{letter-spacing:0.750000px;}
.ls50{letter-spacing:0.846600px;}
.ls4f{letter-spacing:0.996000px;}
.ls3c{letter-spacing:1.020000px;}
.ls2f{letter-spacing:1.368000px;}
.ls0{letter-spacing:2.880000px;}
.ls35{letter-spacing:19.437000px;}
.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;}
}
.ws8a{word-spacing:-23.652000px;}
.ws89{word-spacing:-18.396000px;}
.wsb1{word-spacing:-14.040000px;}
.ws83{word-spacing:-13.338000px;}
.ws0{word-spacing:-12.939000px;}
.ws73{word-spacing:-12.597000px;}
.ws72{word-spacing:-12.141000px;}
.ws1{word-spacing:-12.084000px;}
.ws71{word-spacing:-12.027000px;}
.ws70{word-spacing:-11.856000px;}
.ws2{word-spacing:-11.514000px;}
.ws27{word-spacing:-10.773000px;}
.ws4{word-spacing:-9.696000px;}
.ws88{word-spacing:-9.661200px;}
.ws85{word-spacing:-9.511800px;}
.ws84{word-spacing:-9.462000px;}
.ws87{word-spacing:-9.063600px;}
.ws60{word-spacing:-8.832000px;}
.ws86{word-spacing:-8.316600px;}
.ws28{word-spacing:-7.824000px;}
.ws42{word-spacing:-7.543437px;}
.ws5{word-spacing:-2.928000px;}
.ws45{word-spacing:-2.850000px;}
.ws36{word-spacing:-2.793000px;}
.ws2b{word-spacing:-2.622000px;}
.ws10{word-spacing:-2.565000px;}
.ws2e{word-spacing:-2.451000px;}
.wsab{word-spacing:-2.440200px;}
.wsa{word-spacing:-2.394000px;}
.ws94{word-spacing:-2.340600px;}
.ws69{word-spacing:-2.337000px;}
.ws5b{word-spacing:-2.280000px;}
.wsb2{word-spacing:-2.268000px;}
.wsa8{word-spacing:-2.241000px;}
.ws8c{word-spacing:-2.223000px;}
.wsb3{word-spacing:-2.214000px;}
.ws18{word-spacing:-2.166000px;}
.wsaf{word-spacing:-2.141400px;}
.ws79{word-spacing:-2.109000px;}
.ws46{word-spacing:-2.052000px;}
.wsb4{word-spacing:-2.016000px;}
.ws51{word-spacing:-1.995000px;}
.wsa7{word-spacing:-1.992000px;}
.ws8e{word-spacing:-1.942200px;}
.ws16{word-spacing:-1.881000px;}
.ws34{word-spacing:-1.824000px;}
.ws7b{word-spacing:-1.767000px;}
.wsb6{word-spacing:-1.764000px;}
.ws7f{word-spacing:-1.710000px;}
.ws95{word-spacing:-1.693200px;}
.ws6d{word-spacing:-1.653000px;}
.ws40{word-spacing:-1.596000px;}
.ws59{word-spacing:-1.539000px;}
.ws19{word-spacing:-1.425000px;}
.ws65{word-spacing:-1.311000px;}
.ws9d{word-spacing:-1.294800px;}
.ws3b{word-spacing:-1.254000px;}
.ws63{word-spacing:-1.197000px;}
.ws92{word-spacing:-1.145400px;}
.ws64{word-spacing:-1.140000px;}
.wsb{word-spacing:-1.026000px;}
.ws99{word-spacing:-0.996000px;}
.ws17{word-spacing:-0.969000px;}
.ws6b{word-spacing:-0.912000px;}
.wsd{word-spacing:-0.855000px;}
.ws35{word-spacing:-0.798000px;}
.ws90{word-spacing:-0.796800px;}
.wsb5{word-spacing:-0.750000px;}
.ws82{word-spacing:-0.741000px;}
.ws1d{word-spacing:-0.720000px;}
.ws68{word-spacing:-0.714000px;}
.ws33{word-spacing:-0.684000px;}
.ws3d{word-spacing:-0.627000px;}
.ws47{word-spacing:-0.570000px;}
.ws4d{word-spacing:-0.513000px;}
.wsa4{word-spacing:-0.498000px;}
.ws2a{word-spacing:-0.456000px;}
.wsac{word-spacing:-0.448200px;}
.ws5f{word-spacing:-0.420000px;}
.ws55{word-spacing:-0.399000px;}
.wsb0{word-spacing:-0.398400px;}
.ws9c{word-spacing:-0.348600px;}
.ws32{word-spacing:-0.342000px;}
.ws23{word-spacing:-0.330000px;}
.ws6f{word-spacing:-0.294000px;}
.ws13{word-spacing:-0.285000px;}
.ws9b{word-spacing:-0.249000px;}
.ws22{word-spacing:-0.228000px;}
.ws21{word-spacing:-0.198000px;}
.ws24{word-spacing:-0.132000px;}
.ws5a{word-spacing:-0.114000px;}
.ws1c{word-spacing:-0.057000px;}
.ws9{word-spacing:0.000000px;}
.ws91{word-spacing:0.049800px;}
.ws2f{word-spacing:0.057000px;}
.ws6e{word-spacing:0.066000px;}
.ws9e{word-spacing:0.099600px;}
.wse{word-spacing:0.114000px;}
.ws5d{word-spacing:0.132000px;}
.wsa1{word-spacing:0.149400px;}
.ws6{word-spacing:0.156000px;}
.ws3a{word-spacing:0.171000px;}
.ws66{word-spacing:0.198000px;}
.ws30{word-spacing:0.228000px;}
.ws11{word-spacing:0.285000px;}
.wsae{word-spacing:0.298800px;}
.ws58{word-spacing:0.342000px;}
.ws2d{word-spacing:0.399000px;}
.ws3c{word-spacing:0.456000px;}
.ws26{word-spacing:0.480000px;}
.ws7e{word-spacing:0.513000px;}
.ws20{word-spacing:0.546000px;}
.ws25{word-spacing:0.570000px;}
.ws1e{word-spacing:0.600000px;}
.ws6c{word-spacing:0.627000px;}
.ws4e{word-spacing:0.684000px;}
.ws48{word-spacing:0.741000px;}
.ws1f{word-spacing:0.780000px;}
.ws8b{word-spacing:0.792000px;}
.ws31{word-spacing:0.798000px;}
.ws97{word-spacing:0.846600px;}
.ws6a{word-spacing:0.855000px;}
.ws9f{word-spacing:0.896400px;}
.ws3f{word-spacing:0.912000px;}
.ws38{word-spacing:0.969000px;}
.ws8f{word-spacing:0.996000px;}
.ws4a{word-spacing:1.026000px;}
.wsc{word-spacing:1.083000px;}
.ws52{word-spacing:1.134000px;}
.ws12{word-spacing:1.140000px;}
.ws7a{word-spacing:1.197000px;}
.wsaa{word-spacing:1.245000px;}
.ws14{word-spacing:1.254000px;}
.ws8{word-spacing:1.311000px;}
.ws37{word-spacing:1.368000px;}
.ws2c{word-spacing:1.425000px;}
.ws4f{word-spacing:1.482000px;}
.ws98{word-spacing:1.494000px;}
.ws15{word-spacing:1.539000px;}
.wsa2{word-spacing:1.593600px;}
.ws5e{word-spacing:1.596000px;}
.ws62{word-spacing:1.653000px;}
.ws29{word-spacing:1.710000px;}
.ws4c{word-spacing:1.767000px;}
.wsf{word-spacing:1.824000px;}
.ws1b{word-spacing:1.881000px;}
.ws49{word-spacing:1.938000px;}
.wsa3{word-spacing:1.942200px;}
.ws93{word-spacing:1.992000px;}
.ws39{word-spacing:1.995000px;}
.ws61{word-spacing:2.052000px;}
.ws44{word-spacing:2.109000px;}
.ws41{word-spacing:2.166000px;}
.ws8d{word-spacing:2.191200px;}
.ws1a{word-spacing:2.223000px;}
.ws54{word-spacing:2.280000px;}
.ws96{word-spacing:2.290800px;}
.ws3e{word-spacing:2.337000px;}
.ws53{word-spacing:2.451000px;}
.wsad{word-spacing:2.539800px;}
.ws57{word-spacing:2.565000px;}
.wsa9{word-spacing:2.589600px;}
.ws77{word-spacing:2.622000px;}
.ws5c{word-spacing:2.679000px;}
.ws81{word-spacing:2.793000px;}
.ws67{word-spacing:2.850000px;}
.ws80{word-spacing:2.886000px;}
.ws4b{word-spacing:2.907000px;}
.ws56{word-spacing:3.249000px;}
.ws7c{word-spacing:3.363000px;}
.ws75{word-spacing:3.477000px;}
.ws50{word-spacing:3.705000px;}
.wsa6{word-spacing:3.784800px;}
.wsa5{word-spacing:4.083600px;}
.ws76{word-spacing:4.161000px;}
.ws78{word-spacing:4.332000px;}
.wsa0{word-spacing:4.332600px;}
.ws7{word-spacing:4.674000px;}
.ws7d{word-spacing:6.840000px;}
.ws9a{word-spacing:6.872400px;}
.ws3{word-spacing:1826.294400px;}
.ws74{word-spacing:1826.476800px;}
.ws43{word-spacing:1826.520000px;}
._d{margin-left:-43.616400px;}
._7{margin-left:-14.382000px;}
._13{margin-left:-10.998000px;}
._11{margin-left:-9.023400px;}
._8{margin-left:-5.980800px;}
._4{margin-left:-4.477800px;}
._3{margin-left:-3.357300px;}
._5{margin-left:-2.236200px;}
._2{margin-left:-1.075800px;}
._0{width:1.240200px;}
._1{width:2.647200px;}
._a{width:3.884100px;}
._c{width:5.235900px;}
._12{width:9.960000px;}
._6{width:12.096000px;}
._10{width:15.428400px;}
._f{width:18.710400px;}
._e{width:20.889000px;}
._b{width:1835.857200px;}
._9{width:1837.537200px;}
.fc6{color:transparent;}
.fc5{color:rgb(116,116,116);}
.fc4{color:rgb(152,152,152);}
.fc3{color:rgb(129,129,129);}
.fc2{color:rgb(90,90,90);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:30.000000px;}
.fs2{font-size:33.231000px;}
.fs3{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fsa{font-size:49.800000px;}
.fs9{font-size:51.000000px;}
.fsd{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fse{font-size:72.000000px;}
.fs0{font-size:78.000000px;}
.fsb{font-size:84.000000px;}
.fs10{font-size:108.000000px;}
.fs6{font-size:120.000000px;}
.fs5{font-size:180.000000px;}
.fsc{font-size:234.000000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:29.267700px;}
.y143{bottom:67.945950px;}
.y28{bottom:67.994100px;}
.y4b{bottom:78.218700px;}
.yf8{bottom:81.494250px;}
.y142{bottom:84.960450px;}
.y19b{bottom:90.006750px;}
.y27{bottom:101.788950px;}
.ycb{bottom:101.800950px;}
.y141{bottom:101.974950px;}
.y119{bottom:102.004950px;}
.y4a{bottom:111.212700px;}
.y26{bottom:118.803450px;}
.yca{bottom:118.815450px;}
.yf7{bottom:118.935450px;}
.y140{bottom:118.989450px;}
.y118{bottom:119.019450px;}
.y49{bottom:127.714200px;}
.y197{bottom:130.907100px;}
.y25{bottom:135.817950px;}
.yc9{bottom:135.829950px;}
.yf6{bottom:135.949950px;}
.y161{bottom:135.997950px;}
.y13f{bottom:136.003950px;}
.y48{bottom:144.215700px;}
.y24{bottom:152.832450px;}
.yc8{bottom:152.844450px;}
.yf5{bottom:152.964450px;}
.y160{bottom:153.012450px;}
.y13e{bottom:153.018450px;}
.y117{bottom:153.036600px;}
.y47{bottom:160.717200px;}
.y23{bottom:169.846950px;}
.yc7{bottom:169.858950px;}
.yf4{bottom:169.978950px;}
.y15f{bottom:170.026950px;}
.y13d{bottom:170.032950px;}
.y46{bottom:177.218700px;}
.y19c{bottom:182.797200px;}
.y116{bottom:186.741450px;}
.y22{bottom:186.861450px;}
.yc6{bottom:186.873450px;}
.yf3{bottom:186.993450px;}
.y15e{bottom:187.041450px;}
.y13c{bottom:187.047450px;}
.y115{bottom:203.755950px;}
.y21{bottom:203.875950px;}
.yc5{bottom:203.887950px;}
.yf2{bottom:204.007950px;}
.y15d{bottom:204.055950px;}
.y13b{bottom:204.061950px;}
.y45{bottom:206.474700px;}
.y19a{bottom:216.772500px;}
.y114{bottom:220.770450px;}
.y20{bottom:220.890450px;}
.yc4{bottom:220.902450px;}
.yf1{bottom:221.022450px;}
.y15c{bottom:221.046450px;}
.y113{bottom:237.784950px;}
.y1f{bottom:237.904950px;}
.yc3{bottom:237.916950px;}
.yf0{bottom:238.036950px;}
.y15b{bottom:238.060950px;}
.y13a{bottom:238.078950px;}
.y199{bottom:238.372500px;}
.y44{bottom:249.377400px;}
.y112{bottom:254.799450px;}
.y1e{bottom:254.919450px;}
.yc2{bottom:254.931450px;}
.yef{bottom:255.051450px;}
.y15a{bottom:255.075450px;}
.y198{bottom:264.220500px;}
.y43{bottom:265.878900px;}
.y111{bottom:271.813950px;}
.y1d{bottom:271.933950px;}
.yc1{bottom:271.945950px;}
.yee{bottom:272.065950px;}
.y139{bottom:272.083950px;}
.y159{bottom:272.089950px;}
.y110{bottom:288.828450px;}
.y1c{bottom:288.948450px;}
.yc0{bottom:288.960450px;}
.yed{bottom:289.080450px;}
.y138{bottom:289.098450px;}
.y158{bottom:289.104450px;}
.y94{bottom:297.977550px;}
.y42{bottom:298.881900px;}
.y194{bottom:303.739050px;}
.y10f{bottom:305.842950px;}
.y1b{bottom:305.962950px;}
.ybf{bottom:305.974950px;}
.yec{bottom:306.094950px;}
.y137{bottom:306.112950px;}
.y93{bottom:313.723800px;}
.y41{bottom:315.383400px;}
.y193{bottom:320.239050px;}
.y10e{bottom:322.857450px;}
.y1a{bottom:322.977450px;}
.ybe{bottom:322.989450px;}
.yeb{bottom:323.109450px;}
.y157{bottom:323.121450px;}
.y92{bottom:329.470050px;}
.y40{bottom:331.884900px;}
.y192{bottom:336.739050px;}
.y10d{bottom:339.871950px;}
.y19{bottom:339.991950px;}
.ybd{bottom:340.003950px;}
.yea{bottom:340.123950px;}
.y136{bottom:340.129950px;}
.y3f{bottom:348.386400px;}
.y191{bottom:353.239050px;}
.y10c{bottom:356.886450px;}
.y18{bottom:357.006450px;}
.ybc{bottom:357.018450px;}
.ye9{bottom:357.126450px;}
.y190{bottom:369.739050px;}
.y10b{bottom:373.900950px;}
.y17{bottom:374.020950px;}
.ybb{bottom:374.032950px;}
.y6a{bottom:374.068950px;}
.y91{bottom:374.092950px;}
.ye8{bottom:374.140950px;}
.y3e{bottom:377.642400px;}
.y196{bottom:386.239050px;}
.y18f{bottom:386.251050px;}
.y10a{bottom:390.915450px;}
.y135{bottom:390.987450px;}
.y16{bottom:391.035450px;}
.yba{bottom:391.047450px;}
.y69{bottom:391.083450px;}
.y90{bottom:391.107450px;}
.ye7{bottom:391.155450px;}
.y195{bottom:402.739050px;}
.y18e{bottom:402.748050px;}
.y109{bottom:407.929950px;}
.y134{bottom:408.001950px;}
.y15{bottom:408.049950px;}
.yb9{bottom:408.061950px;}
.y68{bottom:408.097950px;}
.y8f{bottom:408.121950px;}
.y18d{bottom:419.245050px;}
.y3d{bottom:420.545100px;}
.y108{bottom:424.944450px;}
.y133{bottom:425.016450px;}
.y14{bottom:425.064450px;}
.yb8{bottom:425.076450px;}
.y67{bottom:425.112450px;}
.y8e{bottom:425.136450px;}
.ye6{bottom:425.172450px;}
.y189{bottom:432.796950px;}
.y18c{bottom:435.742050px;}
.y3c{bottom:437.046600px;}
.y107{bottom:441.958950px;}
.y132{bottom:442.030950px;}
.y13{bottom:442.078950px;}
.yb7{bottom:442.090950px;}
.y66{bottom:442.126950px;}
.y8d{bottom:442.150950px;}
.y18b{bottom:452.239050px;}
.y106{bottom:458.973450px;}
.y131{bottom:459.045450px;}
.y12{bottom:459.093450px;}
.yb6{bottom:459.105450px;}
.y65{bottom:459.141450px;}
.y8c{bottom:459.165450px;}
.ye5{bottom:459.171450px;}
.y3b{bottom:470.049600px;}
.y105{bottom:475.987950px;}
.y130{bottom:476.059950px;}
.y11{bottom:476.107950px;}
.yb5{bottom:476.119950px;}
.y64{bottom:476.155950px;}
.y8b{bottom:476.179950px;}
.ye4{bottom:476.185950px;}
.y3a{bottom:486.551100px;}
.y104{bottom:493.002450px;}
.y12f{bottom:493.074450px;}
.y10{bottom:493.122450px;}
.yb4{bottom:493.134450px;}
.y63{bottom:493.170450px;}
.y8a{bottom:493.194450px;}
.ye3{bottom:493.200450px;}
.y18a{bottom:497.433600px;}
.y39{bottom:503.052600px;}
.y103{bottom:510.016950px;}
.y12e{bottom:510.088950px;}
.yf{bottom:510.136950px;}
.yb3{bottom:510.148950px;}
.y62{bottom:510.184950px;}
.y89{bottom:510.208950px;}
.ye2{bottom:510.214950px;}
.y38{bottom:519.554100px;}
.y102{bottom:527.031450px;}
.y12d{bottom:527.103450px;}
.ye{bottom:527.151450px;}
.yb2{bottom:527.163450px;}
.y61{bottom:527.199450px;}
.y88{bottom:527.223450px;}
.y101{bottom:544.045950px;}
.y12c{bottom:544.117950px;}
.yd{bottom:544.165950px;}
.yb1{bottom:544.177950px;}
.y60{bottom:544.213950px;}
.ye1{bottom:544.231950px;}
.y37{bottom:548.810100px;}
.y100{bottom:561.060450px;}
.y12b{bottom:561.132450px;}
.yc{bottom:561.180450px;}
.yb0{bottom:561.192450px;}
.y5f{bottom:561.228450px;}
.y87{bottom:561.240450px;}
.yff{bottom:578.074950px;}
.y12a{bottom:578.146950px;}
.yb{bottom:578.194950px;}
.yaf{bottom:578.206950px;}
.y5e{bottom:578.242950px;}
.y36{bottom:591.712950px;}
.yfe{bottom:595.089450px;}
.y129{bottom:595.161450px;}
.ye0{bottom:595.185450px;}
.ya{bottom:595.209450px;}
.yae{bottom:595.221450px;}
.y5d{bottom:595.257450px;}
.y19d{bottom:597.310950px;}
.y35{bottom:608.214450px;}
.y86{bottom:612.029700px;}
.yfd{bottom:612.103950px;}
.y128{bottom:612.175950px;}
.ydf{bottom:612.199950px;}
.y9{bottom:612.223950px;}
.yad{bottom:612.235950px;}
.y85{bottom:629.044200px;}
.yfc{bottom:629.118450px;}
.y127{bottom:629.190450px;}
.yde{bottom:629.214450px;}
.y8{bottom:629.238450px;}
.yac{bottom:629.250450px;}
.y34{bottom:641.217450px;}
.y84{bottom:646.058700px;}
.yfb{bottom:646.132950px;}
.y126{bottom:646.204950px;}
.ydd{bottom:646.228950px;}
.y7{bottom:646.252950px;}
.yab{bottom:646.264950px;}
.y33{bottom:657.718950px;}
.y83{bottom:663.073200px;}
.yfa{bottom:663.147450px;}
.y125{bottom:663.219450px;}
.ydc{bottom:663.243450px;}
.y6{bottom:663.267450px;}
.yaa{bottom:663.279450px;}
.y32{bottom:674.220450px;}
.y82{bottom:680.087700px;}
.yf9{bottom:680.161950px;}
.y124{bottom:680.233950px;}
.ydb{bottom:680.257950px;}
.y5{bottom:680.281950px;}
.ya9{bottom:680.293950px;}
.y31{bottom:690.721950px;}
.y81{bottom:697.102200px;}
.ya8{bottom:697.176450px;}
.y123{bottom:697.248450px;}
.yda{bottom:697.272450px;}
.y4{bottom:697.296450px;}
.y16f{bottom:702.629100px;}
.y80{bottom:714.116700px;}
.ya7{bottom:714.190950px;}
.y122{bottom:714.262950px;}
.yd9{bottom:714.286950px;}
.y3{bottom:714.310950px;}
.y16e{bottom:717.629100px;}
.y188{bottom:719.161950px;}
.y30{bottom:719.977800px;}
.y5c{bottom:729.919650px;}
.y7f{bottom:731.131200px;}
.ya6{bottom:731.205450px;}
.y121{bottom:731.277450px;}
.yd8{bottom:731.301450px;}
.y2{bottom:731.325450px;}
.y16d{bottom:732.626850px;}
.y187{bottom:734.164200px;}
.y5b{bottom:745.665900px;}
.y16c{bottom:747.629100px;}
.y7e{bottom:748.145700px;}
.ya5{bottom:748.219950px;}
.y120{bottom:748.291950px;}
.y156{bottom:748.310100px;}
.yd7{bottom:748.315950px;}
.y186{bottom:749.166450px;}
.y5a{bottom:761.412150px;}
.y16b{bottom:762.629100px;}
.y185{bottom:764.161950px;}
.y7d{bottom:765.160200px;}
.ya4{bottom:765.234450px;}
.y11f{bottom:765.306450px;}
.y155{bottom:765.324600px;}
.yd6{bottom:765.330450px;}
.y1{bottom:765.342450px;}
.y16a{bottom:777.626850px;}
.y184{bottom:779.164200px;}
.y7c{bottom:782.174700px;}
.ya3{bottom:782.248950px;}
.y11e{bottom:782.320950px;}
.y154{bottom:782.339100px;}
.yd5{bottom:782.344950px;}
.y169{bottom:792.629100px;}
.y183{bottom:794.166450px;}
.y7b{bottom:799.189200px;}
.ya2{bottom:799.263450px;}
.y59{bottom:799.311450px;}
.yd4{bottom:799.317450px;}
.y11d{bottom:799.335450px;}
.y153{bottom:799.353600px;}
.y168{bottom:807.626850px;}
.y182{bottom:809.161950px;}
.y7a{bottom:816.203700px;}
.ya1{bottom:816.277950px;}
.y58{bottom:816.325950px;}
.yd3{bottom:816.331950px;}
.y11c{bottom:816.349950px;}
.y152{bottom:816.368100px;}
.y167{bottom:822.629100px;}
.y181{bottom:824.164200px;}
.y79{bottom:833.218200px;}
.ya0{bottom:833.292450px;}
.y57{bottom:833.340450px;}
.yd2{bottom:833.346450px;}
.y151{bottom:833.358450px;}
.y11b{bottom:833.364450px;}
.y180{bottom:839.166450px;}
.y2f{bottom:841.900800px;}
.y78{bottom:850.232700px;}
.y9f{bottom:850.306950px;}
.y56{bottom:850.354950px;}
.yd1{bottom:850.360950px;}
.y150{bottom:850.372950px;}
.y11a{bottom:850.378950px;}
.y166{bottom:850.384950px;}
.y17f{bottom:854.161950px;}
.y77{bottom:867.247200px;}
.y9e{bottom:867.321450px;}
.y55{bottom:867.369450px;}
.yd0{bottom:867.375450px;}
.y14f{bottom:867.387450px;}
.y2e{bottom:867.406800px;}
.y17e{bottom:869.164200px;}
.y17d{bottom:884.166450px;}
.y76{bottom:884.261700px;}
.y9d{bottom:884.335950px;}
.y54{bottom:884.383950px;}
.ycf{bottom:884.389950px;}
.y14e{bottom:884.401950px;}
.y2d{bottom:892.912800px;}
.y17c{bottom:899.161950px;}
.y75{bottom:901.276200px;}
.y9c{bottom:901.350450px;}
.y165{bottom:901.362450px;}
.y14d{bottom:901.392450px;}
.y53{bottom:901.398450px;}
.yce{bottom:901.404450px;}
.y17b{bottom:914.164200px;}
.y74{bottom:918.290700px;}
.y9b{bottom:918.364950px;}
.y164{bottom:918.376950px;}
.y14c{bottom:918.406950px;}
.y52{bottom:918.412950px;}
.y2c{bottom:918.418800px;}
.ycd{bottom:918.418950px;}
.y17a{bottom:929.166450px;}
.y73{bottom:935.305200px;}
.y9a{bottom:935.379450px;}
.y163{bottom:935.391450px;}
.y14b{bottom:935.421450px;}
.y51{bottom:935.427450px;}
.y179{bottom:944.164200px;}
.y72{bottom:952.319700px;}
.y99{bottom:952.393950px;}
.y162{bottom:952.405950px;}
.ycc{bottom:952.435950px;}
.y178{bottom:959.166450px;}
.y71{bottom:969.334200px;}
.y98{bottom:969.408450px;}
.y14a{bottom:969.420450px;}
.y2b{bottom:969.444450px;}
.y177{bottom:974.164200px;}
.y70{bottom:986.348700px;}
.y97{bottom:986.422950px;}
.y149{bottom:986.434950px;}
.y176{bottom:989.166450px;}
.y6f{bottom:1003.363200px;}
.y96{bottom:1003.437450px;}
.y148{bottom:1003.449450px;}
.y175{bottom:1004.166450px;}
.y174{bottom:1019.166450px;}
.y6e{bottom:1020.377700px;}
.y50{bottom:1020.451950px;}
.y147{bottom:1020.463950px;}
.y2a{bottom:1020.469800px;}
.y173{bottom:1034.159700px;}
.y6d{bottom:1037.392200px;}
.y4f{bottom:1037.466450px;}
.y146{bottom:1037.478450px;}
.y172{bottom:1049.161950px;}
.y6c{bottom:1054.406700px;}
.y145{bottom:1054.430700px;}
.y4e{bottom:1054.480950px;}
.y171{bottom:1064.164200px;}
.y6b{bottom:1071.421200px;}
.y144{bottom:1071.445200px;}
.y29{bottom:1071.495450px;}
.y170{bottom:1079.166450px;}
.y4d{bottom:1136.905485px;}
.y95{bottom:1136.905500px;}
.h1e{height:24.660000px;}
.h5{height:34.524000px;}
.h1a{height:38.934000px;}
.h1b{height:39.456000px;}
.hd{height:39.984000px;}
.h16{height:40.885800px;}
.h19{height:44.388000px;}
.h3{height:45.543000px;}
.h13{height:45.567000px;}
.h12{height:45.591000px;}
.h15{height:45.639000px;}
.h11{height:45.711000px;}
.h14{height:45.831000px;}
.hf{height:46.071000px;}
.h4{height:46.420569px;}
.hc{height:46.800000px;}
.hb{height:46.854000px;}
.he{height:48.279000px;}
.h6{height:51.000000px;}
.h1c{height:51.912000px;}
.h10{height:55.110000px;}
.ha{height:55.902000px;}
.h1d{height:58.032000px;}
.h9{height:64.116000px;}
.h2{height:66.066000px;}
.h17{height:67.704000px;}
.h1f{height:87.048000px;}
.h8{height:100.440000px;}
.h7{height:150.660000px;}
.h18{height:167.778000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:34.015800px;}
.x4{left:68.031450px;}
.x1b{left:76.535400px;}
.x7{left:80.789550px;}
.x9{left:85.039350px;}
.x6{left:93.543300px;}
.x19{left:102.047250px;}
.x5{left:195.590550px;}
.x1c{left:199.842600px;}
.x11{left:214.692300px;}
.x14{left:242.437650px;}
.x8{left:349.219050px;}
.x17{left:361.415550px;}
.x18{left:372.624600px;}
.x2{left:450.708600px;}
.x15{left:458.463450px;}
.x3{left:463.462350px;}
.xc{left:467.716500px;}
.xa{left:476.224950px;}
.x1a{left:484.724400px;}
.x10{left:535.567950px;}
.xf{left:570.236250px;}
.x1d{left:578.267550px;}
.x1f{left:607.137600px;}
.xb{left:651.807300px;}
.x13{left:675.106050px;}
.xe{left:677.435700px;}
.x1{left:716.786250px;}
.x12{left:726.019050px;}
.x16{left:760.769700px;}
.xd{left:770.811750px;}
@media print{
.v3{vertical-align:-16.872000pt;}
.v4{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.333333pt;}
.v1{vertical-align:17.661333pt;}
.ls39{letter-spacing:-4.560000pt;}
.ls4b{letter-spacing:-4.293867pt;}
.ls56{letter-spacing:-4.072533pt;}
.ls57{letter-spacing:-3.806933pt;}
.ls3a{letter-spacing:-3.394667pt;}
.ls3b{letter-spacing:-3.258667pt;}
.ls59{letter-spacing:-2.744533pt;}
.ls5a{letter-spacing:-2.700267pt;}
.ls40{letter-spacing:-2.390400pt;}
.ls26{letter-spacing:-2.077333pt;}
.ls14{letter-spacing:-2.026667pt;}
.ls55{letter-spacing:-1.859200pt;}
.ls25{letter-spacing:-1.773333pt;}
.ls23{letter-spacing:-1.664000pt;}
.ls13{letter-spacing:-1.600000pt;}
.ls44{letter-spacing:-1.328000pt;}
.ls3d{letter-spacing:-1.290667pt;}
.ls3f{letter-spacing:-1.248000pt;}
.ls51{letter-spacing:-1.239467pt;}
.ls4c{letter-spacing:-1.195200pt;}
.ls3e{letter-spacing:-1.165333pt;}
.ls32{letter-spacing:-1.064000pt;}
.ls28{letter-spacing:-1.008000pt;}
.ls37{letter-spacing:-0.962667pt;}
.ls5{letter-spacing:-0.912000pt;}
.ls10{letter-spacing:-0.861333pt;}
.ls1{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.810667pt;}
.ls1a{letter-spacing:-0.768000pt;}
.ls30{letter-spacing:-0.762667pt;}
.ls20{letter-spacing:-0.760000pt;}
.lsa{letter-spacing:-0.709333pt;}
.ls2c{letter-spacing:-0.704000pt;}
.ls15{letter-spacing:-0.693333pt;}
.ls1f{letter-spacing:-0.658667pt;}
.ls33{letter-spacing:-0.645333pt;}
.ls54{letter-spacing:-0.619733pt;}
.lse{letter-spacing:-0.608000pt;}
.ls29{letter-spacing:-0.586667pt;}
.ls41{letter-spacing:-0.575467pt;}
.lsb{letter-spacing:-0.557333pt;}
.ls4a{letter-spacing:-0.531200pt;}
.ls6{letter-spacing:-0.506667pt;}
.ls46{letter-spacing:-0.486933pt;}
.ls16{letter-spacing:-0.485333pt;}
.ls19{letter-spacing:-0.469333pt;}
.lsd{letter-spacing:-0.456000pt;}
.ls43{letter-spacing:-0.442667pt;}
.ls1b{letter-spacing:-0.426667pt;}
.ls17{letter-spacing:-0.410667pt;}
.ls1d{letter-spacing:-0.405333pt;}
.ls5b{letter-spacing:-0.398400pt;}
.ls1c{letter-spacing:-0.354667pt;}
.ls58{letter-spacing:-0.309867pt;}
.lsc{letter-spacing:-0.304000pt;}
.ls18{letter-spacing:-0.293333pt;}
.ls42{letter-spacing:-0.265600pt;}
.ls7{letter-spacing:-0.253333pt;}
.ls4e{letter-spacing:-0.221333pt;}
.ls12{letter-spacing:-0.202667pt;}
.ls49{letter-spacing:-0.177067pt;}
.ls3{letter-spacing:-0.152000pt;}
.ls53{letter-spacing:-0.132800pt;}
.lsf{letter-spacing:-0.101333pt;}
.ls48{letter-spacing:-0.088533pt;}
.ls9{letter-spacing:-0.050667pt;}
.ls45{letter-spacing:-0.044267pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.000107pt;}
.ls11{letter-spacing:0.050667pt;}
.ls22{letter-spacing:0.101333pt;}
.ls21{letter-spacing:0.152000pt;}
.ls24{letter-spacing:0.199573pt;}
.ls1e{letter-spacing:0.202667pt;}
.ls4d{letter-spacing:0.221333pt;}
.ls2a{letter-spacing:0.253333pt;}
.ls34{letter-spacing:0.261333pt;}
.ls2b{letter-spacing:0.304000pt;}
.ls52{letter-spacing:0.309867pt;}
.ls38{letter-spacing:0.354667pt;}
.ls2d{letter-spacing:0.373333pt;}
.ls27{letter-spacing:0.405333pt;}
.ls36{letter-spacing:0.557333pt;}
.ls47{letter-spacing:0.575467pt;}
.ls2{letter-spacing:0.608000pt;}
.ls31{letter-spacing:0.634667pt;}
.ls5c{letter-spacing:0.666667pt;}
.ls50{letter-spacing:0.752533pt;}
.ls4f{letter-spacing:0.885333pt;}
.ls3c{letter-spacing:0.906667pt;}
.ls2f{letter-spacing:1.216000pt;}
.ls0{letter-spacing:2.560000pt;}
.ls35{letter-spacing:17.277333pt;}
.ws8a{word-spacing:-21.024000pt;}
.ws89{word-spacing:-16.352000pt;}
.wsb1{word-spacing:-12.480000pt;}
.ws83{word-spacing:-11.856000pt;}
.ws0{word-spacing:-11.501333pt;}
.ws73{word-spacing:-11.197333pt;}
.ws72{word-spacing:-10.792000pt;}
.ws1{word-spacing:-10.741333pt;}
.ws71{word-spacing:-10.690667pt;}
.ws70{word-spacing:-10.538667pt;}
.ws2{word-spacing:-10.234667pt;}
.ws27{word-spacing:-9.576000pt;}
.ws4{word-spacing:-8.618667pt;}
.ws88{word-spacing:-8.587733pt;}
.ws85{word-spacing:-8.454933pt;}
.ws84{word-spacing:-8.410667pt;}
.ws87{word-spacing:-8.056533pt;}
.ws60{word-spacing:-7.850667pt;}
.ws86{word-spacing:-7.392533pt;}
.ws28{word-spacing:-6.954667pt;}
.ws42{word-spacing:-6.705277pt;}
.ws5{word-spacing:-2.602667pt;}
.ws45{word-spacing:-2.533333pt;}
.ws36{word-spacing:-2.482667pt;}
.ws2b{word-spacing:-2.330667pt;}
.ws10{word-spacing:-2.280000pt;}
.ws2e{word-spacing:-2.178667pt;}
.wsab{word-spacing:-2.169067pt;}
.wsa{word-spacing:-2.128000pt;}
.ws94{word-spacing:-2.080533pt;}
.ws69{word-spacing:-2.077333pt;}
.ws5b{word-spacing:-2.026667pt;}
.wsb2{word-spacing:-2.016000pt;}
.wsa8{word-spacing:-1.992000pt;}
.ws8c{word-spacing:-1.976000pt;}
.wsb3{word-spacing:-1.968000pt;}
.ws18{word-spacing:-1.925333pt;}
.wsaf{word-spacing:-1.903467pt;}
.ws79{word-spacing:-1.874667pt;}
.ws46{word-spacing:-1.824000pt;}
.wsb4{word-spacing:-1.792000pt;}
.ws51{word-spacing:-1.773333pt;}
.wsa7{word-spacing:-1.770667pt;}
.ws8e{word-spacing:-1.726400pt;}
.ws16{word-spacing:-1.672000pt;}
.ws34{word-spacing:-1.621333pt;}
.ws7b{word-spacing:-1.570667pt;}
.wsb6{word-spacing:-1.568000pt;}
.ws7f{word-spacing:-1.520000pt;}
.ws95{word-spacing:-1.505067pt;}
.ws6d{word-spacing:-1.469333pt;}
.ws40{word-spacing:-1.418667pt;}
.ws59{word-spacing:-1.368000pt;}
.ws19{word-spacing:-1.266667pt;}
.ws65{word-spacing:-1.165333pt;}
.ws9d{word-spacing:-1.150933pt;}
.ws3b{word-spacing:-1.114667pt;}
.ws63{word-spacing:-1.064000pt;}
.ws92{word-spacing:-1.018133pt;}
.ws64{word-spacing:-1.013333pt;}
.wsb{word-spacing:-0.912000pt;}
.ws99{word-spacing:-0.885333pt;}
.ws17{word-spacing:-0.861333pt;}
.ws6b{word-spacing:-0.810667pt;}
.wsd{word-spacing:-0.760000pt;}
.ws35{word-spacing:-0.709333pt;}
.ws90{word-spacing:-0.708267pt;}
.wsb5{word-spacing:-0.666667pt;}
.ws82{word-spacing:-0.658667pt;}
.ws1d{word-spacing:-0.640000pt;}
.ws68{word-spacing:-0.634667pt;}
.ws33{word-spacing:-0.608000pt;}
.ws3d{word-spacing:-0.557333pt;}
.ws47{word-spacing:-0.506667pt;}
.ws4d{word-spacing:-0.456000pt;}
.wsa4{word-spacing:-0.442667pt;}
.ws2a{word-spacing:-0.405333pt;}
.wsac{word-spacing:-0.398400pt;}
.ws5f{word-spacing:-0.373333pt;}
.ws55{word-spacing:-0.354667pt;}
.wsb0{word-spacing:-0.354133pt;}
.ws9c{word-spacing:-0.309867pt;}
.ws32{word-spacing:-0.304000pt;}
.ws23{word-spacing:-0.293333pt;}
.ws6f{word-spacing:-0.261333pt;}
.ws13{word-spacing:-0.253333pt;}
.ws9b{word-spacing:-0.221333pt;}
.ws22{word-spacing:-0.202667pt;}
.ws21{word-spacing:-0.176000pt;}
.ws24{word-spacing:-0.117333pt;}
.ws5a{word-spacing:-0.101333pt;}
.ws1c{word-spacing:-0.050667pt;}
.ws9{word-spacing:0.000000pt;}
.ws91{word-spacing:0.044267pt;}
.ws2f{word-spacing:0.050667pt;}
.ws6e{word-spacing:0.058667pt;}
.ws9e{word-spacing:0.088533pt;}
.wse{word-spacing:0.101333pt;}
.ws5d{word-spacing:0.117333pt;}
.wsa1{word-spacing:0.132800pt;}
.ws6{word-spacing:0.138667pt;}
.ws3a{word-spacing:0.152000pt;}
.ws66{word-spacing:0.176000pt;}
.ws30{word-spacing:0.202667pt;}
.ws11{word-spacing:0.253333pt;}
.wsae{word-spacing:0.265600pt;}
.ws58{word-spacing:0.304000pt;}
.ws2d{word-spacing:0.354667pt;}
.ws3c{word-spacing:0.405333pt;}
.ws26{word-spacing:0.426667pt;}
.ws7e{word-spacing:0.456000pt;}
.ws20{word-spacing:0.485333pt;}
.ws25{word-spacing:0.506667pt;}
.ws1e{word-spacing:0.533333pt;}
.ws6c{word-spacing:0.557333pt;}
.ws4e{word-spacing:0.608000pt;}
.ws48{word-spacing:0.658667pt;}
.ws1f{word-spacing:0.693333pt;}
.ws8b{word-spacing:0.704000pt;}
.ws31{word-spacing:0.709333pt;}
.ws97{word-spacing:0.752533pt;}
.ws6a{word-spacing:0.760000pt;}
.ws9f{word-spacing:0.796800pt;}
.ws3f{word-spacing:0.810667pt;}
.ws38{word-spacing:0.861333pt;}
.ws8f{word-spacing:0.885333pt;}
.ws4a{word-spacing:0.912000pt;}
.wsc{word-spacing:0.962667pt;}
.ws52{word-spacing:1.008000pt;}
.ws12{word-spacing:1.013333pt;}
.ws7a{word-spacing:1.064000pt;}
.wsaa{word-spacing:1.106667pt;}
.ws14{word-spacing:1.114667pt;}
.ws8{word-spacing:1.165333pt;}
.ws37{word-spacing:1.216000pt;}
.ws2c{word-spacing:1.266667pt;}
.ws4f{word-spacing:1.317333pt;}
.ws98{word-spacing:1.328000pt;}
.ws15{word-spacing:1.368000pt;}
.wsa2{word-spacing:1.416533pt;}
.ws5e{word-spacing:1.418667pt;}
.ws62{word-spacing:1.469333pt;}
.ws29{word-spacing:1.520000pt;}
.ws4c{word-spacing:1.570667pt;}
.wsf{word-spacing:1.621333pt;}
.ws1b{word-spacing:1.672000pt;}
.ws49{word-spacing:1.722667pt;}
.wsa3{word-spacing:1.726400pt;}
.ws93{word-spacing:1.770667pt;}
.ws39{word-spacing:1.773333pt;}
.ws61{word-spacing:1.824000pt;}
.ws44{word-spacing:1.874667pt;}
.ws41{word-spacing:1.925333pt;}
.ws8d{word-spacing:1.947733pt;}
.ws1a{word-spacing:1.976000pt;}
.ws54{word-spacing:2.026667pt;}
.ws96{word-spacing:2.036267pt;}
.ws3e{word-spacing:2.077333pt;}
.ws53{word-spacing:2.178667pt;}
.wsad{word-spacing:2.257600pt;}
.ws57{word-spacing:2.280000pt;}
.wsa9{word-spacing:2.301867pt;}
.ws77{word-spacing:2.330667pt;}
.ws5c{word-spacing:2.381333pt;}
.ws81{word-spacing:2.482667pt;}
.ws67{word-spacing:2.533333pt;}
.ws80{word-spacing:2.565333pt;}
.ws4b{word-spacing:2.584000pt;}
.ws56{word-spacing:2.888000pt;}
.ws7c{word-spacing:2.989333pt;}
.ws75{word-spacing:3.090667pt;}
.ws50{word-spacing:3.293333pt;}
.wsa6{word-spacing:3.364267pt;}
.wsa5{word-spacing:3.629867pt;}
.ws76{word-spacing:3.698667pt;}
.ws78{word-spacing:3.850667pt;}
.wsa0{word-spacing:3.851200pt;}
.ws7{word-spacing:4.154667pt;}
.ws7d{word-spacing:6.080000pt;}
.ws9a{word-spacing:6.108800pt;}
.ws3{word-spacing:1623.372800pt;}
.ws74{word-spacing:1623.534933pt;}
.ws43{word-spacing:1623.573333pt;}
._d{margin-left:-38.770133pt;}
._7{margin-left:-12.784000pt;}
._13{margin-left:-9.776000pt;}
._11{margin-left:-8.020800pt;}
._8{margin-left:-5.316267pt;}
._4{margin-left:-3.980267pt;}
._3{margin-left:-2.984267pt;}
._5{margin-left:-1.987733pt;}
._2{margin-left:-0.956267pt;}
._0{width:1.102400pt;}
._1{width:2.353067pt;}
._a{width:3.452533pt;}
._c{width:4.654133pt;}
._12{width:8.853333pt;}
._6{width:10.752000pt;}
._10{width:13.714133pt;}
._f{width:16.631467pt;}
._e{width:18.568000pt;}
._b{width:1631.873067pt;}
._9{width:1633.366400pt;}
.fsf{font-size:26.666667pt;}
.fs2{font-size:29.538667pt;}
.fs3{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fsa{font-size:44.266667pt;}
.fs9{font-size:45.333333pt;}
.fsd{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fse{font-size:64.000000pt;}
.fs0{font-size:69.333333pt;}
.fsb{font-size:74.666667pt;}
.fs10{font-size:96.000000pt;}
.fs6{font-size:106.666667pt;}
.fs5{font-size:160.000000pt;}
.fsc{font-size:208.000000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:26.015733pt;}
.y143{bottom:60.396400pt;}
.y28{bottom:60.439200pt;}
.y4b{bottom:69.527733pt;}
.yf8{bottom:72.439333pt;}
.y142{bottom:75.520400pt;}
.y19b{bottom:80.006000pt;}
.y27{bottom:90.479067pt;}
.ycb{bottom:90.489733pt;}
.y141{bottom:90.644400pt;}
.y119{bottom:90.671067pt;}
.y4a{bottom:98.855733pt;}
.y26{bottom:105.603067pt;}
.yca{bottom:105.613733pt;}
.yf7{bottom:105.720400pt;}
.y140{bottom:105.768400pt;}
.y118{bottom:105.795067pt;}
.y49{bottom:113.523733pt;}
.y197{bottom:116.361867pt;}
.y25{bottom:120.727067pt;}
.yc9{bottom:120.737733pt;}
.yf6{bottom:120.844400pt;}
.y161{bottom:120.887067pt;}
.y13f{bottom:120.892400pt;}
.y48{bottom:128.191733pt;}
.y24{bottom:135.851067pt;}
.yc8{bottom:135.861733pt;}
.yf5{bottom:135.968400pt;}
.y160{bottom:136.011067pt;}
.y13e{bottom:136.016400pt;}
.y117{bottom:136.032533pt;}
.y47{bottom:142.859733pt;}
.y23{bottom:150.975067pt;}
.yc7{bottom:150.985733pt;}
.yf4{bottom:151.092400pt;}
.y15f{bottom:151.135067pt;}
.y13d{bottom:151.140400pt;}
.y46{bottom:157.527733pt;}
.y19c{bottom:162.486400pt;}
.y116{bottom:165.992400pt;}
.y22{bottom:166.099067pt;}
.yc6{bottom:166.109733pt;}
.yf3{bottom:166.216400pt;}
.y15e{bottom:166.259067pt;}
.y13c{bottom:166.264400pt;}
.y115{bottom:181.116400pt;}
.y21{bottom:181.223067pt;}
.yc5{bottom:181.233733pt;}
.yf2{bottom:181.340400pt;}
.y15d{bottom:181.383067pt;}
.y13b{bottom:181.388400pt;}
.y45{bottom:183.533067pt;}
.y19a{bottom:192.686667pt;}
.y114{bottom:196.240400pt;}
.y20{bottom:196.347067pt;}
.yc4{bottom:196.357733pt;}
.yf1{bottom:196.464400pt;}
.y15c{bottom:196.485733pt;}
.y113{bottom:211.364400pt;}
.y1f{bottom:211.471067pt;}
.yc3{bottom:211.481733pt;}
.yf0{bottom:211.588400pt;}
.y15b{bottom:211.609733pt;}
.y13a{bottom:211.625733pt;}
.y199{bottom:211.886667pt;}
.y44{bottom:221.668800pt;}
.y112{bottom:226.488400pt;}
.y1e{bottom:226.595067pt;}
.yc2{bottom:226.605733pt;}
.yef{bottom:226.712400pt;}
.y15a{bottom:226.733733pt;}
.y198{bottom:234.862667pt;}
.y43{bottom:236.336800pt;}
.y111{bottom:241.612400pt;}
.y1d{bottom:241.719067pt;}
.yc1{bottom:241.729733pt;}
.yee{bottom:241.836400pt;}
.y139{bottom:241.852400pt;}
.y159{bottom:241.857733pt;}
.y110{bottom:256.736400pt;}
.y1c{bottom:256.843067pt;}
.yc0{bottom:256.853733pt;}
.yed{bottom:256.960400pt;}
.y138{bottom:256.976400pt;}
.y158{bottom:256.981733pt;}
.y94{bottom:264.868933pt;}
.y42{bottom:265.672800pt;}
.y194{bottom:269.990267pt;}
.y10f{bottom:271.860400pt;}
.y1b{bottom:271.967067pt;}
.ybf{bottom:271.977733pt;}
.yec{bottom:272.084400pt;}
.y137{bottom:272.100400pt;}
.y93{bottom:278.865600pt;}
.y41{bottom:280.340800pt;}
.y193{bottom:284.656933pt;}
.y10e{bottom:286.984400pt;}
.y1a{bottom:287.091067pt;}
.ybe{bottom:287.101733pt;}
.yeb{bottom:287.208400pt;}
.y157{bottom:287.219067pt;}
.y92{bottom:292.862267pt;}
.y40{bottom:295.008800pt;}
.y192{bottom:299.323600pt;}
.y10d{bottom:302.108400pt;}
.y19{bottom:302.215067pt;}
.ybd{bottom:302.225733pt;}
.yea{bottom:302.332400pt;}
.y136{bottom:302.337733pt;}
.y3f{bottom:309.676800pt;}
.y191{bottom:313.990267pt;}
.y10c{bottom:317.232400pt;}
.y18{bottom:317.339067pt;}
.ybc{bottom:317.349733pt;}
.ye9{bottom:317.445733pt;}
.y190{bottom:328.656933pt;}
.y10b{bottom:332.356400pt;}
.y17{bottom:332.463067pt;}
.ybb{bottom:332.473733pt;}
.y6a{bottom:332.505733pt;}
.y91{bottom:332.527067pt;}
.ye8{bottom:332.569733pt;}
.y3e{bottom:335.682133pt;}
.y196{bottom:343.323600pt;}
.y18f{bottom:343.334267pt;}
.y10a{bottom:347.480400pt;}
.y135{bottom:347.544400pt;}
.y16{bottom:347.587067pt;}
.yba{bottom:347.597733pt;}
.y69{bottom:347.629733pt;}
.y90{bottom:347.651067pt;}
.ye7{bottom:347.693733pt;}
.y195{bottom:357.990267pt;}
.y18e{bottom:357.998267pt;}
.y109{bottom:362.604400pt;}
.y134{bottom:362.668400pt;}
.y15{bottom:362.711067pt;}
.yb9{bottom:362.721733pt;}
.y68{bottom:362.753733pt;}
.y8f{bottom:362.775067pt;}
.y18d{bottom:372.662267pt;}
.y3d{bottom:373.817867pt;}
.y108{bottom:377.728400pt;}
.y133{bottom:377.792400pt;}
.y14{bottom:377.835067pt;}
.yb8{bottom:377.845733pt;}
.y67{bottom:377.877733pt;}
.y8e{bottom:377.899067pt;}
.ye6{bottom:377.931067pt;}
.y189{bottom:384.708400pt;}
.y18c{bottom:387.326267pt;}
.y3c{bottom:388.485867pt;}
.y107{bottom:392.852400pt;}
.y132{bottom:392.916400pt;}
.y13{bottom:392.959067pt;}
.yb7{bottom:392.969733pt;}
.y66{bottom:393.001733pt;}
.y8d{bottom:393.023067pt;}
.y18b{bottom:401.990267pt;}
.y106{bottom:407.976400pt;}
.y131{bottom:408.040400pt;}
.y12{bottom:408.083067pt;}
.yb6{bottom:408.093733pt;}
.y65{bottom:408.125733pt;}
.y8c{bottom:408.147067pt;}
.ye5{bottom:408.152400pt;}
.y3b{bottom:417.821867pt;}
.y105{bottom:423.100400pt;}
.y130{bottom:423.164400pt;}
.y11{bottom:423.207067pt;}
.yb5{bottom:423.217733pt;}
.y64{bottom:423.249733pt;}
.y8b{bottom:423.271067pt;}
.ye4{bottom:423.276400pt;}
.y3a{bottom:432.489867pt;}
.y104{bottom:438.224400pt;}
.y12f{bottom:438.288400pt;}
.y10{bottom:438.331067pt;}
.yb4{bottom:438.341733pt;}
.y63{bottom:438.373733pt;}
.y8a{bottom:438.395067pt;}
.ye3{bottom:438.400400pt;}
.y18a{bottom:442.163200pt;}
.y39{bottom:447.157867pt;}
.y103{bottom:453.348400pt;}
.y12e{bottom:453.412400pt;}
.yf{bottom:453.455067pt;}
.yb3{bottom:453.465733pt;}
.y62{bottom:453.497733pt;}
.y89{bottom:453.519067pt;}
.ye2{bottom:453.524400pt;}
.y38{bottom:461.825867pt;}
.y102{bottom:468.472400pt;}
.y12d{bottom:468.536400pt;}
.ye{bottom:468.579067pt;}
.yb2{bottom:468.589733pt;}
.y61{bottom:468.621733pt;}
.y88{bottom:468.643067pt;}
.y101{bottom:483.596400pt;}
.y12c{bottom:483.660400pt;}
.yd{bottom:483.703067pt;}
.yb1{bottom:483.713733pt;}
.y60{bottom:483.745733pt;}
.ye1{bottom:483.761733pt;}
.y37{bottom:487.831200pt;}
.y100{bottom:498.720400pt;}
.y12b{bottom:498.784400pt;}
.yc{bottom:498.827067pt;}
.yb0{bottom:498.837733pt;}
.y5f{bottom:498.869733pt;}
.y87{bottom:498.880400pt;}
.yff{bottom:513.844400pt;}
.y12a{bottom:513.908400pt;}
.yb{bottom:513.951067pt;}
.yaf{bottom:513.961733pt;}
.y5e{bottom:513.993733pt;}
.y36{bottom:525.967067pt;}
.yfe{bottom:528.968400pt;}
.y129{bottom:529.032400pt;}
.ye0{bottom:529.053733pt;}
.ya{bottom:529.075067pt;}
.yae{bottom:529.085733pt;}
.y5d{bottom:529.117733pt;}
.y19d{bottom:530.943067pt;}
.y35{bottom:540.635067pt;}
.y86{bottom:544.026400pt;}
.yfd{bottom:544.092400pt;}
.y128{bottom:544.156400pt;}
.ydf{bottom:544.177733pt;}
.y9{bottom:544.199067pt;}
.yad{bottom:544.209733pt;}
.y85{bottom:559.150400pt;}
.yfc{bottom:559.216400pt;}
.y127{bottom:559.280400pt;}
.yde{bottom:559.301733pt;}
.y8{bottom:559.323067pt;}
.yac{bottom:559.333733pt;}
.y34{bottom:569.971067pt;}
.y84{bottom:574.274400pt;}
.yfb{bottom:574.340400pt;}
.y126{bottom:574.404400pt;}
.ydd{bottom:574.425733pt;}
.y7{bottom:574.447067pt;}
.yab{bottom:574.457733pt;}
.y33{bottom:584.639067pt;}
.y83{bottom:589.398400pt;}
.yfa{bottom:589.464400pt;}
.y125{bottom:589.528400pt;}
.ydc{bottom:589.549733pt;}
.y6{bottom:589.571067pt;}
.yaa{bottom:589.581733pt;}
.y32{bottom:599.307067pt;}
.y82{bottom:604.522400pt;}
.yf9{bottom:604.588400pt;}
.y124{bottom:604.652400pt;}
.ydb{bottom:604.673733pt;}
.y5{bottom:604.695067pt;}
.ya9{bottom:604.705733pt;}
.y31{bottom:613.975067pt;}
.y81{bottom:619.646400pt;}
.ya8{bottom:619.712400pt;}
.y123{bottom:619.776400pt;}
.yda{bottom:619.797733pt;}
.y4{bottom:619.819067pt;}
.y16f{bottom:624.559200pt;}
.y80{bottom:634.770400pt;}
.ya7{bottom:634.836400pt;}
.y122{bottom:634.900400pt;}
.yd9{bottom:634.921733pt;}
.y3{bottom:634.943067pt;}
.y16e{bottom:637.892533pt;}
.y188{bottom:639.255067pt;}
.y30{bottom:639.980267pt;}
.y5c{bottom:648.817467pt;}
.y7f{bottom:649.894400pt;}
.ya6{bottom:649.960400pt;}
.y121{bottom:650.024400pt;}
.yd8{bottom:650.045733pt;}
.y2{bottom:650.067067pt;}
.y16d{bottom:651.223867pt;}
.y187{bottom:652.590400pt;}
.y5b{bottom:662.814133pt;}
.y16c{bottom:664.559200pt;}
.y7e{bottom:665.018400pt;}
.ya5{bottom:665.084400pt;}
.y120{bottom:665.148400pt;}
.y156{bottom:665.164533pt;}
.yd7{bottom:665.169733pt;}
.y186{bottom:665.925733pt;}
.y5a{bottom:676.810800pt;}
.y16b{bottom:677.892533pt;}
.y185{bottom:679.255067pt;}
.y7d{bottom:680.142400pt;}
.ya4{bottom:680.208400pt;}
.y11f{bottom:680.272400pt;}
.y155{bottom:680.288533pt;}
.yd6{bottom:680.293733pt;}
.y1{bottom:680.304400pt;}
.y16a{bottom:691.223867pt;}
.y184{bottom:692.590400pt;}
.y7c{bottom:695.266400pt;}
.ya3{bottom:695.332400pt;}
.y11e{bottom:695.396400pt;}
.y154{bottom:695.412533pt;}
.yd5{bottom:695.417733pt;}
.y169{bottom:704.559200pt;}
.y183{bottom:705.925733pt;}
.y7b{bottom:710.390400pt;}
.ya2{bottom:710.456400pt;}
.y59{bottom:710.499067pt;}
.yd4{bottom:710.504400pt;}
.y11d{bottom:710.520400pt;}
.y153{bottom:710.536533pt;}
.y168{bottom:717.890533pt;}
.y182{bottom:719.255067pt;}
.y7a{bottom:725.514400pt;}
.ya1{bottom:725.580400pt;}
.y58{bottom:725.623067pt;}
.yd3{bottom:725.628400pt;}
.y11c{bottom:725.644400pt;}
.y152{bottom:725.660533pt;}
.y167{bottom:731.225867pt;}
.y181{bottom:732.590400pt;}
.y79{bottom:740.638400pt;}
.ya0{bottom:740.704400pt;}
.y57{bottom:740.747067pt;}
.yd2{bottom:740.752400pt;}
.y151{bottom:740.763067pt;}
.y11b{bottom:740.768400pt;}
.y180{bottom:745.925733pt;}
.y2f{bottom:748.356267pt;}
.y78{bottom:755.762400pt;}
.y9f{bottom:755.828400pt;}
.y56{bottom:755.871067pt;}
.yd1{bottom:755.876400pt;}
.y150{bottom:755.887067pt;}
.y11a{bottom:755.892400pt;}
.y166{bottom:755.897733pt;}
.y17f{bottom:759.255067pt;}
.y77{bottom:770.886400pt;}
.y9e{bottom:770.952400pt;}
.y55{bottom:770.995067pt;}
.yd0{bottom:771.000400pt;}
.y14f{bottom:771.011067pt;}
.y2e{bottom:771.028267pt;}
.y17e{bottom:772.590400pt;}
.y17d{bottom:785.925733pt;}
.y76{bottom:786.010400pt;}
.y9d{bottom:786.076400pt;}
.y54{bottom:786.119067pt;}
.ycf{bottom:786.124400pt;}
.y14e{bottom:786.135067pt;}
.y2d{bottom:793.700267pt;}
.y17c{bottom:799.255067pt;}
.y75{bottom:801.134400pt;}
.y9c{bottom:801.200400pt;}
.y165{bottom:801.211067pt;}
.y14d{bottom:801.237733pt;}
.y53{bottom:801.243067pt;}
.yce{bottom:801.248400pt;}
.y17b{bottom:812.590400pt;}
.y74{bottom:816.258400pt;}
.y9b{bottom:816.324400pt;}
.y164{bottom:816.335067pt;}
.y14c{bottom:816.361733pt;}
.y52{bottom:816.367067pt;}
.y2c{bottom:816.372267pt;}
.ycd{bottom:816.372400pt;}
.y17a{bottom:825.925733pt;}
.y73{bottom:831.382400pt;}
.y9a{bottom:831.448400pt;}
.y163{bottom:831.459067pt;}
.y14b{bottom:831.485733pt;}
.y51{bottom:831.491067pt;}
.y179{bottom:839.257067pt;}
.y72{bottom:846.506400pt;}
.y99{bottom:846.572400pt;}
.y162{bottom:846.583067pt;}
.ycc{bottom:846.609733pt;}
.y178{bottom:852.592400pt;}
.y71{bottom:861.630400pt;}
.y98{bottom:861.696400pt;}
.y14a{bottom:861.707067pt;}
.y2b{bottom:861.728400pt;}
.y177{bottom:865.923733pt;}
.y70{bottom:876.754400pt;}
.y97{bottom:876.820400pt;}
.y149{bottom:876.831067pt;}
.y176{bottom:879.259067pt;}
.y6f{bottom:891.878400pt;}
.y96{bottom:891.944400pt;}
.y148{bottom:891.955067pt;}
.y175{bottom:892.592400pt;}
.y174{bottom:905.925733pt;}
.y6e{bottom:907.002400pt;}
.y50{bottom:907.068400pt;}
.y147{bottom:907.079067pt;}
.y2a{bottom:907.084267pt;}
.y173{bottom:919.253067pt;}
.y6d{bottom:922.126400pt;}
.y4f{bottom:922.192400pt;}
.y146{bottom:922.203067pt;}
.y172{bottom:932.588400pt;}
.y6c{bottom:937.250400pt;}
.y145{bottom:937.271733pt;}
.y4e{bottom:937.316400pt;}
.y171{bottom:945.923733pt;}
.y6b{bottom:952.374400pt;}
.y144{bottom:952.395733pt;}
.y29{bottom:952.440400pt;}
.y170{bottom:959.259067pt;}
.y4d{bottom:1010.582653pt;}
.y95{bottom:1010.582667pt;}
.h1e{height:21.920000pt;}
.h5{height:30.688000pt;}
.h1a{height:34.608000pt;}
.h1b{height:35.072000pt;}
.hd{height:35.541333pt;}
.h16{height:36.342933pt;}
.h19{height:39.456000pt;}
.h3{height:40.482667pt;}
.h13{height:40.504000pt;}
.h12{height:40.525333pt;}
.h15{height:40.568000pt;}
.h11{height:40.632000pt;}
.h14{height:40.738667pt;}
.hf{height:40.952000pt;}
.h4{height:41.262728pt;}
.hc{height:41.600000pt;}
.hb{height:41.648000pt;}
.he{height:42.914667pt;}
.h6{height:45.333333pt;}
.h1c{height:46.144000pt;}
.h10{height:48.986667pt;}
.ha{height:49.690667pt;}
.h1d{height:51.584000pt;}
.h9{height:56.992000pt;}
.h2{height:58.725333pt;}
.h17{height:60.181333pt;}
.h1f{height:77.376000pt;}
.h8{height:89.280000pt;}
.h7{height:133.920000pt;}
.h18{height:149.136000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:30.236267pt;}
.x4{left:60.472400pt;}
.x1b{left:68.031467pt;}
.x7{left:71.812933pt;}
.x9{left:75.590533pt;}
.x6{left:83.149600pt;}
.x19{left:90.708667pt;}
.x5{left:173.858267pt;}
.x1c{left:177.637867pt;}
.x11{left:190.837600pt;}
.x14{left:215.500133pt;}
.x8{left:310.416933pt;}
.x17{left:321.258267pt;}
.x18{left:331.221867pt;}
.x2{left:400.629867pt;}
.x15{left:407.523067pt;}
.x3{left:411.966533pt;}
.xc{left:415.748000pt;}
.xa{left:423.311067pt;}
.x1a{left:430.866133pt;}
.x10{left:476.060400pt;}
.xf{left:506.876667pt;}
.x1d{left:514.015600pt;}
.x1f{left:539.677867pt;}
.xb{left:579.384267pt;}
.x13{left:600.094267pt;}
.xe{left:602.165067pt;}
.x1{left:637.143333pt;}
.x12{left:645.350267pt;}
.x16{left:676.239733pt;}
.xd{left:685.166000pt;}
}


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