
/* 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_5782884cbd60.woff")format("woff");}.ff1{font-family:ff1;line-height:0.946289;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_9571146cf282.woff")format("woff");}.ff2{font-family:ff2;line-height:0.946289;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_0d194454523f.woff")format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_ba2ae7b60530.woff")format("woff");}.ff4{font-family:ff4;line-height:1.190918;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_39c04a542f29.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_9d92f771cbd9.woff")format("woff");}.ff6{font-family:ff6;line-height:1.349000;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_5edab2ad87e9.woff")format("woff");}.ff7{font-family:ff7;line-height:1.190918;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_9b68d4e28879.woff")format("woff");}.ff8{font-family:ff8;line-height:1.362000;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_98eb876c2035.woff")format("woff");}.ff9{font-family:ff9;line-height:1.384000;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_0d48a9e6b9f6.woff")format("woff");}.ffa{font-family:ffa;line-height:0.677246;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_200bd5c7d305.woff")format("woff");}.ffb{font-family:ffb;line-height:0.908203;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);}
.v4{vertical-align:-18.899963px;}
.v5{vertical-align:-10.806110px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:10.799973px;}
.v3{vertical-align:18.677920px;}
.v2{vertical-align:21.000000px;}
.ls6f{letter-spacing:-4.185000px;}
.ls6d{letter-spacing:-2.970000px;}
.ls5e{letter-spacing:-1.530000px;}
.ls6e{letter-spacing:-1.170000px;}
.ls71{letter-spacing:-1.125000px;}
.ls73{letter-spacing:-0.855000px;}
.ls64{letter-spacing:-0.720000px;}
.ls35{letter-spacing:-0.648000px;}
.ls6c{letter-spacing:-0.630000px;}
.ls37{letter-spacing:-0.594000px;}
.ls72{letter-spacing:-0.495000px;}
.ls36{letter-spacing:-0.486000px;}
.ls23{letter-spacing:-0.432000px;}
.ls63{letter-spacing:-0.405000px;}
.ls18{letter-spacing:-0.378000px;}
.ls70{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.324000px;}
.ls62{letter-spacing:-0.315000px;}
.ls27{letter-spacing:-0.270000px;}
.ls1f{letter-spacing:-0.245700px;}
.ls61{letter-spacing:-0.225000px;}
.ls2a{letter-spacing:-0.216000px;}
.ls5d{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.162000px;}
.ls69{letter-spacing:-0.135000px;}
.ls15{letter-spacing:-0.108000px;}
.ls5f{letter-spacing:-0.090000px;}
.ls28{letter-spacing:-0.070200px;}
.ls17{letter-spacing:-0.054000px;}
.ls6b{letter-spacing:-0.045000px;}
.ls26{letter-spacing:-0.035100px;}
.ls13{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.000075px;}
.ls3a{letter-spacing:0.000262px;}
.ls39{letter-spacing:0.004209px;}
.ls42{letter-spacing:0.004796px;}
.ls30{letter-spacing:0.010783px;}
.ls1{letter-spacing:0.013743px;}
.ls3b{letter-spacing:0.024472px;}
.ls38{letter-spacing:0.025296px;}
.ls43{letter-spacing:0.029446px;}
.ls60{letter-spacing:0.045000px;}
.ls44{letter-spacing:0.054000px;}
.ls24{letter-spacing:0.070200px;}
.ls67{letter-spacing:0.090000px;}
.lsc{letter-spacing:0.094753px;}
.lsa{letter-spacing:0.094836px;}
.ls1e{letter-spacing:0.108000px;}
.ls31{letter-spacing:0.121222px;}
.ls40{letter-spacing:0.122166px;}
.ls3e{letter-spacing:0.122943px;}
.ls34{letter-spacing:0.126561px;}
.ls6{letter-spacing:0.126622px;}
.ls59{letter-spacing:0.135000px;}
.ls20{letter-spacing:0.140400px;}
.ls33{letter-spacing:0.145215px;}
.ls3d{letter-spacing:0.151200px;}
.lse{letter-spacing:0.157950px;}
.ls7{letter-spacing:0.159568px;}
.ls51{letter-spacing:0.160201px;}
.ls54{letter-spacing:0.160836px;}
.ls48{letter-spacing:0.160842px;}
.ls49{letter-spacing:0.161391px;}
.lsb{letter-spacing:0.162000px;}
.ls2f{letter-spacing:0.175215px;}
.ls5{letter-spacing:0.175500px;}
.ls5a{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.185857px;}
.ls4a{letter-spacing:0.189000px;}
.ls56{letter-spacing:0.189589px;}
.ls58{letter-spacing:0.202500px;}
.ls11{letter-spacing:0.204000px;}
.ls3c{letter-spacing:0.208083px;}
.ls45{letter-spacing:0.210600px;}
.ls2{letter-spacing:0.216000px;}
.ls4b{letter-spacing:0.217128px;}
.ls5b{letter-spacing:0.225000px;}
.ls2e{letter-spacing:0.239461px;}
.ls4f{letter-spacing:0.243000px;}
.ls1b{letter-spacing:0.245700px;}
.ls53{letter-spacing:0.250750px;}
.ls57{letter-spacing:0.264000px;}
.ls8{letter-spacing:0.270000px;}
.ls3f{letter-spacing:0.272401px;}
.ls55{letter-spacing:0.274796px;}
.ls50{letter-spacing:0.288023px;}
.ls47{letter-spacing:0.301674px;}
.ls68{letter-spacing:0.315000px;}
.ls29{letter-spacing:0.324000px;}
.ls1a{letter-spacing:0.351000px;}
.ls65{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.378000px;}
.ls6a{letter-spacing:0.405000px;}
.ls3{letter-spacing:0.410972px;}
.ls2d{letter-spacing:0.430190px;}
.ls25{letter-spacing:0.432000px;}
.ls21{letter-spacing:0.456300px;}
.ls1c{letter-spacing:0.486000px;}
.ls19{letter-spacing:0.540000px;}
.ls5c{letter-spacing:0.585000px;}
.ls2b{letter-spacing:0.594000px;}
.ls41{letter-spacing:0.621057px;}
.ls4{letter-spacing:0.648000px;}
.ls2c{letter-spacing:0.672564px;}
.ls12{letter-spacing:0.674945px;}
.ls1d{letter-spacing:0.675000px;}
.ls22{letter-spacing:0.702000px;}
.ls46{letter-spacing:0.756000px;}
.ls4e{letter-spacing:0.792006px;}
.lsd{letter-spacing:0.810000px;}
.ls52{letter-spacing:0.918000px;}
.ls4c{letter-spacing:1.188000px;}
.ls10{letter-spacing:1.326000px;}
.ls66{letter-spacing:1.336453px;}
.ls4d{letter-spacing:1.385401px;}
.ls0{letter-spacing:3.000000px;}
.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;}
}
.ws0{word-spacing:-48.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws85{word-spacing:-13.860000px;}
.ws39{word-spacing:-13.596000px;}
.ws1a{word-spacing:-12.933000px;}
.ws1f{word-spacing:-12.528000px;}
.ws37{word-spacing:-12.366000px;}
.ws2b{word-spacing:-12.258000px;}
.ws3a{word-spacing:-11.988000px;}
.wsb{word-spacing:-11.880000px;}
.ws28{word-spacing:-11.826000px;}
.wsb5{word-spacing:-11.718000px;}
.ws50{word-spacing:-11.664000px;}
.ws9f{word-spacing:-10.530000px;}
.wsa0{word-spacing:-10.507500px;}
.ws90{word-spacing:-10.440000px;}
.ws87{word-spacing:-10.417500px;}
.wsa2{word-spacing:-10.350000px;}
.ws86{word-spacing:-10.125000px;}
.wsa1{word-spacing:-9.945000px;}
.ws17{word-spacing:-9.600000px;}
.ws89{word-spacing:-9.585000px;}
.wsa3{word-spacing:-9.180000px;}
.ws88{word-spacing:-8.775000px;}
.ws1b{word-spacing:-8.424000px;}
.ws4{word-spacing:-8.318700px;}
.ws5{word-spacing:-8.213400px;}
.ws5c{word-spacing:-8.178300px;}
.ws3{word-spacing:-8.143200px;}
.ws19{word-spacing:-8.108100px;}
.ws1c{word-spacing:-8.037900px;}
.ws2{word-spacing:-7.967700px;}
.ws1d{word-spacing:-7.932600px;}
.ws1e{word-spacing:-7.897500px;}
.ws18{word-spacing:-7.722000px;}
.ws9e{word-spacing:-6.030000px;}
.wsa6{word-spacing:-5.985000px;}
.ws9c{word-spacing:-5.940000px;}
.wsb1{word-spacing:-5.895000px;}
.ws3f{word-spacing:-5.508000px;}
.ws9a{word-spacing:-5.400000px;}
.ws4f{word-spacing:-2.322000px;}
.ws40{word-spacing:-2.160000px;}
.ws51{word-spacing:-2.052000px;}
.ws44{word-spacing:-1.944000px;}
.ws2a{word-spacing:-1.890000px;}
.ws43{word-spacing:-1.782000px;}
.ws4c{word-spacing:-1.620000px;}
.ws24{word-spacing:-1.458000px;}
.wsd{word-spacing:-1.296000px;}
.ws9{word-spacing:-1.242000px;}
.wsc{word-spacing:-1.188000px;}
.ws80{word-spacing:-1.134000px;}
.ws9b{word-spacing:-1.125000px;}
.ws8b{word-spacing:-1.080000px;}
.ws8f{word-spacing:-1.035000px;}
.ws3b{word-spacing:-1.026000px;}
.ws92{word-spacing:-0.990000px;}
.ws36{word-spacing:-0.972000px;}
.ws3c{word-spacing:-0.918000px;}
.ws2f{word-spacing:-0.864000px;}
.ws79{word-spacing:-0.810000px;}
.ws70{word-spacing:-0.756000px;}
.ws32{word-spacing:-0.702000px;}
.ws11{word-spacing:-0.648000px;}
.wsb7{word-spacing:-0.630000px;}
.ws7d{word-spacing:-0.594000px;}
.ws99{word-spacing:-0.585000px;}
.ws69{word-spacing:-0.540000px;}
.ws15{word-spacing:-0.510000px;}
.ws25{word-spacing:-0.486000px;}
.wsb4{word-spacing:-0.450000px;}
.ws34{word-spacing:-0.432000px;}
.wsa4{word-spacing:-0.405000px;}
.ws94{word-spacing:-0.360000px;}
.ws73{word-spacing:-0.324000px;}
.wsb6{word-spacing:-0.315000px;}
.ws5d{word-spacing:-0.270000px;}
.ws8e{word-spacing:-0.264000px;}
.ws33{word-spacing:-0.245700px;}
.ws93{word-spacing:-0.225000px;}
.ws7{word-spacing:-0.216000px;}
.ws77{word-spacing:-0.210600px;}
.ws16{word-spacing:-0.204000px;}
.ws91{word-spacing:-0.180000px;}
.ws13{word-spacing:-0.162000px;}
.ws9d{word-spacing:-0.135000px;}
.ws2e{word-spacing:-0.108000px;}
.ws96{word-spacing:-0.090000px;}
.wsa5{word-spacing:-0.045000px;}
.ws6{word-spacing:0.000000px;}
.wsac{word-spacing:0.045000px;}
.ws56{word-spacing:0.054000px;}
.ws3d{word-spacing:0.108000px;}
.wsae{word-spacing:0.135000px;}
.ws2d{word-spacing:0.162000px;}
.wsa7{word-spacing:0.180000px;}
.ws7b{word-spacing:0.216000px;}
.wsad{word-spacing:0.270000px;}
.wsb3{word-spacing:0.315000px;}
.ws30{word-spacing:0.324000px;}
.ws31{word-spacing:0.378000px;}
.ws6b{word-spacing:0.432000px;}
.ws4e{word-spacing:0.486000px;}
.wsaf{word-spacing:0.495000px;}
.ws75{word-spacing:0.540000px;}
.ws8{word-spacing:0.594000px;}
.wsa9{word-spacing:0.630000px;}
.ws61{word-spacing:0.648000px;}
.ws78{word-spacing:0.702000px;}
.wsb0{word-spacing:0.765000px;}
.ws35{word-spacing:0.810000px;}
.ws68{word-spacing:0.864000px;}
.ws66{word-spacing:0.918000px;}
.wsb2{word-spacing:0.945000px;}
.ws8d{word-spacing:0.972000px;}
.wsa8{word-spacing:0.990000px;}
.ws10{word-spacing:1.026000px;}
.ws97{word-spacing:1.035000px;}
.ws29{word-spacing:1.080000px;}
.ws76{word-spacing:1.134000px;}
.wsaa{word-spacing:1.170000px;}
.wsf{word-spacing:1.188000px;}
.wse{word-spacing:1.242000px;}
.ws95{word-spacing:1.260000px;}
.wsa{word-spacing:1.296000px;}
.ws72{word-spacing:1.350000px;}
.ws7e{word-spacing:1.404000px;}
.ws98{word-spacing:1.440000px;}
.ws3e{word-spacing:1.458000px;}
.ws21{word-spacing:1.512000px;}
.ws7f{word-spacing:1.566000px;}
.ws82{word-spacing:1.674000px;}
.ws46{word-spacing:1.728000px;}
.ws84{word-spacing:1.782000px;}
.ws6d{word-spacing:1.944000px;}
.ws74{word-spacing:1.998000px;}
.ws54{word-spacing:2.052000px;}
.ws12{word-spacing:2.106000px;}
.ws4d{word-spacing:2.160000px;}
.ws53{word-spacing:2.214000px;}
.ws20{word-spacing:2.268000px;}
.ws65{word-spacing:2.376000px;}
.ws81{word-spacing:2.430000px;}
.ws8a{word-spacing:2.538000px;}
.ws8c{word-spacing:2.646000px;}
.ws62{word-spacing:2.754000px;}
.ws7a{word-spacing:2.808000px;}
.ws52{word-spacing:2.916000px;}
.ws7c{word-spacing:2.970000px;}
.wsb8{word-spacing:3.024000px;}
.ws5a{word-spacing:3.132000px;}
.ws45{word-spacing:3.186000px;}
.ws27{word-spacing:3.510000px;}
.ws5b{word-spacing:3.564000px;}
.ws42{word-spacing:3.618000px;}
.ws22{word-spacing:3.672000px;}
.ws64{word-spacing:3.726000px;}
.ws67{word-spacing:3.780000px;}
.wsab{word-spacing:4.185000px;}
.ws2c{word-spacing:4.212000px;}
.ws6a{word-spacing:4.320000px;}
.ws4b{word-spacing:4.374000px;}
.ws23{word-spacing:4.536000px;}
.ws49{word-spacing:4.590000px;}
.ws6f{word-spacing:4.698000px;}
.ws6e{word-spacing:4.752000px;}
.ws26{word-spacing:4.914000px;}
.ws41{word-spacing:4.968000px;}
.ws14{word-spacing:5.049000px;}
.ws4a{word-spacing:5.184000px;}
.ws48{word-spacing:5.238000px;}
.ws58{word-spacing:5.400000px;}
.ws60{word-spacing:5.454000px;}
.ws83{word-spacing:5.670000px;}
.ws47{word-spacing:5.778000px;}
.ws59{word-spacing:6.048000px;}
.ws57{word-spacing:6.102000px;}
.wsbb{word-spacing:6.264000px;}
.wsb9{word-spacing:6.480000px;}
.wsba{word-spacing:6.750000px;}
.ws38{word-spacing:7.020000px;}
.ws6c{word-spacing:7.236000px;}
.ws71{word-spacing:8.262000px;}
.ws5f{word-spacing:10.098000px;}
.ws5e{word-spacing:10.206000px;}
.ws63{word-spacing:11.124000px;}
.ws55{word-spacing:15.282000px;}
._17{margin-left:-20.952007px;}
._d{margin-left:-16.928400px;}
._8{margin-left:-15.049817px;}
._9{margin-left:-13.621200px;}
._6{margin-left:-11.790000px;}
._7{margin-left:-10.633200px;}
._13{margin-left:-9.562800px;}
._10{margin-left:-7.601400px;}
._2{margin-left:-6.529200px;}
._14{margin-left:-5.515901px;}
._3{margin-left:-4.287600px;}
._4{margin-left:-3.202200px;}
._0{margin-left:-1.876800px;}
._5{width:1.024200px;}
._e{width:2.354400px;}
._b{width:4.366800px;}
._19{width:6.046434px;}
._f{width:7.086000px;}
._15{width:8.849400px;}
._12{width:10.155600px;}
._18{width:11.727587px;}
._a{width:12.766800px;}
._1d{width:13.950000px;}
._1c{width:16.290000px;}
._1e{width:18.910800px;}
._1a{width:31.201800px;}
._1b{width:37.383599px;}
._16{width:39.491363px;}
._11{width:44.173200px;}
._c{width:47.637579px;}
._1{width:323.716800px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs8{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsa{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.ya1{bottom:3.199200px;}
.y32{bottom:3.199350px;}
.yb9{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y31{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.ya2{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y30{bottom:68.037600px;}
.y1f1{bottom:69.915784px;}
.y9c{bottom:72.095244px;}
.y160{bottom:76.392152px;}
.y13c{bottom:76.999648px;}
.yf6{bottom:78.654748px;}
.y1f0{bottom:82.662034px;}
.y2f{bottom:83.031600px;}
.y1a0{bottom:83.820148px;}
.y9b{bottom:87.093744px;}
.y15f{bottom:91.390652px;}
.y13b{bottom:91.998148px;}
.y74{bottom:92.048552px;}
.yf5{bottom:93.653248px;}
.y1ef{bottom:95.408284px;}
.y19f{bottom:96.566398px;}
.yb0{bottom:100.983148px;}
.y9a{bottom:102.092244px;}
.y15e{bottom:106.389152px;}
.y13a{bottom:106.996648px;}
.y73{bottom:107.047052px;}
.y1ee{bottom:108.154534px;}
.yf4{bottom:108.651748px;}
.y19e{bottom:109.312648px;}
.yaf{bottom:115.981648px;}
.y1ed{bottom:120.900784px;}
.y15d{bottom:121.387652px;}
.y139{bottom:121.995148px;}
.y72{bottom:122.045552px;}
.y19d{bottom:122.058898px;}
.yf3{bottom:123.650248px;}
.y2d{bottom:129.070954px;}
.yae{bottom:130.981648px;}
.y1ec{bottom:133.647034px;}
.y19c{bottom:134.805148px;}
.y99{bottom:135.086244px;}
.y15c{bottom:136.386152px;}
.y138{bottom:136.993648px;}
.y71{bottom:137.044052px;}
.yf2{bottom:138.648748px;}
.y2c{bottom:144.070954px;}
.yad{bottom:145.983148px;}
.y1eb{bottom:146.393284px;}
.y19b{bottom:147.551398px;}
.y98{bottom:150.084744px;}
.y15b{bottom:151.384652px;}
.y137{bottom:151.992148px;}
.yf1{bottom:153.647248px;}
.yfa{bottom:154.235999px;}
.y2b{bottom:159.072454px;}
.y1ea{bottom:159.139534px;}
.y19a{bottom:160.297648px;}
.yac{bottom:160.981648px;}
.y97{bottom:165.084744px;}
.y15a{bottom:166.383152px;}
.y136{bottom:166.990648px;}
.yf0{bottom:168.645748px;}
.yf9{bottom:169.234499px;}
.y70{bottom:170.047052px;}
.y1e9{bottom:171.885784px;}
.y199{bottom:173.043898px;}
.y2a{bottom:174.070954px;}
.yab{bottom:175.983148px;}
.y96{bottom:180.087744px;}
.y159{bottom:181.381652px;}
.y135{bottom:181.989148px;}
.yef{bottom:183.644248px;}
.yf8{bottom:184.232999px;}
.y1e8{bottom:184.632034px;}
.y6f{bottom:185.045552px;}
.y198{bottom:185.790148px;}
.y29{bottom:189.072305px;}
.yaa{bottom:190.981648px;}
.y95{bottom:195.086244px;}
.y158{bottom:196.380152px;}
.y134{bottom:196.987648px;}
.y1e7{bottom:197.378284px;}
.y197{bottom:198.536398px;}
.yee{bottom:198.642748px;}
.yf7{bottom:199.231499px;}
.y6e{bottom:200.050052px;}
.y28{bottom:204.070805px;}
.ya9{bottom:205.980148px;}
.y94{bottom:210.084744px;}
.y1e6{bottom:210.124534px;}
.y196{bottom:211.282648px;}
.y157{bottom:211.378652px;}
.y133{bottom:211.986148px;}
.yed{bottom:213.641248px;}
.y6d{bottom:215.048552px;}
.y27{bottom:219.070805px;}
.y1e5{bottom:222.870784px;}
.y195{bottom:224.028898px;}
.y93{bottom:225.084744px;}
.y156{bottom:226.377152px;}
.y132{bottom:226.984648px;}
.yec{bottom:228.650248px;}
.y6c{bottom:230.047052px;}
.y26{bottom:234.072305px;}
.y1e4{bottom:235.617034px;}
.y194{bottom:236.775148px;}
.ya8{bottom:238.983148px;}
.y92{bottom:240.087744px;}
.y155{bottom:241.375652px;}
.y131{bottom:241.983148px;}
.yeb{bottom:243.648748px;}
.y6b{bottom:245.045552px;}
.y1e3{bottom:248.363284px;}
.y25{bottom:249.070805px;}
.y193{bottom:249.521398px;}
.ya7{bottom:253.981648px;}
.y91{bottom:255.086244px;}
.y154{bottom:256.374152px;}
.y130{bottom:256.981648px;}
.yea{bottom:258.647248px;}
.y6a{bottom:260.045552px;}
.y1e2{bottom:261.109534px;}
.y192{bottom:262.267648px;}
.y24{bottom:264.070805px;}
.ya6{bottom:268.983148px;}
.y90{bottom:270.084744px;}
.y153{bottom:271.372652px;}
.y12f{bottom:271.980148px;}
.ye9{bottom:273.645748px;}
.y1e1{bottom:273.855784px;}
.y191{bottom:275.013898px;}
.y69{bottom:275.048552px;}
.y23{bottom:279.070805px;}
.ya5{bottom:283.981648px;}
.y8f{bottom:285.099767px;}
.y152{bottom:286.371152px;}
.y1e0{bottom:286.602034px;}
.y190{bottom:287.760148px;}
.ye8{bottom:288.644248px;}
.y68{bottom:290.047052px;}
.y22{bottom:294.070805px;}
.ya4{bottom:298.980148px;}
.y1df{bottom:299.348284px;}
.y8e{bottom:300.098267px;}
.y18f{bottom:300.506398px;}
.y151{bottom:301.371152px;}
.ye7{bottom:303.642748px;}
.y12e{bottom:304.983148px;}
.y67{bottom:305.045552px;}
.y21{bottom:309.072305px;}
.y1de{bottom:312.094534px;}
.y18e{bottom:313.252648px;}
.y8d{bottom:315.096767px;}
.y150{bottom:316.369652px;}
.ye6{bottom:318.641248px;}
.y12d{bottom:319.981648px;}
.y66{bottom:320.045552px;}
.y20{bottom:324.070805px;}
.y1dd{bottom:324.840784px;}
.y18d{bottom:325.998898px;}
.y8c{bottom:330.095267px;}
.ye5{bottom:333.639748px;}
.y12c{bottom:334.983148px;}
.y65{bottom:335.048552px;}
.y1dc{bottom:337.587034px;}
.y18c{bottom:338.745148px;}
.y1f{bottom:339.124816px;}
.ye4{bottom:348.639748px;}
.y14f{bottom:349.396629px;}
.yb8{bottom:349.764154px;}
.y12b{bottom:349.981648px;}
.y64{bottom:350.047052px;}
.y1db{bottom:350.333284px;}
.y18b{bottom:351.491398px;}
.y1e{bottom:354.123316px;}
.y1da{bottom:363.079534px;}
.y8b{bottom:363.089267px;}
.y18a{bottom:364.237648px;}
.y14e{bottom:364.395129px;}
.yb7{bottom:364.762654px;}
.y12a{bottom:364.981648px;}
.y63{bottom:365.045552px;}
.y1d{bottom:369.121816px;}
.y1d9{bottom:375.825784px;}
.y189{bottom:376.983898px;}
.y8a{bottom:378.087767px;}
.y14d{bottom:379.393629px;}
.yb6{bottom:379.761154px;}
.y129{bottom:379.984648px;}
.y62{bottom:380.048552px;}
.ye3{bottom:381.642771px;}
.y1c{bottom:384.120316px;}
.y1d8{bottom:388.572034px;}
.y188{bottom:389.730148px;}
.y89{bottom:393.086267px;}
.y14c{bottom:394.392129px;}
.y128{bottom:394.983148px;}
.y61{bottom:395.047052px;}
.ye2{bottom:396.641271px;}
.y1b{bottom:399.118816px;}
.y1d7{bottom:401.318284px;}
.y187{bottom:402.480148px;}
.y88{bottom:408.084767px;}
.y14b{bottom:409.390629px;}
.y127{bottom:409.981648px;}
.y60{bottom:410.045552px;}
.ye1{bottom:411.642771px;}
.y1d6{bottom:414.064534px;}
.y1a{bottom:414.117316px;}
.y87{bottom:423.083267px;}
.y14a{bottom:424.389129px;}
.y126{bottom:424.980148px;}
.y5f{bottom:425.050052px;}
.ye0{bottom:426.641271px;}
.y1d5{bottom:426.810784px;}
.y149{bottom:439.387629px;}
.y1d4{bottom:439.557034px;}
.y125{bottom:439.980148px;}
.y5e{bottom:440.048552px;}
.ydf{bottom:441.651771px;}
.y186{bottom:451.980148px;}
.y1d3{bottom:452.303284px;}
.y148{bottom:454.386129px;}
.y5d{bottom:455.047052px;}
.y86{bottom:456.084767px;}
.yde{bottom:456.650271px;}
.y19{bottom:459.261316px;}
.y1d2{bottom:465.049534px;}
.y147{bottom:469.384629px;}
.y5c{bottom:470.045552px;}
.y85{bottom:471.090767px;}
.ydd{bottom:471.648771px;}
.y124{bottom:472.983148px;}
.y18{bottom:475.758316px;}
.y1d1{bottom:477.795784px;}
.y185{bottom:481.981648px;}
.y146{bottom:484.383129px;}
.y5b{bottom:485.045552px;}
.y84{bottom:486.089267px;}
.ydc{bottom:486.647271px;}
.y123{bottom:487.981648px;}
.y1d0{bottom:490.542034px;}
.y20b{bottom:496.412244px;}
.y184{bottom:496.980148px;}
.y145{bottom:499.381629px;}
.y5a{bottom:500.047052px;}
.y83{bottom:501.087767px;}
.y122{bottom:502.989148px;}
.y1cf{bottom:503.288284px;}
.y17{bottom:505.755315px;}
.y183{bottom:511.980148px;}
.y144{bottom:514.380129px;}
.y59{bottom:515.045552px;}
.y1ce{bottom:516.034534px;}
.y82{bottom:516.086267px;}
.y121{bottom:517.987648px;}
.ydb{bottom:519.641271px;}
.y16{bottom:522.252315px;}
.y20a{bottom:526.409243px;}
.y1cd{bottom:528.780784px;}
.y143{bottom:529.378629px;}
.y58{bottom:530.048552px;}
.y81{bottom:531.084767px;}
.y120{bottom:532.986148px;}
.yda{bottom:534.641271px;}
.y15{bottom:538.749315px;}
.y209{bottom:541.407743px;}
.y1cc{bottom:541.527034px;}
.y182{bottom:541.986148px;}
.y142{bottom:544.377129px;}
.y57{bottom:545.047052px;}
.y80{bottom:546.084767px;}
.y11f{bottom:547.984648px;}
.yd9{bottom:549.642771px;}
.y1cb{bottom:554.273284px;}
.y14{bottom:555.246315px;}
.y208{bottom:556.406243px;}
.y181{bottom:556.984648px;}
.y141{bottom:559.375629px;}
.y56{bottom:560.045552px;}
.y7f{bottom:561.083267px;}
.y11e{bottom:562.983148px;}
.yd8{bottom:564.641271px;}
.y1ca{bottom:567.019534px;}
.y207{bottom:571.404743px;}
.y13{bottom:571.743315px;}
.y180{bottom:571.983148px;}
.y140{bottom:574.374129px;}
.y55{bottom:575.050052px;}
.y7e{bottom:576.083267px;}
.y11d{bottom:577.981648px;}
.yd7{bottom:579.653271px;}
.y1c9{bottom:579.765784px;}
.y206{bottom:586.403243px;}
.y17f{bottom:586.981648px;}
.y12{bottom:588.240315px;}
.y13f{bottom:589.372629px;}
.y54{bottom:590.048552px;}
.y1c8{bottom:592.512034px;}
.y11c{bottom:592.989148px;}
.yd6{bottom:594.651771px;}
.y205{bottom:601.401743px;}
.y17e{bottom:601.981648px;}
.y13e{bottom:604.371129px;}
.y11{bottom:604.737315px;}
.y53{bottom:605.047052px;}
.y1c7{bottom:605.258284px;}
.y11b{bottom:607.987648px;}
.y7d{bottom:609.093767px;}
.yd5{bottom:609.650271px;}
.y204{bottom:616.400243px;}
.y17d{bottom:616.987648px;}
.y1c6{bottom:618.004534px;}
.y13d{bottom:619.369629px;}
.y52{bottom:620.045552px;}
.y10{bottom:621.234315px;}
.y11a{bottom:622.986148px;}
.y7c{bottom:624.092267px;}
.y1c5{bottom:630.750784px;}
.y203{bottom:631.398743px;}
.y17c{bottom:631.986148px;}
.y51{bottom:635.048552px;}
.yf{bottom:637.731315px;}
.y119{bottom:637.984648px;}
.y7b{bottom:639.090767px;}
.yb5{bottom:642.517642px;}
.yd4{bottom:642.644271px;}
.y1c4{bottom:643.497034px;}
.y17b{bottom:646.984648px;}
.y50{bottom:650.047052px;}
.y118{bottom:652.983148px;}
.y202{bottom:653.891380px;}
.y7a{bottom:654.089267px;}
.ye{bottom:654.228315px;}
.y1c3{bottom:656.243284px;}
.yb4{bottom:657.516142px;}
.yd3{bottom:657.642771px;}
.y17a{bottom:661.983148px;}
.y4f{bottom:665.045552px;}
.y117{bottom:667.981648px;}
.y201{bottom:668.889880px;}
.y1c2{bottom:668.989534px;}
.y79{bottom:669.087767px;}
.yd{bottom:670.725315px;}
.yb3{bottom:672.514642px;}
.yd2{bottom:672.641271px;}
.y179{bottom:676.981648px;}
.y161{bottom:679.831650px;}
.y4e{bottom:680.047052px;}
.y1c1{bottom:681.735784px;}
.y116{bottom:682.981648px;}
.y78{bottom:684.086267px;}
.yc{bottom:687.222315px;}
.yb2{bottom:687.513142px;}
.yd1{bottom:687.642771px;}
.y200{bottom:691.394380px;}
.y178{bottom:691.980148px;}
.y1c0{bottom:694.482034px;}
.y4d{bottom:695.045552px;}
.y115{bottom:697.992194px;}
.y77{bottom:699.084767px;}
.yb1{bottom:702.511642px;}
.yd0{bottom:702.641271px;}
.yb{bottom:703.719315px;}
.y177{bottom:706.980148px;}
.y1bf{bottom:707.228284px;}
.y4c{bottom:710.045552px;}
.y114{bottom:712.990694px;}
.y1ff{bottom:713.898880px;}
.y76{bottom:714.083267px;}
.ycf{bottom:717.653271px;}
.y1be{bottom:719.974534px;}
.y4b{bottom:725.047052px;}
.y113{bottom:727.989194px;}
.y1fe{bottom:728.898880px;}
.yce{bottom:732.651771px;}
.y1bd{bottom:732.720784px;}
.ya{bottom:733.719315px;}
.y176{bottom:739.989194px;}
.y4a{bottom:740.045552px;}
.y112{bottom:742.987694px;}
.y1bc{bottom:745.467034px;}
.ycd{bottom:747.650271px;}
.ya0{bottom:748.235976px;}
.y175{bottom:754.987694px;}
.y49{bottom:755.047006px;}
.y111{bottom:757.986194px;}
.y1bb{bottom:758.213284px;}
.y1fd{bottom:758.898880px;}
.ycc{bottom:762.648771px;}
.y9f{bottom:763.234476px;}
.y9{bottom:766.695269px;}
.y174{bottom:769.986194px;}
.y48{bottom:770.045506px;}
.y1ba{bottom:770.959534px;}
.y110{bottom:772.984694px;}
.y1fc{bottom:773.898926px;}
.y9e{bottom:778.232976px;}
.y1b9{bottom:783.705784px;}
.y173{bottom:784.984694px;}
.y47{bottom:785.047006px;}
.y10f{bottom:787.983194px;}
.y9d{bottom:793.231476px;}
.ycb{bottom:795.642771px;}
.y1b8{bottom:796.452034px;}
.y172{bottom:799.983194px;}
.y46{bottom:800.045506px;}
.y10e{bottom:802.981694px;}
.y1fb{bottom:805.370284px;}
.y1b7{bottom:809.198284px;}
.yca{bottom:810.641271px;}
.y8{bottom:811.701269px;}
.y171{bottom:814.981694px;}
.y45{bottom:815.045506px;}
.y10d{bottom:817.981694px;}
.y1fa{bottom:820.368784px;}
.y1b6{bottom:821.944534px;}
.yc9{bottom:825.641271px;}
.y170{bottom:829.983194px;}
.y44{bottom:830.045506px;}
.y10c{bottom:832.995194px;}
.y1b5{bottom:834.690784px;}
.y1f9{bottom:835.367284px;}
.yc8{bottom:840.642771px;}
.y16f{bottom:844.981694px;}
.y43{bottom:845.045506px;}
.y1b4{bottom:847.437034px;}
.y10b{bottom:847.993694px;}
.y1f8{bottom:850.365784px;}
.yc7{bottom:855.641271px;}
.y7{bottom:856.707269px;}
.y16e{bottom:859.981694px;}
.y42{bottom:860.045506px;}
.y1b3{bottom:860.183284px;}
.y10a{bottom:862.992194px;}
.y1f7{bottom:865.365784px;}
.yc6{bottom:870.651771px;}
.y1b2{bottom:872.929534px;}
.y16d{bottom:874.981694px;}
.y41{bottom:875.045506px;}
.y109{bottom:877.990694px;}
.yc5{bottom:885.650271px;}
.y1b1{bottom:885.675784px;}
.y16c{bottom:889.983194px;}
.y40{bottom:890.047006px;}
.y108{bottom:892.989194px;}
.y1f6{bottom:895.367284px;}
.y1b0{bottom:898.422034px;}
.yc4{bottom:900.648771px;}
.y6{bottom:901.713269px;}
.y16b{bottom:904.981694px;}
.y3f{bottom:905.045506px;}
.y107{bottom:907.987694px;}
.y1f5{bottom:910.365784px;}
.y1af{bottom:911.168284px;}
.y16a{bottom:919.986194px;}
.y3e{bottom:920.044006px;}
.y106{bottom:922.986194px;}
.y1ae{bottom:923.914534px;}
.y1f4{bottom:925.365784px;}
.yc3{bottom:933.642771px;}
.y169{bottom:934.984694px;}
.y1ad{bottom:936.660784px;}
.y105{bottom:937.984694px;}
.y5{bottom:946.719269px;}
.yc2{bottom:948.641271px;}
.y1ac{bottom:949.407034px;}
.y168{bottom:949.983194px;}
.y104{bottom:952.983194px;}
.y3d{bottom:953.047006px;}
.y2e{bottom:954.366760px;}
.y1f3{bottom:955.365784px;}
.y1ab{bottom:962.153284px;}
.yc1{bottom:963.642771px;}
.y167{bottom:964.981694px;}
.y103{bottom:967.981694px;}
.y3c{bottom:968.045506px;}
.y1f2{bottom:970.365784px;}
.y1aa{bottom:974.899534px;}
.yc0{bottom:978.641271px;}
.y166{bottom:979.981694px;}
.y102{bottom:982.984694px;}
.y3b{bottom:983.048506px;}
.y1a9{bottom:987.645784px;}
.ybf{bottom:993.651771px;}
.y165{bottom:994.980194px;}
.y101{bottom:997.983194px;}
.y3a{bottom:998.047006px;}
.y1a8{bottom:1000.392034px;}
.ybe{bottom:1008.650271px;}
.y100{bottom:1012.981694px;}
.y39{bottom:1013.045506px;}
.y1a7{bottom:1013.138284px;}
.ybd{bottom:1023.648771px;}
.y1a6{bottom:1025.884534px;}
.yff{bottom:1027.981694px;}
.y164{bottom:1027.986194px;}
.y38{bottom:1028.045506px;}
.y1a5{bottom:1038.630784px;}
.ybc{bottom:1038.647271px;}
.yfe{bottom:1042.981694px;}
.y163{bottom:1042.984694px;}
.y37{bottom:1043.045506px;}
.y1a4{bottom:1051.377034px;}
.yfd{bottom:1057.981694px;}
.y162{bottom:1057.983194px;}
.y36{bottom:1058.047006px;}
.y1a3{bottom:1064.123284px;}
.ybb{bottom:1071.641271px;}
.yfc{bottom:1072.981694px;}
.y35{bottom:1073.045506px;}
.y1a2{bottom:1076.869534px;}
.yba{bottom:1086.639771px;}
.yfb{bottom:1087.980194px;}
.y34{bottom:1088.044006px;}
.y1a1{bottom:1089.615784px;}
.y75{bottom:1140.640320px;}
.ya3{bottom:1140.746521px;}
.y33{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h2{height:33.937500px;}
.h1f{height:35.411133px;}
.h7{height:38.838867px;}
.h21{height:44.505000px;}
.h20{height:45.090000px;}
.h3{height:45.679688px;}
.h22{height:46.080000px;}
.h15{height:47.469727px;}
.hd{height:48.534668px;}
.h6{height:49.183594px;}
.h23{height:50.439000px;}
.h8{height:53.406000px;}
.h1b{height:53.553680px;}
.h1c{height:53.565680px;}
.h19{height:53.571310px;}
.h1d{height:53.577863px;}
.h1e{height:53.589680px;}
.h13{height:53.589863px;}
.h12{height:53.595863px;}
.h11{height:53.596046px;}
.h9{height:53.601863px;}
.h14{height:53.601909px;}
.hf{height:53.602046px;}
.hb{height:53.602504px;}
.h1a{height:53.607680px;}
.ha{height:53.607863px;}
.h17{height:53.607909px;}
.h10{height:53.608046px;}
.he{height:53.614046px;}
.h16{height:54.108000px;}
.h18{height:55.296000px;}
.h4{height:57.099609px;}
.hc{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.228350px;}
.x3{left:61.653603px;}
.x7{left:141.395702px;}
.x5{left:233.858253px;}
.x6{left:251.853390px;}
.xa{left:254.119488px;}
.xc{left:302.498840px;}
.x4{left:586.814117px;}
.x9{left:797.390808px;}
.x2{left:798.901611px;}
.xb{left:818.848755px;}
.x1{left:825.001190px;}
@media print{
.v4{vertical-align:-16.799967pt;}
.v5{vertical-align:-9.605431pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.599976pt;}
.v3{vertical-align:16.602596pt;}
.v2{vertical-align:18.666667pt;}
.ls6f{letter-spacing:-3.720000pt;}
.ls6d{letter-spacing:-2.640000pt;}
.ls5e{letter-spacing:-1.360000pt;}
.ls6e{letter-spacing:-1.040000pt;}
.ls71{letter-spacing:-1.000000pt;}
.ls73{letter-spacing:-0.760000pt;}
.ls64{letter-spacing:-0.640000pt;}
.ls35{letter-spacing:-0.576000pt;}
.ls6c{letter-spacing:-0.560000pt;}
.ls37{letter-spacing:-0.528000pt;}
.ls72{letter-spacing:-0.440000pt;}
.ls36{letter-spacing:-0.432000pt;}
.ls23{letter-spacing:-0.384000pt;}
.ls63{letter-spacing:-0.360000pt;}
.ls18{letter-spacing:-0.336000pt;}
.ls70{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.288000pt;}
.ls62{letter-spacing:-0.280000pt;}
.ls27{letter-spacing:-0.240000pt;}
.ls1f{letter-spacing:-0.218400pt;}
.ls61{letter-spacing:-0.200000pt;}
.ls2a{letter-spacing:-0.192000pt;}
.ls5d{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.144000pt;}
.ls69{letter-spacing:-0.120000pt;}
.ls15{letter-spacing:-0.096000pt;}
.ls5f{letter-spacing:-0.080000pt;}
.ls28{letter-spacing:-0.062400pt;}
.ls17{letter-spacing:-0.048000pt;}
.ls6b{letter-spacing:-0.040000pt;}
.ls26{letter-spacing:-0.031200pt;}
.ls13{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.000067pt;}
.ls3a{letter-spacing:0.000233pt;}
.ls39{letter-spacing:0.003742pt;}
.ls42{letter-spacing:0.004263pt;}
.ls30{letter-spacing:0.009585pt;}
.ls1{letter-spacing:0.012216pt;}
.ls3b{letter-spacing:0.021753pt;}
.ls38{letter-spacing:0.022485pt;}
.ls43{letter-spacing:0.026174pt;}
.ls60{letter-spacing:0.040000pt;}
.ls44{letter-spacing:0.048000pt;}
.ls24{letter-spacing:0.062400pt;}
.ls67{letter-spacing:0.080000pt;}
.lsc{letter-spacing:0.084225pt;}
.lsa{letter-spacing:0.084298pt;}
.ls1e{letter-spacing:0.096000pt;}
.ls31{letter-spacing:0.107753pt;}
.ls40{letter-spacing:0.108592pt;}
.ls3e{letter-spacing:0.109282pt;}
.ls34{letter-spacing:0.112498pt;}
.ls6{letter-spacing:0.112553pt;}
.ls59{letter-spacing:0.120000pt;}
.ls20{letter-spacing:0.124800pt;}
.ls33{letter-spacing:0.129080pt;}
.ls3d{letter-spacing:0.134400pt;}
.lse{letter-spacing:0.140400pt;}
.ls7{letter-spacing:0.141839pt;}
.ls51{letter-spacing:0.142401pt;}
.ls54{letter-spacing:0.142966pt;}
.ls48{letter-spacing:0.142970pt;}
.ls49{letter-spacing:0.143459pt;}
.lsb{letter-spacing:0.144000pt;}
.ls2f{letter-spacing:0.155747pt;}
.ls5{letter-spacing:0.156000pt;}
.ls5a{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.165206pt;}
.ls4a{letter-spacing:0.168000pt;}
.ls56{letter-spacing:0.168524pt;}
.ls58{letter-spacing:0.180000pt;}
.ls11{letter-spacing:0.181333pt;}
.ls3c{letter-spacing:0.184963pt;}
.ls45{letter-spacing:0.187200pt;}
.ls2{letter-spacing:0.192000pt;}
.ls4b{letter-spacing:0.193003pt;}
.ls5b{letter-spacing:0.200000pt;}
.ls2e{letter-spacing:0.212854pt;}
.ls4f{letter-spacing:0.216000pt;}
.ls1b{letter-spacing:0.218400pt;}
.ls53{letter-spacing:0.222889pt;}
.ls57{letter-spacing:0.234667pt;}
.ls8{letter-spacing:0.240000pt;}
.ls3f{letter-spacing:0.242134pt;}
.ls55{letter-spacing:0.244263pt;}
.ls50{letter-spacing:0.256020pt;}
.ls47{letter-spacing:0.268155pt;}
.ls68{letter-spacing:0.280000pt;}
.ls29{letter-spacing:0.288000pt;}
.ls1a{letter-spacing:0.312000pt;}
.ls65{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.336000pt;}
.ls6a{letter-spacing:0.360000pt;}
.ls3{letter-spacing:0.365309pt;}
.ls2d{letter-spacing:0.382391pt;}
.ls25{letter-spacing:0.384000pt;}
.ls21{letter-spacing:0.405600pt;}
.ls1c{letter-spacing:0.432000pt;}
.ls19{letter-spacing:0.480000pt;}
.ls5c{letter-spacing:0.520000pt;}
.ls2b{letter-spacing:0.528000pt;}
.ls41{letter-spacing:0.552051pt;}
.ls4{letter-spacing:0.576000pt;}
.ls2c{letter-spacing:0.597835pt;}
.ls12{letter-spacing:0.599951pt;}
.ls1d{letter-spacing:0.600000pt;}
.ls22{letter-spacing:0.624000pt;}
.ls46{letter-spacing:0.672000pt;}
.ls4e{letter-spacing:0.704005pt;}
.lsd{letter-spacing:0.720000pt;}
.ls52{letter-spacing:0.816000pt;}
.ls4c{letter-spacing:1.056000pt;}
.ls10{letter-spacing:1.178667pt;}
.ls66{letter-spacing:1.187959pt;}
.ls4d{letter-spacing:1.231468pt;}
.ls0{letter-spacing:2.666667pt;}
.ws0{word-spacing:-42.666667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws85{word-spacing:-12.320000pt;}
.ws39{word-spacing:-12.085333pt;}
.ws1a{word-spacing:-11.496000pt;}
.ws1f{word-spacing:-11.136000pt;}
.ws37{word-spacing:-10.992000pt;}
.ws2b{word-spacing:-10.896000pt;}
.ws3a{word-spacing:-10.656000pt;}
.wsb{word-spacing:-10.560000pt;}
.ws28{word-spacing:-10.512000pt;}
.wsb5{word-spacing:-10.416000pt;}
.ws50{word-spacing:-10.368000pt;}
.ws9f{word-spacing:-9.360000pt;}
.wsa0{word-spacing:-9.340000pt;}
.ws90{word-spacing:-9.280000pt;}
.ws87{word-spacing:-9.260000pt;}
.wsa2{word-spacing:-9.200000pt;}
.ws86{word-spacing:-9.000000pt;}
.wsa1{word-spacing:-8.840000pt;}
.ws17{word-spacing:-8.533333pt;}
.ws89{word-spacing:-8.520000pt;}
.wsa3{word-spacing:-8.160000pt;}
.ws88{word-spacing:-7.800000pt;}
.ws1b{word-spacing:-7.488000pt;}
.ws4{word-spacing:-7.394400pt;}
.ws5{word-spacing:-7.300800pt;}
.ws5c{word-spacing:-7.269600pt;}
.ws3{word-spacing:-7.238400pt;}
.ws19{word-spacing:-7.207200pt;}
.ws1c{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.082400pt;}
.ws1d{word-spacing:-7.051200pt;}
.ws1e{word-spacing:-7.020000pt;}
.ws18{word-spacing:-6.864000pt;}
.ws9e{word-spacing:-5.360000pt;}
.wsa6{word-spacing:-5.320000pt;}
.ws9c{word-spacing:-5.280000pt;}
.wsb1{word-spacing:-5.240000pt;}
.ws3f{word-spacing:-4.896000pt;}
.ws9a{word-spacing:-4.800000pt;}
.ws4f{word-spacing:-2.064000pt;}
.ws40{word-spacing:-1.920000pt;}
.ws51{word-spacing:-1.824000pt;}
.ws44{word-spacing:-1.728000pt;}
.ws2a{word-spacing:-1.680000pt;}
.ws43{word-spacing:-1.584000pt;}
.ws4c{word-spacing:-1.440000pt;}
.ws24{word-spacing:-1.296000pt;}
.wsd{word-spacing:-1.152000pt;}
.ws9{word-spacing:-1.104000pt;}
.wsc{word-spacing:-1.056000pt;}
.ws80{word-spacing:-1.008000pt;}
.ws9b{word-spacing:-1.000000pt;}
.ws8b{word-spacing:-0.960000pt;}
.ws8f{word-spacing:-0.920000pt;}
.ws3b{word-spacing:-0.912000pt;}
.ws92{word-spacing:-0.880000pt;}
.ws36{word-spacing:-0.864000pt;}
.ws3c{word-spacing:-0.816000pt;}
.ws2f{word-spacing:-0.768000pt;}
.ws79{word-spacing:-0.720000pt;}
.ws70{word-spacing:-0.672000pt;}
.ws32{word-spacing:-0.624000pt;}
.ws11{word-spacing:-0.576000pt;}
.wsb7{word-spacing:-0.560000pt;}
.ws7d{word-spacing:-0.528000pt;}
.ws99{word-spacing:-0.520000pt;}
.ws69{word-spacing:-0.480000pt;}
.ws15{word-spacing:-0.453333pt;}
.ws25{word-spacing:-0.432000pt;}
.wsb4{word-spacing:-0.400000pt;}
.ws34{word-spacing:-0.384000pt;}
.wsa4{word-spacing:-0.360000pt;}
.ws94{word-spacing:-0.320000pt;}
.ws73{word-spacing:-0.288000pt;}
.wsb6{word-spacing:-0.280000pt;}
.ws5d{word-spacing:-0.240000pt;}
.ws8e{word-spacing:-0.234667pt;}
.ws33{word-spacing:-0.218400pt;}
.ws93{word-spacing:-0.200000pt;}
.ws7{word-spacing:-0.192000pt;}
.ws77{word-spacing:-0.187200pt;}
.ws16{word-spacing:-0.181333pt;}
.ws91{word-spacing:-0.160000pt;}
.ws13{word-spacing:-0.144000pt;}
.ws9d{word-spacing:-0.120000pt;}
.ws2e{word-spacing:-0.096000pt;}
.ws96{word-spacing:-0.080000pt;}
.wsa5{word-spacing:-0.040000pt;}
.ws6{word-spacing:0.000000pt;}
.wsac{word-spacing:0.040000pt;}
.ws56{word-spacing:0.048000pt;}
.ws3d{word-spacing:0.096000pt;}
.wsae{word-spacing:0.120000pt;}
.ws2d{word-spacing:0.144000pt;}
.wsa7{word-spacing:0.160000pt;}
.ws7b{word-spacing:0.192000pt;}
.wsad{word-spacing:0.240000pt;}
.wsb3{word-spacing:0.280000pt;}
.ws30{word-spacing:0.288000pt;}
.ws31{word-spacing:0.336000pt;}
.ws6b{word-spacing:0.384000pt;}
.ws4e{word-spacing:0.432000pt;}
.wsaf{word-spacing:0.440000pt;}
.ws75{word-spacing:0.480000pt;}
.ws8{word-spacing:0.528000pt;}
.wsa9{word-spacing:0.560000pt;}
.ws61{word-spacing:0.576000pt;}
.ws78{word-spacing:0.624000pt;}
.wsb0{word-spacing:0.680000pt;}
.ws35{word-spacing:0.720000pt;}
.ws68{word-spacing:0.768000pt;}
.ws66{word-spacing:0.816000pt;}
.wsb2{word-spacing:0.840000pt;}
.ws8d{word-spacing:0.864000pt;}
.wsa8{word-spacing:0.880000pt;}
.ws10{word-spacing:0.912000pt;}
.ws97{word-spacing:0.920000pt;}
.ws29{word-spacing:0.960000pt;}
.ws76{word-spacing:1.008000pt;}
.wsaa{word-spacing:1.040000pt;}
.wsf{word-spacing:1.056000pt;}
.wse{word-spacing:1.104000pt;}
.ws95{word-spacing:1.120000pt;}
.wsa{word-spacing:1.152000pt;}
.ws72{word-spacing:1.200000pt;}
.ws7e{word-spacing:1.248000pt;}
.ws98{word-spacing:1.280000pt;}
.ws3e{word-spacing:1.296000pt;}
.ws21{word-spacing:1.344000pt;}
.ws7f{word-spacing:1.392000pt;}
.ws82{word-spacing:1.488000pt;}
.ws46{word-spacing:1.536000pt;}
.ws84{word-spacing:1.584000pt;}
.ws6d{word-spacing:1.728000pt;}
.ws74{word-spacing:1.776000pt;}
.ws54{word-spacing:1.824000pt;}
.ws12{word-spacing:1.872000pt;}
.ws4d{word-spacing:1.920000pt;}
.ws53{word-spacing:1.968000pt;}
.ws20{word-spacing:2.016000pt;}
.ws65{word-spacing:2.112000pt;}
.ws81{word-spacing:2.160000pt;}
.ws8a{word-spacing:2.256000pt;}
.ws8c{word-spacing:2.352000pt;}
.ws62{word-spacing:2.448000pt;}
.ws7a{word-spacing:2.496000pt;}
.ws52{word-spacing:2.592000pt;}
.ws7c{word-spacing:2.640000pt;}
.wsb8{word-spacing:2.688000pt;}
.ws5a{word-spacing:2.784000pt;}
.ws45{word-spacing:2.832000pt;}
.ws27{word-spacing:3.120000pt;}
.ws5b{word-spacing:3.168000pt;}
.ws42{word-spacing:3.216000pt;}
.ws22{word-spacing:3.264000pt;}
.ws64{word-spacing:3.312000pt;}
.ws67{word-spacing:3.360000pt;}
.wsab{word-spacing:3.720000pt;}
.ws2c{word-spacing:3.744000pt;}
.ws6a{word-spacing:3.840000pt;}
.ws4b{word-spacing:3.888000pt;}
.ws23{word-spacing:4.032000pt;}
.ws49{word-spacing:4.080000pt;}
.ws6f{word-spacing:4.176000pt;}
.ws6e{word-spacing:4.224000pt;}
.ws26{word-spacing:4.368000pt;}
.ws41{word-spacing:4.416000pt;}
.ws14{word-spacing:4.488000pt;}
.ws4a{word-spacing:4.608000pt;}
.ws48{word-spacing:4.656000pt;}
.ws58{word-spacing:4.800000pt;}
.ws60{word-spacing:4.848000pt;}
.ws83{word-spacing:5.040000pt;}
.ws47{word-spacing:5.136000pt;}
.ws59{word-spacing:5.376000pt;}
.ws57{word-spacing:5.424000pt;}
.wsbb{word-spacing:5.568000pt;}
.wsb9{word-spacing:5.760000pt;}
.wsba{word-spacing:6.000000pt;}
.ws38{word-spacing:6.240000pt;}
.ws6c{word-spacing:6.432000pt;}
.ws71{word-spacing:7.344000pt;}
.ws5f{word-spacing:8.976000pt;}
.ws5e{word-spacing:9.072000pt;}
.ws63{word-spacing:9.888000pt;}
.ws55{word-spacing:13.584000pt;}
._17{margin-left:-18.624006pt;}
._d{margin-left:-15.047467pt;}
._8{margin-left:-13.377615pt;}
._9{margin-left:-12.107733pt;}
._6{margin-left:-10.480000pt;}
._7{margin-left:-9.451733pt;}
._13{margin-left:-8.500267pt;}
._10{margin-left:-6.756800pt;}
._2{margin-left:-5.803733pt;}
._14{margin-left:-4.903023pt;}
._3{margin-left:-3.811200pt;}
._4{margin-left:-2.846400pt;}
._0{margin-left:-1.668267pt;}
._5{width:0.910400pt;}
._e{width:2.092800pt;}
._b{width:3.881600pt;}
._19{width:5.374608pt;}
._f{width:6.298667pt;}
._15{width:7.866134pt;}
._12{width:9.027200pt;}
._18{width:10.424522pt;}
._a{width:11.348267pt;}
._1d{width:12.400000pt;}
._1c{width:14.480000pt;}
._1e{width:16.809600pt;}
._1a{width:27.734933pt;}
._1b{width:33.229866pt;}
._16{width:35.103433pt;}
._11{width:39.265066pt;}
._c{width:42.344515pt;}
._1{width:287.748267pt;}
.fs8{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsa{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:2.843733pt;}
.y32{bottom:2.843867pt;}
.yb9{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y31{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.ya2{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y30{bottom:60.477867pt;}
.y1f1{bottom:62.147363pt;}
.y9c{bottom:64.084662pt;}
.y160{bottom:67.904135pt;}
.y13c{bottom:68.444132pt;}
.yf6{bottom:69.915331pt;}
.y1f0{bottom:73.477363pt;}
.y2f{bottom:73.805867pt;}
.y1a0{bottom:74.506799pt;}
.y9b{bottom:77.416662pt;}
.y15f{bottom:81.236135pt;}
.y13b{bottom:81.776132pt;}
.y74{bottom:81.820935pt;}
.yf5{bottom:83.247331pt;}
.y1ef{bottom:84.807363pt;}
.y19f{bottom:85.836799pt;}
.yb0{bottom:89.762799pt;}
.y9a{bottom:90.748662pt;}
.y15e{bottom:94.568135pt;}
.y13a{bottom:95.108132pt;}
.y73{bottom:95.152935pt;}
.y1ee{bottom:96.137363pt;}
.yf4{bottom:96.579331pt;}
.y19e{bottom:97.166799pt;}
.yaf{bottom:103.094799pt;}
.y1ed{bottom:107.467363pt;}
.y15d{bottom:107.900135pt;}
.y139{bottom:108.440132pt;}
.y72{bottom:108.484935pt;}
.y19d{bottom:108.496799pt;}
.yf3{bottom:109.911331pt;}
.y2d{bottom:114.729737pt;}
.yae{bottom:116.428132pt;}
.y1ec{bottom:118.797363pt;}
.y19c{bottom:119.826799pt;}
.y99{bottom:120.076662pt;}
.y15c{bottom:121.232135pt;}
.y138{bottom:121.772132pt;}
.y71{bottom:121.816935pt;}
.yf2{bottom:123.243331pt;}
.y2c{bottom:128.063070pt;}
.yad{bottom:129.762799pt;}
.y1eb{bottom:130.127363pt;}
.y19b{bottom:131.156799pt;}
.y98{bottom:133.408662pt;}
.y15b{bottom:134.564135pt;}
.y137{bottom:135.104132pt;}
.yf1{bottom:136.575331pt;}
.yfa{bottom:137.098666pt;}
.y2b{bottom:141.397737pt;}
.y1ea{bottom:141.457363pt;}
.y19a{bottom:142.486799pt;}
.yac{bottom:143.094799pt;}
.y97{bottom:146.741995pt;}
.y15a{bottom:147.896135pt;}
.y136{bottom:148.436132pt;}
.yf0{bottom:149.907331pt;}
.yf9{bottom:150.430666pt;}
.y70{bottom:151.152935pt;}
.y1e9{bottom:152.787363pt;}
.y199{bottom:153.816799pt;}
.y2a{bottom:154.729737pt;}
.yab{bottom:156.429465pt;}
.y96{bottom:160.077995pt;}
.y159{bottom:161.228135pt;}
.y135{bottom:161.768132pt;}
.yef{bottom:163.239331pt;}
.yf8{bottom:163.762666pt;}
.y1e8{bottom:164.117363pt;}
.y6f{bottom:164.484935pt;}
.y198{bottom:165.146799pt;}
.y29{bottom:168.064271pt;}
.yaa{bottom:169.761465pt;}
.y95{bottom:173.409995pt;}
.y158{bottom:174.560135pt;}
.y134{bottom:175.100132pt;}
.y1e7{bottom:175.447363pt;}
.y197{bottom:176.476799pt;}
.yee{bottom:176.571331pt;}
.yf7{bottom:177.094666pt;}
.y6e{bottom:177.822269pt;}
.y28{bottom:181.396271pt;}
.ya9{bottom:183.093465pt;}
.y94{bottom:186.741995pt;}
.y1e6{bottom:186.777363pt;}
.y196{bottom:187.806799pt;}
.y157{bottom:187.892135pt;}
.y133{bottom:188.432132pt;}
.yed{bottom:189.903331pt;}
.y6d{bottom:191.154269pt;}
.y27{bottom:194.729605pt;}
.y1e5{bottom:198.107363pt;}
.y195{bottom:199.136799pt;}
.y93{bottom:200.075328pt;}
.y156{bottom:201.224135pt;}
.y132{bottom:201.764132pt;}
.yec{bottom:203.244665pt;}
.y6c{bottom:204.486269pt;}
.y26{bottom:208.064271pt;}
.y1e4{bottom:209.437363pt;}
.y194{bottom:210.466799pt;}
.ya8{bottom:212.429465pt;}
.y92{bottom:213.411328pt;}
.y155{bottom:214.556135pt;}
.y131{bottom:215.096132pt;}
.yeb{bottom:216.576665pt;}
.y6b{bottom:217.818269pt;}
.y1e3{bottom:220.767363pt;}
.y25{bottom:221.396271pt;}
.y193{bottom:221.796799pt;}
.ya7{bottom:225.761465pt;}
.y91{bottom:226.743328pt;}
.y154{bottom:227.888135pt;}
.y130{bottom:228.428132pt;}
.yea{bottom:229.908665pt;}
.y6a{bottom:231.151602pt;}
.y1e2{bottom:232.097363pt;}
.y192{bottom:233.126799pt;}
.y24{bottom:234.729605pt;}
.ya6{bottom:239.096132pt;}
.y90{bottom:240.075328pt;}
.y153{bottom:241.220135pt;}
.y12f{bottom:241.760132pt;}
.ye9{bottom:243.240665pt;}
.y1e1{bottom:243.427363pt;}
.y191{bottom:244.456799pt;}
.y69{bottom:244.487602pt;}
.y23{bottom:248.062938pt;}
.ya5{bottom:252.428132pt;}
.y8f{bottom:253.422015pt;}
.y152{bottom:254.552135pt;}
.y1e0{bottom:254.757363pt;}
.y190{bottom:255.786799pt;}
.ye8{bottom:256.572665pt;}
.y68{bottom:257.819602pt;}
.y22{bottom:261.396271pt;}
.ya4{bottom:265.760132pt;}
.y1df{bottom:266.087363pt;}
.y8e{bottom:266.754015pt;}
.y18f{bottom:267.116799pt;}
.y151{bottom:267.885468pt;}
.ye7{bottom:269.904665pt;}
.y12e{bottom:271.096132pt;}
.y67{bottom:271.151602pt;}
.y21{bottom:274.730938pt;}
.y1de{bottom:277.417363pt;}
.y18e{bottom:278.446799pt;}
.y8d{bottom:280.086015pt;}
.y150{bottom:281.217468pt;}
.ye6{bottom:283.236665pt;}
.y12d{bottom:284.428132pt;}
.y66{bottom:284.484935pt;}
.y20{bottom:288.062938pt;}
.y1dd{bottom:288.747363pt;}
.y18d{bottom:289.776799pt;}
.y8c{bottom:293.418015pt;}
.ye5{bottom:296.568665pt;}
.y12c{bottom:297.762799pt;}
.y65{bottom:297.820935pt;}
.y1dc{bottom:300.077363pt;}
.y18c{bottom:301.106799pt;}
.y1f{bottom:301.444281pt;}
.ye4{bottom:309.901998pt;}
.y14f{bottom:310.574781pt;}
.yb8{bottom:310.901470pt;}
.y12b{bottom:311.094799pt;}
.y64{bottom:311.152935pt;}
.y1db{bottom:311.407363pt;}
.y18b{bottom:312.436799pt;}
.y1e{bottom:314.776281pt;}
.y1da{bottom:322.737363pt;}
.y8b{bottom:322.746015pt;}
.y18a{bottom:323.766799pt;}
.y14e{bottom:323.906781pt;}
.yb7{bottom:324.233470pt;}
.y12a{bottom:324.428132pt;}
.y63{bottom:324.484935pt;}
.y1d{bottom:328.108281pt;}
.y1d9{bottom:334.067363pt;}
.y189{bottom:335.096799pt;}
.y8a{bottom:336.078015pt;}
.y14d{bottom:337.238781pt;}
.yb6{bottom:337.565470pt;}
.y129{bottom:337.764132pt;}
.y62{bottom:337.820935pt;}
.ye3{bottom:339.238018pt;}
.y1c{bottom:341.440281pt;}
.y1d8{bottom:345.397363pt;}
.y188{bottom:346.426799pt;}
.y89{bottom:349.410015pt;}
.y14c{bottom:350.570781pt;}
.y128{bottom:351.096132pt;}
.y61{bottom:351.152935pt;}
.ye2{bottom:352.570018pt;}
.y1b{bottom:354.772281pt;}
.y1d7{bottom:356.727363pt;}
.y187{bottom:357.760132pt;}
.y88{bottom:362.742015pt;}
.y14b{bottom:363.902781pt;}
.y127{bottom:364.428132pt;}
.y60{bottom:364.484935pt;}
.ye1{bottom:365.904685pt;}
.y1d6{bottom:368.057363pt;}
.y1a{bottom:368.104281pt;}
.y87{bottom:376.074015pt;}
.y14a{bottom:377.234781pt;}
.y126{bottom:377.760132pt;}
.y5f{bottom:377.822269pt;}
.ye0{bottom:379.236685pt;}
.y1d5{bottom:379.387363pt;}
.y149{bottom:390.566781pt;}
.y1d4{bottom:390.717363pt;}
.y125{bottom:391.093465pt;}
.y5e{bottom:391.154269pt;}
.ydf{bottom:392.579352pt;}
.y186{bottom:401.760132pt;}
.y1d3{bottom:402.047363pt;}
.y148{bottom:403.898781pt;}
.y5d{bottom:404.486269pt;}
.y86{bottom:405.408682pt;}
.yde{bottom:405.911352pt;}
.y19{bottom:408.232281pt;}
.y1d2{bottom:413.377363pt;}
.y147{bottom:417.230781pt;}
.y5c{bottom:417.818269pt;}
.y85{bottom:418.747349pt;}
.ydd{bottom:419.243352pt;}
.y124{bottom:420.429465pt;}
.y18{bottom:422.896281pt;}
.y1d1{bottom:424.707363pt;}
.y185{bottom:428.428132pt;}
.y146{bottom:430.562781pt;}
.y5b{bottom:431.151602pt;}
.y84{bottom:432.079349pt;}
.ydc{bottom:432.575352pt;}
.y123{bottom:433.761465pt;}
.y1d0{bottom:436.037363pt;}
.y20b{bottom:441.255328pt;}
.y184{bottom:441.760132pt;}
.y145{bottom:443.894781pt;}
.y5a{bottom:444.486269pt;}
.y83{bottom:445.411349pt;}
.y122{bottom:447.101465pt;}
.y1cf{bottom:447.367363pt;}
.y17{bottom:449.560280pt;}
.y183{bottom:455.093465pt;}
.y144{bottom:457.226781pt;}
.y59{bottom:457.818269pt;}
.y1ce{bottom:458.697363pt;}
.y82{bottom:458.743349pt;}
.y121{bottom:460.433465pt;}
.ydb{bottom:461.903352pt;}
.y16{bottom:464.224280pt;}
.y20a{bottom:467.919327pt;}
.y1cd{bottom:470.027363pt;}
.y143{bottom:470.558781pt;}
.y58{bottom:471.154269pt;}
.y81{bottom:472.075349pt;}
.y120{bottom:473.765465pt;}
.yda{bottom:475.236685pt;}
.y15{bottom:478.888280pt;}
.y209{bottom:481.251327pt;}
.y1cc{bottom:481.357363pt;}
.y182{bottom:481.765465pt;}
.y142{bottom:483.890781pt;}
.y57{bottom:484.486269pt;}
.y80{bottom:485.408682pt;}
.y11f{bottom:487.097465pt;}
.yd9{bottom:488.571352pt;}
.y1cb{bottom:492.687363pt;}
.y14{bottom:493.552280pt;}
.y208{bottom:494.583327pt;}
.y181{bottom:495.097465pt;}
.y141{bottom:497.222781pt;}
.y56{bottom:497.818269pt;}
.y7f{bottom:498.740682pt;}
.y11e{bottom:500.429465pt;}
.yd8{bottom:501.903352pt;}
.y1ca{bottom:504.017363pt;}
.y207{bottom:507.915327pt;}
.y13{bottom:508.216280pt;}
.y180{bottom:508.429465pt;}
.y140{bottom:510.554781pt;}
.y55{bottom:511.155602pt;}
.y7e{bottom:512.074015pt;}
.y11d{bottom:513.761465pt;}
.yd7{bottom:515.247352pt;}
.y1c9{bottom:515.347363pt;}
.y206{bottom:521.247327pt;}
.y17f{bottom:521.761465pt;}
.y12{bottom:522.880280pt;}
.y13f{bottom:523.886781pt;}
.y54{bottom:524.487602pt;}
.y1c8{bottom:526.677363pt;}
.y11c{bottom:527.101465pt;}
.yd6{bottom:528.579352pt;}
.y205{bottom:534.579327pt;}
.y17e{bottom:535.094799pt;}
.y13e{bottom:537.218781pt;}
.y11{bottom:537.544280pt;}
.y53{bottom:537.819602pt;}
.y1c7{bottom:538.007363pt;}
.y11b{bottom:540.433465pt;}
.y7d{bottom:541.416682pt;}
.yd5{bottom:541.911352pt;}
.y204{bottom:547.911327pt;}
.y17d{bottom:548.433465pt;}
.y1c6{bottom:549.337363pt;}
.y13d{bottom:550.550781pt;}
.y52{bottom:551.151602pt;}
.y10{bottom:552.208280pt;}
.y11a{bottom:553.765465pt;}
.y7c{bottom:554.748682pt;}
.y1c5{bottom:560.667363pt;}
.y203{bottom:561.243327pt;}
.y17c{bottom:561.765465pt;}
.y51{bottom:564.487602pt;}
.yf{bottom:566.872280pt;}
.y119{bottom:567.097465pt;}
.y7b{bottom:568.080682pt;}
.yb5{bottom:571.126793pt;}
.yd4{bottom:571.239352pt;}
.y1c4{bottom:571.997363pt;}
.y17b{bottom:575.097465pt;}
.y50{bottom:577.819602pt;}
.y118{bottom:580.429465pt;}
.y202{bottom:581.236782pt;}
.y7a{bottom:581.412682pt;}
.ye{bottom:581.536280pt;}
.y1c3{bottom:583.327363pt;}
.yb4{bottom:584.458793pt;}
.yd3{bottom:584.571352pt;}
.y17a{bottom:588.429465pt;}
.y4f{bottom:591.151602pt;}
.y117{bottom:593.761465pt;}
.y201{bottom:594.568782pt;}
.y1c2{bottom:594.657363pt;}
.y79{bottom:594.744682pt;}
.yd{bottom:596.200280pt;}
.yb3{bottom:597.790793pt;}
.yd2{bottom:597.903352pt;}
.y179{bottom:601.761465pt;}
.y161{bottom:604.294800pt;}
.y4e{bottom:604.486269pt;}
.y1c1{bottom:605.987363pt;}
.y116{bottom:607.094799pt;}
.y78{bottom:608.076682pt;}
.yc{bottom:610.864280pt;}
.yb2{bottom:611.122793pt;}
.yd1{bottom:611.238018pt;}
.y200{bottom:614.572782pt;}
.y178{bottom:615.093465pt;}
.y1c0{bottom:617.317363pt;}
.y4d{bottom:617.818269pt;}
.y115{bottom:620.437506pt;}
.y77{bottom:621.408682pt;}
.yb1{bottom:624.454793pt;}
.yd0{bottom:624.570018pt;}
.yb{bottom:625.528280pt;}
.y177{bottom:628.426799pt;}
.y1bf{bottom:628.647363pt;}
.y4c{bottom:631.151602pt;}
.y114{bottom:633.769506pt;}
.y1ff{bottom:634.576782pt;}
.y76{bottom:634.740682pt;}
.ycf{bottom:637.914018pt;}
.y1be{bottom:639.977363pt;}
.y4b{bottom:644.486269pt;}
.y113{bottom:647.101506pt;}
.y1fe{bottom:647.910116pt;}
.yce{bottom:651.246018pt;}
.y1bd{bottom:651.307363pt;}
.ya{bottom:652.194946pt;}
.y176{bottom:657.768173pt;}
.y4a{bottom:657.818269pt;}
.y112{bottom:660.433506pt;}
.y1bc{bottom:662.637363pt;}
.ycd{bottom:664.578018pt;}
.ya0{bottom:665.098645pt;}
.y175{bottom:671.100173pt;}
.y49{bottom:671.152895pt;}
.y111{bottom:673.765506pt;}
.y1bb{bottom:673.967363pt;}
.y1fd{bottom:674.576782pt;}
.ycc{bottom:677.910018pt;}
.y9f{bottom:678.430645pt;}
.y9{bottom:681.506906pt;}
.y174{bottom:684.432173pt;}
.y48{bottom:684.484895pt;}
.y1ba{bottom:685.297363pt;}
.y110{bottom:687.097506pt;}
.y1fc{bottom:687.910156pt;}
.y9e{bottom:691.762645pt;}
.y1b9{bottom:696.627363pt;}
.y173{bottom:697.764173pt;}
.y47{bottom:697.819561pt;}
.y10f{bottom:700.429506pt;}
.y9d{bottom:705.094645pt;}
.ycb{bottom:707.238018pt;}
.y1b8{bottom:707.957363pt;}
.y172{bottom:711.096173pt;}
.y46{bottom:711.151561pt;}
.y10e{bottom:713.761506pt;}
.y1fb{bottom:715.884697pt;}
.y1b7{bottom:719.287363pt;}
.yca{bottom:720.570018pt;}
.y8{bottom:721.512239pt;}
.y171{bottom:724.428173pt;}
.y45{bottom:724.484895pt;}
.y10d{bottom:727.094839pt;}
.y1fa{bottom:729.216697pt;}
.y1b6{bottom:730.617363pt;}
.yc9{bottom:733.903352pt;}
.y170{bottom:737.762839pt;}
.y44{bottom:737.818228pt;}
.y10c{bottom:740.440173pt;}
.y1b5{bottom:741.947363pt;}
.y1f9{bottom:742.548697pt;}
.yc8{bottom:747.238018pt;}
.y16f{bottom:751.094839pt;}
.y43{bottom:751.151561pt;}
.y1b4{bottom:753.277363pt;}
.y10b{bottom:753.772173pt;}
.y1f8{bottom:755.880697pt;}
.yc7{bottom:760.570018pt;}
.y7{bottom:761.517572pt;}
.y16e{bottom:764.428173pt;}
.y42{bottom:764.484895pt;}
.y1b3{bottom:764.607363pt;}
.y10a{bottom:767.104173pt;}
.y1f7{bottom:769.214030pt;}
.yc6{bottom:773.912685pt;}
.y1b2{bottom:775.937363pt;}
.y16d{bottom:777.761506pt;}
.y41{bottom:777.818228pt;}
.y109{bottom:780.436173pt;}
.yc5{bottom:787.244685pt;}
.y1b1{bottom:787.267363pt;}
.y16c{bottom:791.096173pt;}
.y40{bottom:791.152895pt;}
.y108{bottom:793.768173pt;}
.y1f6{bottom:795.882030pt;}
.y1b0{bottom:798.597363pt;}
.yc4{bottom:800.576685pt;}
.y6{bottom:801.522906pt;}
.y16b{bottom:804.428173pt;}
.y3f{bottom:804.484895pt;}
.y107{bottom:807.100173pt;}
.y1f5{bottom:809.214030pt;}
.y1af{bottom:809.927363pt;}
.y16a{bottom:817.765506pt;}
.y3e{bottom:817.816895pt;}
.y106{bottom:820.432173pt;}
.y1ae{bottom:821.257363pt;}
.y1f4{bottom:822.547363pt;}
.yc3{bottom:829.904685pt;}
.y169{bottom:831.097506pt;}
.y1ad{bottom:832.587363pt;}
.y105{bottom:833.764173pt;}
.y5{bottom:841.528239pt;}
.yc2{bottom:843.236685pt;}
.y1ac{bottom:843.917363pt;}
.y168{bottom:844.429506pt;}
.y104{bottom:847.096173pt;}
.y3d{bottom:847.152895pt;}
.y2e{bottom:848.326009pt;}
.y1f3{bottom:849.214030pt;}
.y1ab{bottom:855.247363pt;}
.yc1{bottom:856.571352pt;}
.y167{bottom:857.761506pt;}
.y103{bottom:860.428173pt;}
.y3c{bottom:860.484895pt;}
.y1f2{bottom:862.547363pt;}
.y1aa{bottom:866.577363pt;}
.yc0{bottom:869.903352pt;}
.y166{bottom:871.094839pt;}
.y102{bottom:873.764173pt;}
.y3b{bottom:873.820895pt;}
.y1a9{bottom:877.907363pt;}
.ybf{bottom:883.246018pt;}
.y165{bottom:884.426839pt;}
.y101{bottom:887.096173pt;}
.y3a{bottom:887.152895pt;}
.y1a8{bottom:889.237363pt;}
.ybe{bottom:896.578018pt;}
.y100{bottom:900.428173pt;}
.y39{bottom:900.484895pt;}
.y1a7{bottom:900.567363pt;}
.ybd{bottom:909.910018pt;}
.y1a6{bottom:911.897363pt;}
.yff{bottom:913.761506pt;}
.y164{bottom:913.765506pt;}
.y38{bottom:913.818228pt;}
.y1a5{bottom:923.227363pt;}
.ybc{bottom:923.242018pt;}
.yfe{bottom:927.094839pt;}
.y163{bottom:927.097506pt;}
.y37{bottom:927.151561pt;}
.y1a4{bottom:934.557363pt;}
.yfd{bottom:940.428173pt;}
.y162{bottom:940.429506pt;}
.y36{bottom:940.486228pt;}
.y1a3{bottom:945.887363pt;}
.ybb{bottom:952.570018pt;}
.yfc{bottom:953.761506pt;}
.y35{bottom:953.818228pt;}
.y1a2{bottom:957.217363pt;}
.yba{bottom:965.902018pt;}
.yfb{bottom:967.093506pt;}
.y34{bottom:967.150228pt;}
.y1a1{bottom:968.547363pt;}
.y75{bottom:1013.902507pt;}
.ya3{bottom:1013.996908pt;}
.y33{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h2{height:30.166667pt;}
.h1f{height:31.476562pt;}
.h7{height:34.523438pt;}
.h21{height:39.560000pt;}
.h20{height:40.080000pt;}
.h3{height:40.604167pt;}
.h22{height:40.960000pt;}
.h15{height:42.195312pt;}
.hd{height:43.141927pt;}
.h6{height:43.718750pt;}
.h23{height:44.834667pt;}
.h8{height:47.472000pt;}
.h1b{height:47.603271pt;}
.h1c{height:47.613938pt;}
.h19{height:47.618942pt;}
.h1d{height:47.624767pt;}
.h1e{height:47.635271pt;}
.h13{height:47.635434pt;}
.h12{height:47.640767pt;}
.h11{height:47.640930pt;}
.h9{height:47.646101pt;}
.h14{height:47.646141pt;}
.hf{height:47.646264pt;}
.hb{height:47.646670pt;}
.h1a{height:47.651271pt;}
.ha{height:47.651434pt;}
.h17{height:47.651475pt;}
.h10{height:47.651597pt;}
.he{height:47.656930pt;}
.h16{height:48.096000pt;}
.h18{height:49.152000pt;}
.h4{height:50.755208pt;}
.hc{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.425200pt;}
.x3{left:54.803202pt;}
.x7{left:125.685069pt;}
.x5{left:207.874003pt;}
.x6{left:223.869680pt;}
.xa{left:225.883990pt;}
.xc{left:268.887858pt;}
.x4{left:521.612549pt;}
.x9{left:708.791829pt;}
.x2{left:710.134766pt;}
.xb{left:727.865560pt;}
.x1{left:733.334391pt;}
}


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