
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_bdfdcd4e1a66.woff")format("woff");}.ff1{font-family:ff1;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_4eb975e7e1ab.woff")format("woff");}.ff2{font-family:ff2;line-height:0.851000;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_b9afddcd2e68.woff")format("woff");}.ff3{font-family:ff3;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_1093afe596fc.woff")format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_82d8788607c0.woff")format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_f8b3e55e9f4e.woff")format("woff");}.ff6{font-family:ff6;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_a3602945e1ac.woff")format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_b641ab6714fe.woff")format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_a6a4ad8f4fa6.woff")format("woff");}.ff9{font-family:ff9;line-height:0.681641;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_832f4b063b9b.woff")format("woff");}.ffa{font-family:ffa;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_7b6d94cc361a.woff")format("woff");}.ffb{font-family:ffb;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_f21e45dbadc0.woff")format("woff");}.ffc{font-family:ffc;line-height:1.592000;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_eddca4531675.woff")format("woff");}.ffd{font-family:ffd;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-88.560000px;}
.v4{vertical-align:-73.440000px;}
.v7{vertical-align:-68.758800px;}
.v8{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.v6{vertical-align:68.759400px;}
.v3{vertical-align:75.564360px;}
.v5{vertical-align:86.759400px;}
.ls2{letter-spacing:-0.324000px;}
.ls6{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.148428px;}
.ls4{letter-spacing:-0.144000px;}
.ls65{letter-spacing:-0.120240px;}
.ls7{letter-spacing:-0.108000px;}
.ls62{letter-spacing:-0.096192px;}
.ls22{letter-spacing:-0.093600px;}
.ls5a{letter-spacing:-0.090180px;}
.ls29{letter-spacing:-0.086400px;}
.ls57{letter-spacing:-0.084168px;}
.ls1e{letter-spacing:-0.079200px;}
.ls66{letter-spacing:-0.078156px;}
.ls39{letter-spacing:-0.078120px;}
.ls5c{letter-spacing:-0.072144px;}
.ls21{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.070308px;}
.ls5b{letter-spacing:-0.066132px;}
.ls1b{letter-spacing:-0.064800px;}
.ls55{letter-spacing:-0.060120px;}
.ls2a{letter-spacing:-0.057600px;}
.ls1a{letter-spacing:-0.054684px;}
.ls59{letter-spacing:-0.054108px;}
.ls20{letter-spacing:-0.050400px;}
.ls53{letter-spacing:-0.048096px;}
.ls42{letter-spacing:-0.046872px;}
.ls1f{letter-spacing:-0.043200px;}
.ls5d{letter-spacing:-0.042084px;}
.ls3a{letter-spacing:-0.039060px;}
.ls60{letter-spacing:-0.036072px;}
.ls1c{letter-spacing:-0.036000px;}
.ls44{letter-spacing:-0.031248px;}
.ls52{letter-spacing:-0.030060px;}
.ls19{letter-spacing:-0.028800px;}
.ls46{letter-spacing:-0.025164px;}
.ls56{letter-spacing:-0.024048px;}
.ls40{letter-spacing:-0.023436px;}
.ls18{letter-spacing:-0.021600px;}
.ls58{letter-spacing:-0.018036px;}
.ls3e{letter-spacing:-0.016776px;}
.ls16{letter-spacing:-0.014400px;}
.ls5e{letter-spacing:-0.012024px;}
.ls3f{letter-spacing:-0.008388px;}
.ls13{letter-spacing:-0.007812px;}
.ls17{letter-spacing:-0.007200px;}
.ls51{letter-spacing:-0.006012px;}
.ls1{letter-spacing:0.000000px;}
.ls50{letter-spacing:0.006012px;}
.ls1d{letter-spacing:0.007200px;}
.lsa{letter-spacing:0.007812px;}
.ls4d{letter-spacing:0.012024px;}
.ls34{letter-spacing:0.013176px;}
.ls10{letter-spacing:0.014400px;}
.lsb{letter-spacing:0.015624px;}
.lsc{letter-spacing:0.021600px;}
.ls4f{letter-spacing:0.024048px;}
.ls54{letter-spacing:0.030060px;}
.ls9{letter-spacing:0.031248px;}
.ls4c{letter-spacing:0.036072px;}
.ls24{letter-spacing:0.039060px;}
.ls38{letter-spacing:0.039528px;}
.ls48{letter-spacing:0.043200px;}
.ls2f{letter-spacing:0.046116px;}
.ls23{letter-spacing:0.046872px;}
.ls4e{letter-spacing:0.048096px;}
.ls27{letter-spacing:0.050328px;}
.ls3c{letter-spacing:0.050400px;}
.ls30{letter-spacing:0.052704px;}
.ls4b{letter-spacing:0.054108px;}
.ls43{letter-spacing:0.058716px;}
.ls31{letter-spacing:0.059292px;}
.ls64{letter-spacing:0.060120px;}
.ls25{letter-spacing:0.062496px;}
.ls37{letter-spacing:0.064800px;}
.ls2c{letter-spacing:0.065880px;}
.ls26{letter-spacing:0.067104px;}
.ls3{letter-spacing:0.072000px;}
.ls33{letter-spacing:0.072468px;}
.ls3d{letter-spacing:0.075492px;}
.ls2e{letter-spacing:0.079056px;}
.ls2b{letter-spacing:0.085932px;}
.ls12{letter-spacing:0.086400px;}
.ls8{letter-spacing:0.090180px;}
.ls32{letter-spacing:0.098820px;}
.ls36{letter-spacing:0.105408px;}
.ls0{letter-spacing:0.108000px;}
.ls28{letter-spacing:0.117180px;}
.ls67{letter-spacing:0.120240px;}
.ls11{letter-spacing:0.136800px;}
.ls5f{letter-spacing:0.138276px;}
.lsf{letter-spacing:0.144000px;}
.ls61{letter-spacing:0.150300px;}
.lse{letter-spacing:0.151200px;}
.ls49{letter-spacing:0.158400px;}
.ls5{letter-spacing:0.216000px;}
.ls47{letter-spacing:0.518400px;}
.ls3b{letter-spacing:5.904000px;}
.ls41{letter-spacing:22.824000px;}
.ls2d{letter-spacing:130.040532px;}
.ls45{letter-spacing:185.694228px;}
.ls63{letter-spacing:478.538640px;}
.ls4a{letter-spacing:496.125360px;}
.lsd{letter-spacing:971.424000px;}
.ls35{letter-spacing:1211.796720px;}
.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;}
}
.ws52{word-spacing:-21.678300px;}
.wsb3{word-spacing:-19.994400px;}
.wsb{word-spacing:-19.972800px;}
.wscc{word-spacing:-19.958400px;}
.wscb{word-spacing:-19.951200px;}
.wsc{word-spacing:-19.944000px;}
.wsd{word-spacing:-19.922400px;}
.ws4f{word-spacing:-18.393696px;}
.ws50{word-spacing:-18.373932px;}
.ws51{word-spacing:-18.360756px;}
.ws0{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.803540px;}
.wsf0{word-spacing:-13.767480px;}
.wsd8{word-spacing:-13.647240px;}
.wsf1{word-spacing:-13.641228px;}
.wsef{word-spacing:-13.587120px;}
.wsa{word-spacing:-1.620000px;}
.ws33{word-spacing:-0.523404px;}
.wsf{word-spacing:-0.468720px;}
.wsdc{word-spacing:-0.444888px;}
.ws8{word-spacing:-0.432000px;}
.wsbc{word-spacing:-0.429660px;}
.wsd9{word-spacing:-0.384768px;}
.wse4{word-spacing:-0.378756px;}
.wsd7{word-spacing:-0.375516px;}
.ws10{word-spacing:-0.351540px;}
.ws12{word-spacing:-0.265608px;}
.ws7c{word-spacing:-0.257796px;}
.ws29{word-spacing:-0.218736px;}
.ws6{word-spacing:-0.216000px;}
.wse{word-spacing:-0.203112px;}
.ws2a{word-spacing:-0.148428px;}
.ws78{word-spacing:-0.132804px;}
.ws7{word-spacing:-0.108000px;}
.ws11{word-spacing:-0.093744px;}
.ws3{word-spacing:-0.072000px;}
.wsb4{word-spacing:-0.054684px;}
.wseb{word-spacing:-0.054108px;}
.ws60{word-spacing:-0.046116px;}
.wse3{word-spacing:-0.042084px;}
.ws7b{word-spacing:-0.031248px;}
.wsea{word-spacing:-0.030060px;}
.ws68{word-spacing:-0.023436px;}
.ws5b{word-spacing:-0.019764px;}
.wsf2{word-spacing:-0.018036px;}
.ws5f{word-spacing:-0.013176px;}
.wsee{word-spacing:-0.012024px;}
.wsd6{word-spacing:-0.007200px;}
.ws5c{word-spacing:-0.006588px;}
.ws2{word-spacing:0.000000px;}
.wse5{word-spacing:0.006012px;}
.ws5e{word-spacing:0.006588px;}
.wse2{word-spacing:0.012024px;}
.ws76{word-spacing:0.016776px;}
.wsdb{word-spacing:0.018036px;}
.wsde{word-spacing:0.024048px;}
.ws28{word-spacing:0.025164px;}
.wsda{word-spacing:0.030060px;}
.wse6{word-spacing:0.036072px;}
.wse1{word-spacing:0.042084px;}
.wsca{word-spacing:0.043200px;}
.ws13{word-spacing:0.046872px;}
.wsf3{word-spacing:0.048096px;}
.wsdd{word-spacing:0.054108px;}
.wse0{word-spacing:0.060120px;}
.wscd{word-spacing:0.115200px;}
.ws4{word-spacing:0.144000px;}
.ws38{word-spacing:0.151200px;}
.ws3b{word-spacing:0.158400px;}
.ws26{word-spacing:0.165600px;}
.ws14{word-spacing:0.172800px;}
.ws1a{word-spacing:0.180000px;}
.ws6e{word-spacing:0.187200px;}
.ws1c{word-spacing:0.194400px;}
.ws25{word-spacing:0.201600px;}
.ws89{word-spacing:0.208800px;}
.ws5{word-spacing:0.216000px;}
.ws1b{word-spacing:0.223200px;}
.ws24{word-spacing:0.237600px;}
.wsd2{word-spacing:0.259200px;}
.ws77{word-spacing:0.285192px;}
.ws4a{word-spacing:0.288000px;}
.ws42{word-spacing:0.352800px;}
.wsd1{word-spacing:0.388800px;}
.ws7a{word-spacing:0.439200px;}
.ws5a{word-spacing:0.554400px;}
.ws30{word-spacing:0.799200px;}
.ws8e{word-spacing:0.950400px;}
.ws8d{word-spacing:0.972000px;}
.ws2f{word-spacing:1.015200px;}
.ws32{word-spacing:1.296000px;}
.ws31{word-spacing:1.360800px;}
.ws43{word-spacing:1.612800px;}
.ws46{word-spacing:1.944000px;}
.ws45{word-spacing:1.958400px;}
.ws79{word-spacing:1.972800px;}
.ws54{word-spacing:2.304000px;}
.wsc8{word-spacing:2.325600px;}
.wsc9{word-spacing:2.347200px;}
.ws53{word-spacing:2.361600px;}
.ws9b{word-spacing:2.959200px;}
.ws95{word-spacing:3.060000px;}
.ws9c{word-spacing:3.146400px;}
.ws96{word-spacing:3.153600px;}
.ws41{word-spacing:3.780000px;}
.ws2e{word-spacing:3.816000px;}
.ws40{word-spacing:3.880800px;}
.ws2d{word-spacing:3.909600px;}
.wsae{word-spacing:4.118400px;}
.wsc6{word-spacing:4.132800px;}
.wsc7{word-spacing:4.204800px;}
.wsaf{word-spacing:4.276800px;}
.wsd5{word-spacing:4.485600px;}
.wsc5{word-spacing:4.500000px;}
.ws9d{word-spacing:4.521600px;}
.ws88{word-spacing:4.852800px;}
.ws87{word-spacing:4.982400px;}
.ws90{word-spacing:5.774400px;}
.ws82{word-spacing:5.932800px;}
.ws2b{word-spacing:5.947200px;}
.ws92{word-spacing:5.961600px;}
.ws35{word-spacing:6.004800px;}
.ws34{word-spacing:6.040800px;}
.ws91{word-spacing:6.120000px;}
.ws2c{word-spacing:6.184800px;}
.ws18{word-spacing:7.632000px;}
.ws19{word-spacing:7.682400px;}
.ws9f{word-spacing:8.791200px;}
.ws9e{word-spacing:8.892000px;}
.wsa0{word-spacing:9.007200px;}
.wsb6{word-spacing:10.180800px;}
.wsb5{word-spacing:10.317600px;}
.wsce{word-spacing:10.620000px;}
.ws27{word-spacing:12.038400px;}
.ws23{word-spacing:12.074400px;}
.ws1e{word-spacing:12.081600px;}
.ws20{word-spacing:12.088800px;}
.ws1f{word-spacing:12.103200px;}
.ws21{word-spacing:12.110400px;}
.ws1d{word-spacing:12.117600px;}
.ws8f{word-spacing:12.427200px;}
.ws37{word-spacing:12.787200px;}
.ws69{word-spacing:13.471200px;}
.wsa3{word-spacing:13.500000px;}
.ws6a{word-spacing:13.528800px;}
.wsa4{word-spacing:13.579200px;}
.ws39{word-spacing:14.184000px;}
.ws74{word-spacing:14.212800px;}
.wsb1{word-spacing:14.335200px;}
.wsb0{word-spacing:14.356800px;}
.ws3a{word-spacing:14.385600px;}
.ws75{word-spacing:14.436000px;}
.wsa5{word-spacing:14.572800px;}
.wsa6{word-spacing:14.587200px;}
.wsa7{word-spacing:14.781600px;}
.ws63{word-spacing:14.911200px;}
.ws62{word-spacing:15.184800px;}
.ws61{word-spacing:15.206400px;}
.ws64{word-spacing:15.264000px;}
.ws65{word-spacing:15.278400px;}
.wsd3{word-spacing:15.292800px;}
.ws58{word-spacing:15.300000px;}
.ws57{word-spacing:15.321600px;}
.ws59{word-spacing:15.328800px;}
.wsd4{word-spacing:15.400800px;}
.ws47{word-spacing:16.380000px;}
.ws48{word-spacing:16.416000px;}
.ws22{word-spacing:17.712000px;}
.ws17{word-spacing:19.216800px;}
.ws15{word-spacing:19.245600px;}
.ws84{word-spacing:19.274400px;}
.ws16{word-spacing:19.375200px;}
.ws83{word-spacing:19.497600px;}
.ws85{word-spacing:19.634400px;}
.wsab{word-spacing:19.908000px;}
.wsac{word-spacing:19.972800px;}
.wsbb{word-spacing:20.707200px;}
.wsb9{word-spacing:22.485600px;}
.wsba{word-spacing:22.536000px;}
.wsb7{word-spacing:22.838400px;}
.wsb8{word-spacing:22.852800px;}
.wsa1{word-spacing:23.212800px;}
.ws67{word-spacing:23.220000px;}
.ws66{word-spacing:23.234400px;}
.wsa2{word-spacing:23.349600px;}
.ws86{word-spacing:25.365600px;}
.ws94{word-spacing:29.685600px;}
.ws93{word-spacing:29.800800px;}
.ws9a{word-spacing:30.427200px;}
.ws99{word-spacing:30.441600px;}
.wsb2{word-spacing:30.758400px;}
.ws3d{word-spacing:31.140000px;}
.ws3c{word-spacing:31.154400px;}
.ws98{word-spacing:31.845600px;}
.ws97{word-spacing:31.867200px;}
.wscf{word-spacing:37.245600px;}
.ws4c{word-spacing:39.139200px;}
.ws4b{word-spacing:39.168000px;}
.ws8a{word-spacing:40.860000px;}
.wsbe{word-spacing:43.423200px;}
.wsbd{word-spacing:43.509600px;}
.ws7e{word-spacing:47.354400px;}
.ws7d{word-spacing:47.397600px;}
.ws6d{word-spacing:47.613600px;}
.ws6c{word-spacing:47.671200px;}
.ws6b{word-spacing:47.685600px;}
.wsa8{word-spacing:49.125600px;}
.wsa9{word-spacing:49.132800px;}
.wsaa{word-spacing:49.204800px;}
.ws3f{word-spacing:52.696800px;}
.wsd0{word-spacing:53.539200px;}
.wsc1{word-spacing:54.165600px;}
.wsbf{word-spacing:54.172800px;}
.wsc0{word-spacing:54.201600px;}
.ws4e{word-spacing:54.871200px;}
.ws4d{word-spacing:54.885600px;}
.ws36{word-spacing:54.900000px;}
.ws44{word-spacing:54.907200px;}
.ws3e{word-spacing:54.928800px;}
.wsc4{word-spacing:55.188000px;}
.wsc3{word-spacing:55.274400px;}
.wsc2{word-spacing:55.346400px;}
.ws8b{word-spacing:57.045600px;}
.ws8c{word-spacing:57.103200px;}
.ws56{word-spacing:57.780000px;}
.ws55{word-spacing:57.895200px;}
.ws72{word-spacing:61.725600px;}
.ws71{word-spacing:61.732800px;}
.ws73{word-spacing:61.898400px;}
.ws6f{word-spacing:63.144000px;}
.ws70{word-spacing:63.165600px;}
.ws49{word-spacing:65.347200px;}
.ws7f{word-spacing:81.540000px;}
.ws81{word-spacing:81.554400px;}
.ws80{word-spacing:81.907200px;}
.wsad{word-spacing:86.205600px;}
.wsed{word-spacing:141.756948px;}
.wse9{word-spacing:141.762960px;}
.wsec{word-spacing:141.805044px;}
.wse8{word-spacing:141.817068px;}
.wse7{word-spacing:141.823080px;}
.wsdf{word-spacing:141.835104px;}
.ws5d{word-spacing:1516.695948px;}
._1d{margin-left:-1303.560552px;}
._18{margin-left:-52.920000px;}
._12{margin-left:-42.120000px;}
._22{margin-left:-23.760000px;}
._2d{margin-left:-13.707360px;}
._7{margin-left:-11.880000px;}
._19{margin-left:-10.440000px;}
._28{margin-left:-4.680000px;}
._15{margin-left:-2.340000px;}
._1{margin-left:-1.080000px;}
._0{width:1.188000px;}
._a{width:3.153600px;}
._9{width:4.564800px;}
._f{width:6.372000px;}
._6{width:8.539200px;}
._b{width:10.641600px;}
._3{width:11.880000px;}
._21{width:14.040000px;}
._d{width:15.566400px;}
._23{width:18.936000px;}
._26{width:26.877600px;}
._14{width:31.320000px;}
._10{width:38.880000px;}
._13{width:40.680000px;}
._27{width:43.437600px;}
._1b{width:47.160000px;}
._20{width:48.960000px;}
._8{width:51.120000px;}
._17{width:53.280000px;}
._16{width:54.720000px;}
._11{width:56.448000px;}
._c{width:59.040000px;}
._1a{width:60.120000px;}
._4{width:63.000000px;}
._24{width:65.664000px;}
._2f{width:67.358448px;}
._5{width:71.280000px;}
._2{width:79.200000px;}
._e{width:83.160000px;}
._30{width:114.479964px;}
._2e{width:141.840756px;}
._25{width:192.240000px;}
._1f{width:212.030868px;}
._31{width:230.067000px;}
._2a{width:256.718760px;}
._33{width:266.788140px;}
._29{width:272.547600px;}
._1e{width:289.072140px;}
._32{width:299.199360px;}
._2c{width:311.637744px;}
._34{width:314.517744px;}
._2b{width:327.221016px;}
._1c{width:332.990268px;}
.fc2{color:rgb(15,36,62);}
.fc1{color:rgb(13,27,67);}
.fc4{color:rgb(154,154,154);}
.fc3{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:6.120000px;}
.fs2{font-size:41.760000px;}
.fs3{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:78.120000px;}
.fs6{font-size:83.880000px;}
.fs7{font-size:96.120000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:44.100000px;}
.y1e{bottom:66.060000px;}
.y1d{bottom:86.580000px;}
.y162{bottom:98.852400px;}
.y1c{bottom:106.920000px;}
.yb9{bottom:108.660600px;}
.y123{bottom:115.770300px;}
.y161{bottom:116.037750px;}
.y1b{bottom:127.260000px;}
.yb8{bottom:129.630600px;}
.y160{bottom:133.322250px;}
.y97{bottom:134.670450px;}
.y67{bottom:138.810450px;}
.y122{bottom:143.670450px;}
.y1a{bottom:147.600000px;}
.y15f{bottom:150.511950px;}
.yb7{bottom:150.600600px;}
.y96{bottom:155.640450px;}
.y66{bottom:159.780450px;}
.y121{bottom:165.000450px;}
.y15e{bottom:167.701800px;}
.y19{bottom:168.120000px;}
.yb6{bottom:171.660600px;}
.y95{bottom:176.610450px;}
.y65{bottom:180.750450px;}
.y120{bottom:182.280450px;}
.y15d{bottom:184.981800px;}
.y18{bottom:188.460000px;}
.yb5{bottom:192.630600px;}
.y94{bottom:197.670450px;}
.y11f{bottom:200.186130px;}
.y15c{bottom:202.171650px;}
.y17{bottom:208.800000px;}
.y64{bottom:210.810450px;}
.y11e{bottom:217.380450px;}
.y15b{bottom:219.451650px;}
.yb4{bottom:222.600600px;}
.y93{bottom:227.829540px;}
.y16{bottom:229.140000px;}
.y63{bottom:231.780450px;}
.y11d{bottom:234.660450px;}
.y15a{bottom:236.641350px;}
.yb3{bottom:243.660600px;}
.y15{bottom:249.660000px;}
.y92{bottom:250.230450px;}
.y11c{bottom:252.570600px;}
.y159{bottom:253.831200px;}
.y62{bottom:261.750450px;}
.yb2{bottom:264.630600px;}
.y11b{bottom:269.760450px;}
.y14{bottom:270.000000px;}
.y158{bottom:271.111200px;}
.y61{bottom:282.810450px;}
.yb1{bottom:285.600600px;}
.y11a{bottom:287.760600px;}
.y157{bottom:288.301050px;}
.y13{bottom:290.340000px;}
.y91{bottom:290.460450px;}
.y60{bottom:303.780450px;}
.yd0{bottom:304.050450px;}
.y119{bottom:304.950450px;}
.y156{bottom:305.486400px;}
.yb0{bottom:306.660600px;}
.y12{bottom:310.860000px;}
.y90{bottom:311.520450px;}
.y155{bottom:322.770900px;}
.y118{bottom:322.950600px;}
.yaf{bottom:327.630600px;}
.y11{bottom:331.200000px;}
.y8f{bottom:332.490450px;}
.y5f{bottom:333.750450px;}
.ycf{bottom:339.510450px;}
.y154{bottom:339.960600px;}
.y117{bottom:340.140450px;}
.y42{bottom:342.750450px;}
.yae{bottom:348.600600px;}
.y10{bottom:351.540000px;}
.y5e{bottom:354.810450px;}
.y153{bottom:357.150450px;}
.y116{bottom:358.140750px;}
.y8e{bottom:362.649540px;}
.y41{bottom:363.810450px;}
.yce{bottom:369.480450px;}
.yad{bottom:369.660600px;}
.yf{bottom:371.880000px;}
.y152{bottom:375.154800px;}
.y115{bottom:375.330600px;}
.y5d{bottom:384.780450px;}
.y8d{bottom:385.050450px;}
.yac{bottom:390.630600px;}
.ye{bottom:391.500000px;}
.y151{bottom:392.340150px;}
.y114{bottom:393.330750px;}
.y40{bottom:393.780450px;}
.ycd{bottom:399.450450px;}
.y150{bottom:409.624650px;}
.y113{bottom:410.520600px;}
.yab{bottom:411.600600px;}
.yd{bottom:412.560000px;}
.y3f{bottom:414.660450px;}
.y5c{bottom:414.750450px;}
.y8c{bottom:425.280600px;}
.y14f{bottom:426.809880px;}
.y112{bottom:428.431800px;}
.ycc{bottom:429.510450px;}
.yaa{bottom:432.660600px;}
.y3e{bottom:435.720450px;}
.y5b{bottom:435.810450px;}
.yc{bottom:441.540000px;}
.y14e{bottom:444.004200px;}
.y111{bottom:445.707330px;}
.y8b{bottom:446.340600px;}
.y3d{bottom:456.780450px;}
.ycb{bottom:459.480450px;}
.y14d{bottom:461.284200px;}
.ya9{bottom:462.819540px;}
.y110{bottom:462.901650px;}
.y8a{bottom:467.310600px;}
.ye6{bottom:471.810600px;}
.y14c{bottom:478.474050px;}
.yb{bottom:479.340000px;}
.y10f{bottom:480.086850px;}
.ya8{bottom:485.220450px;}
.y3c{bottom:486.750450px;}
.y89{bottom:488.280600px;}
.yca{bottom:489.450450px;}
.y14b{bottom:495.663900px;}
.y10e{bottom:497.371350px;}
.ye5{bottom:501.781050px;}
.y3b{bottom:507.720450px;}
.y5a{bottom:507.810450px;}
.y10d{bottom:514.556730px;}
.ya{bottom:517.140000px;}
.yc9{bottom:519.510450px;}
.y14a{bottom:521.939280px;}
.ya7{bottom:525.450450px;}
.y85{bottom:527.692710px;}
.y3a{bottom:528.690450px;}
.y10c{bottom:531.751050px;}
.ye4{bottom:531.840450px;}
.y59{bottom:537.780450px;}
.y149{bottom:539.133600px;}
.ya6{bottom:546.510450px;}
.y84{bottom:546.682620px;}
.y10b{bottom:549.031050px;}
.yc8{bottom:549.480450px;}
.y39{bottom:549.750450px;}
.y9{bottom:554.940000px;}
.y148{bottom:556.323450px;}
.y58{bottom:558.750450px;}
.ye3{bottom:561.180450px;}
.y83{bottom:565.771350px;}
.y10a{bottom:566.216280px;}
.ya5{bottom:567.480450px;}
.y38{bottom:570.810450px;}
.y147{bottom:573.603450px;}
.yc7{bottom:579.450450px;}
.y109{bottom:583.410600px;}
.y87{bottom:584.670600px;}
.y82{bottom:584.670630px;}
.ya4{bottom:588.450450px;}
.y57{bottom:588.810450px;}
.ye2{bottom:589.350450px;}
.y146{bottom:590.788680px;}
.y37{bottom:591.780450px;}
.y8{bottom:592.740000px;}
.y108{bottom:600.690600px;}
.y81{bottom:603.660540px;}
.y86{bottom:603.660600px;}
.y145{bottom:607.983000px;}
.yc6{bottom:609.510450px;}
.y56{bottom:609.780450px;}
.y36{bottom:612.750450px;}
.y107{bottom:617.880450px;}
.ya3{bottom:618.510450px;}
.ye1{bottom:620.490450px;}
.y80{bottom:622.650450px;}
.y88{bottom:622.652100px;}
.y144{bottom:625.263000px;}
.y7{bottom:626.580000px;}
.yc5{bottom:630.480450px;}
.y106{bottom:635.883000px;}
.ya2{bottom:639.480450px;}
.y55{bottom:639.750450px;}
.y143{bottom:642.448350px;}
.y35{bottom:642.810450px;}
.y7f{bottom:646.770540px;}
.yc4{bottom:651.450450px;}
.y6{bottom:651.780000px;}
.ye0{bottom:652.620450px;}
.y105{bottom:653.068200px;}
.y142{bottom:659.732850px;}
.ya1{bottom:660.450450px;}
.y54{bottom:660.810450px;}
.y34{bottom:663.780450px;}
.y7e{bottom:665.760450px;}
.y104{bottom:670.352700px;}
.yc3{bottom:672.510450px;}
.y141{bottom:676.918080px;}
.y5{bottom:676.980000px;}
.ya0{bottom:681.510450px;}
.y33{bottom:684.750450px;}
.y103{bottom:687.542550px;}
.y7d{bottom:689.971140px;}
.y53{bottom:690.969540px;}
.y140{bottom:694.112400px;}
.ydf{bottom:701.760450px;}
.y4{bottom:702.180000px;}
.y9f{bottom:702.480450px;}
.y102{bottom:704.732400px;}
.y32{bottom:705.810450px;}
.y7c{bottom:708.961050px;}
.y13f{bottom:711.297750px;}
.y52{bottom:713.370450px;}
.y101{bottom:722.012400px;}
.y9e{bottom:723.450450px;}
.y31{bottom:726.780450px;}
.y3{bottom:727.380000px;}
.y13e{bottom:728.582250px;}
.yde{bottom:732.810450px;}
.y100{bottom:739.202250px;}
.y30{bottom:747.750450px;}
.y9d{bottom:753.510450px;}
.y51{bottom:753.600450px;}
.yff{bottom:756.391950px;}
.y2{bottom:756.540000px;}
.y7b{bottom:759.540450px;}
.y13d{bottom:762.961800px;}
.ydd{bottom:765.030450px;}
.y2f{bottom:768.810450px;}
.yfe{bottom:773.671950px;}
.y9c{bottom:774.480450px;}
.y50{bottom:774.660450px;}
.y178{bottom:774.840450px;}
.y13c{bottom:780.241800px;}
.y75{bottom:785.182620px;}
.y79{bottom:785.459250px;}
.y2e{bottom:789.780450px;}
.yfd{bottom:790.857330px;}
.y9b{bottom:795.450450px;}
.y4f{bottom:795.630450px;}
.y13b{bottom:797.427180px;}
.y74{bottom:804.271350px;}
.y177{bottom:805.170750px;}
.yfc{bottom:808.051650px;}
.y78{bottom:810.660000px;}
.y2d{bottom:810.750450px;}
.ydc{bottom:814.170450px;}
.y13a{bottom:814.621500px;}
.y9a{bottom:816.510450px;}
.y176{bottom:822.360600px;}
.y73{bottom:823.170630px;}
.yfb{bottom:825.327030px;}
.yc2{bottom:825.601890px;}
.y4e{bottom:825.789540px;}
.y2c{bottom:831.810450px;}
.y139{bottom:831.901500px;}
.y77{bottom:835.860750px;}
.y99{bottom:837.480450px;}
.y175{bottom:840.356280px;}
.y72{bottom:842.160540px;}
.yfa{bottom:842.521350px;}
.ydb{bottom:845.130450px;}
.yc1{bottom:848.100450px;}
.y4d{bottom:848.190450px;}
.y138{bottom:849.091200px;}
.y174{bottom:857.550600px;}
.yf9{bottom:859.711200px;}
.y7a{bottom:861.059850px;}
.y76{bottom:861.061500px;}
.y71{bottom:861.150450px;}
.y2b{bottom:861.780450px;}
.y137{bottom:866.371200px;}
.y98{bottom:867.450450px;}
.y173{bottom:874.740450px;}
.yf8{bottom:876.991200px;}
.yda{bottom:877.350450px;}
.y136{bottom:883.556580px;}
.y70{bottom:885.369360px;}
.y4c{bottom:888.510450px;}
.yc0{bottom:888.870450px;}
.y172{bottom:892.736280px;}
.yf7{bottom:894.176580px;}
.y135{bottom:900.750900px;}
.y6f{bottom:904.260450px;}
.y4b{bottom:909.480450px;}
.y171{bottom:909.930600px;}
.yf6{bottom:911.370900px;}
.y134{bottom:918.030900px;}
.ybf{bottom:921.990450px;}
.y2a{bottom:923.160450px;}
.yd9{bottom:926.400450px;}
.y170{bottom:927.120450px;}
.y6e{bottom:928.560450px;}
.yf5{bottom:928.650900px;}
.y4a{bottom:939.639690px;}
.y133{bottom:944.220600px;}
.y16f{bottom:945.120600px;}
.yf4{bottom:945.840600px;}
.y29{bottom:953.220450px;}
.ybe{bottom:954.660450px;}
.yd8{bottom:957.540450px;}
.y132{bottom:961.410450px;}
.y49{bottom:962.040600px;}
.y16e{bottom:962.310450px;}
.yf3{bottom:963.030450px;}
.y6d{bottom:975.630450px;}
.y130{bottom:979.406730px;}
.y16d{bottom:980.310600px;}
.yf1{bottom:981.026580px;}
.y28{bottom:983.190450px;}
.ybd{bottom:984.630450px;}
.yd7{bottom:989.760450px;}
.y6c{bottom:996.600450px;}
.y12f{bottom:996.601050px;}
.y16c{bottom:997.500450px;}
.yf0{bottom:998.220900px;}
.y48{bottom:1002.360450px;}
.y27{bottom:1004.160450px;}
.y12e{bottom:1013.781780px;}
.ybc{bottom:1014.600450px;}
.yef{bottom:1015.406130px;}
.yf2{bottom:1015.410600px;}
.y16b{bottom:1015.500600px;}
.yd6{bottom:1020.810450px;}
.y47{bottom:1023.330450px;}
.y26{bottom:1025.220450px;}
.y6b{bottom:1026.660450px;}
.y12d{bottom:1030.976100px;}
.y131{bottom:1030.980600px;}
.yee{bottom:1032.600450px;}
.y16a{bottom:1032.690450px;}
.ybb{bottom:1035.660450px;}
.y25{bottom:1046.190450px;}
.y6a{bottom:1047.630450px;}
.y12c{bottom:1048.260600px;}
.yed{bottom:1049.880450px;}
.y169{bottom:1050.600450px;}
.yd5{bottom:1053.030450px;}
.y46{bottom:1053.489540px;}
.yba{bottom:1056.630450px;}
.y12b{bottom:1065.450450px;}
.ye9{bottom:1067.791200px;}
.y168{bottom:1067.880450px;}
.yeb{bottom:1071.931950px;}
.y45{bottom:1075.890450px;}
.y24{bottom:1076.160450px;}
.yec{bottom:1076.431950px;}
.y69{bottom:1077.600450px;}
.y167{bottom:1085.790900px;}
.yd4{bottom:1086.420450px;}
.y127{bottom:1092.089850px;}
.yea{bottom:1093.621800px;}
.ye8{bottom:1093.710450px;}
.y129{bottom:1096.140450px;}
.y68{bottom:1098.660450px;}
.y12a{bottom:1100.640450px;}
.y166{bottom:1103.066280px;}
.y23{bottom:1106.399100px;}
.y44{bottom:1116.750450px;}
.y128{bottom:1117.830300px;}
.y126{bottom:1117.920450px;}
.yd3{bottom:1118.550450px;}
.y165{bottom:1120.260600px;}
.y22{bottom:1128.819540px;}
.ye7{bottom:1129.980450px;}
.y125{bottom:1135.740450px;}
.y164{bottom:1137.450450px;}
.y43{bottom:1149.870450px;}
.yd2{bottom:1149.960450px;}
.y21{bottom:1151.220450px;}
.y163{bottom:1154.730450px;}
.y124{bottom:1168.140450px;}
.yd1{bottom:1193.700450px;}
.y20{bottom:1195.950450px;}
.y1{bottom:1247.400000px;}
.h15{height:6.382969px;}
.h5{height:50.904000px;}
.h7{height:59.764320px;}
.h10{height:62.703281px;}
.h11{height:64.148040px;}
.h14{height:65.170080px;}
.h8{height:68.710781px;}
.h3{height:70.628906px;}
.ha{height:75.093750px;}
.h4{height:76.356000px;}
.h9{height:81.476719px;}
.he{height:87.447859px;}
.hb{height:87.484219px;}
.hf{height:100.250156px;}
.h6{height:115.992000px;}
.h13{height:132.907440px;}
.hc{height:144.275141px;}
.hd{height:144.670421px;}
.h12{height:150.907440px;}
.h2{height:1262.866500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.396500px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w3{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:42.480000px;}
.x2{left:80.820000px;}
.x7{left:106.380000px;}
.x25{left:109.260000px;}
.x11{left:111.600000px;}
.x1b{left:133.380000px;}
.x5{left:148.402170px;}
.x2c{left:154.979700px;}
.x2b{left:160.380000px;}
.x23{left:170.190000px;}
.xf{left:175.680000px;}
.x2d{left:181.979700px;}
.x1a{left:183.158010px;}
.x4{left:189.630000px;}
.x2e{left:208.973580px;}
.x26{left:224.819700px;}
.x6{left:229.680150px;}
.x13{left:249.855090px;}
.x18{left:251.730000px;}
.xb{left:268.660350px;}
.x20{left:294.127470px;}
.x19{left:314.731620px;}
.x30{left:316.529700px;}
.x2f{left:317.700600px;}
.x27{left:327.149850px;}
.xe{left:332.015670px;}
.x1f{left:336.869700px;}
.x1d{left:351.545670px;}
.x15{left:379.707930px;}
.xd{left:380.782080px;}
.xc{left:384.024060px;}
.x9{left:389.969250px;}
.x16{left:391.679820px;}
.x1c{left:393.847650px;}
.x28{left:401.580000px;}
.x10{left:417.693780px;}
.x1e{left:422.010000px;}
.x17{left:424.980000px;}
.x8{left:427.860000px;}
.xa{left:432.810000px;}
.x3{left:442.620000px;}
.x22{left:451.800000px;}
.x29{left:529.199700px;}
.x21{left:531.180000px;}
.x14{left:633.601800px;}
.x24{left:664.380000px;}
.x2a{left:699.300150px;}
.x12{left:733.587960px;}
@media print{
.v2{vertical-align:-78.720000pt;}
.v4{vertical-align:-65.280000pt;}
.v7{vertical-align:-61.118933pt;}
.v8{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.v6{vertical-align:61.119467pt;}
.v3{vertical-align:67.168320pt;}
.v5{vertical-align:77.119467pt;}
.ls2{letter-spacing:-0.288000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.131936pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls65{letter-spacing:-0.106880pt;}
.ls7{letter-spacing:-0.096000pt;}
.ls62{letter-spacing:-0.085504pt;}
.ls22{letter-spacing:-0.083200pt;}
.ls5a{letter-spacing:-0.080160pt;}
.ls29{letter-spacing:-0.076800pt;}
.ls57{letter-spacing:-0.074816pt;}
.ls1e{letter-spacing:-0.070400pt;}
.ls66{letter-spacing:-0.069472pt;}
.ls39{letter-spacing:-0.069440pt;}
.ls5c{letter-spacing:-0.064128pt;}
.ls21{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.062496pt;}
.ls5b{letter-spacing:-0.058784pt;}
.ls1b{letter-spacing:-0.057600pt;}
.ls55{letter-spacing:-0.053440pt;}
.ls2a{letter-spacing:-0.051200pt;}
.ls1a{letter-spacing:-0.048608pt;}
.ls59{letter-spacing:-0.048096pt;}
.ls20{letter-spacing:-0.044800pt;}
.ls53{letter-spacing:-0.042752pt;}
.ls42{letter-spacing:-0.041664pt;}
.ls1f{letter-spacing:-0.038400pt;}
.ls5d{letter-spacing:-0.037408pt;}
.ls3a{letter-spacing:-0.034720pt;}
.ls60{letter-spacing:-0.032064pt;}
.ls1c{letter-spacing:-0.032000pt;}
.ls44{letter-spacing:-0.027776pt;}
.ls52{letter-spacing:-0.026720pt;}
.ls19{letter-spacing:-0.025600pt;}
.ls46{letter-spacing:-0.022368pt;}
.ls56{letter-spacing:-0.021376pt;}
.ls40{letter-spacing:-0.020832pt;}
.ls18{letter-spacing:-0.019200pt;}
.ls58{letter-spacing:-0.016032pt;}
.ls3e{letter-spacing:-0.014912pt;}
.ls16{letter-spacing:-0.012800pt;}
.ls5e{letter-spacing:-0.010688pt;}
.ls3f{letter-spacing:-0.007456pt;}
.ls13{letter-spacing:-0.006944pt;}
.ls17{letter-spacing:-0.006400pt;}
.ls51{letter-spacing:-0.005344pt;}
.ls1{letter-spacing:0.000000pt;}
.ls50{letter-spacing:0.005344pt;}
.ls1d{letter-spacing:0.006400pt;}
.lsa{letter-spacing:0.006944pt;}
.ls4d{letter-spacing:0.010688pt;}
.ls34{letter-spacing:0.011712pt;}
.ls10{letter-spacing:0.012800pt;}
.lsb{letter-spacing:0.013888pt;}
.lsc{letter-spacing:0.019200pt;}
.ls4f{letter-spacing:0.021376pt;}
.ls54{letter-spacing:0.026720pt;}
.ls9{letter-spacing:0.027776pt;}
.ls4c{letter-spacing:0.032064pt;}
.ls24{letter-spacing:0.034720pt;}
.ls38{letter-spacing:0.035136pt;}
.ls48{letter-spacing:0.038400pt;}
.ls2f{letter-spacing:0.040992pt;}
.ls23{letter-spacing:0.041664pt;}
.ls4e{letter-spacing:0.042752pt;}
.ls27{letter-spacing:0.044736pt;}
.ls3c{letter-spacing:0.044800pt;}
.ls30{letter-spacing:0.046848pt;}
.ls4b{letter-spacing:0.048096pt;}
.ls43{letter-spacing:0.052192pt;}
.ls31{letter-spacing:0.052704pt;}
.ls64{letter-spacing:0.053440pt;}
.ls25{letter-spacing:0.055552pt;}
.ls37{letter-spacing:0.057600pt;}
.ls2c{letter-spacing:0.058560pt;}
.ls26{letter-spacing:0.059648pt;}
.ls3{letter-spacing:0.064000pt;}
.ls33{letter-spacing:0.064416pt;}
.ls3d{letter-spacing:0.067104pt;}
.ls2e{letter-spacing:0.070272pt;}
.ls2b{letter-spacing:0.076384pt;}
.ls12{letter-spacing:0.076800pt;}
.ls8{letter-spacing:0.080160pt;}
.ls32{letter-spacing:0.087840pt;}
.ls36{letter-spacing:0.093696pt;}
.ls0{letter-spacing:0.096000pt;}
.ls28{letter-spacing:0.104160pt;}
.ls67{letter-spacing:0.106880pt;}
.ls11{letter-spacing:0.121600pt;}
.ls5f{letter-spacing:0.122912pt;}
.lsf{letter-spacing:0.128000pt;}
.ls61{letter-spacing:0.133600pt;}
.lse{letter-spacing:0.134400pt;}
.ls49{letter-spacing:0.140800pt;}
.ls5{letter-spacing:0.192000pt;}
.ls47{letter-spacing:0.460800pt;}
.ls3b{letter-spacing:5.248000pt;}
.ls41{letter-spacing:20.288000pt;}
.ls2d{letter-spacing:115.591584pt;}
.ls45{letter-spacing:165.061536pt;}
.ls63{letter-spacing:425.367680pt;}
.ls4a{letter-spacing:441.000320pt;}
.lsd{letter-spacing:863.488000pt;}
.ls35{letter-spacing:1077.152640pt;}
.ws52{word-spacing:-19.269600pt;}
.wsb3{word-spacing:-17.772800pt;}
.wsb{word-spacing:-17.753600pt;}
.wscc{word-spacing:-17.740800pt;}
.wscb{word-spacing:-17.734400pt;}
.wsc{word-spacing:-17.728000pt;}
.wsd{word-spacing:-17.708800pt;}
.ws4f{word-spacing:-16.349952pt;}
.ws50{word-spacing:-16.332384pt;}
.ws51{word-spacing:-16.320672pt;}
.ws0{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.936480pt;}
.wsf0{word-spacing:-12.237760pt;}
.wsd8{word-spacing:-12.130880pt;}
.wsf1{word-spacing:-12.125536pt;}
.wsef{word-spacing:-12.077440pt;}
.wsa{word-spacing:-1.440000pt;}
.ws33{word-spacing:-0.465248pt;}
.wsf{word-spacing:-0.416640pt;}
.wsdc{word-spacing:-0.395456pt;}
.ws8{word-spacing:-0.384000pt;}
.wsbc{word-spacing:-0.381920pt;}
.wsd9{word-spacing:-0.342016pt;}
.wse4{word-spacing:-0.336672pt;}
.wsd7{word-spacing:-0.333792pt;}
.ws10{word-spacing:-0.312480pt;}
.ws12{word-spacing:-0.236096pt;}
.ws7c{word-spacing:-0.229152pt;}
.ws29{word-spacing:-0.194432pt;}
.ws6{word-spacing:-0.192000pt;}
.wse{word-spacing:-0.180544pt;}
.ws2a{word-spacing:-0.131936pt;}
.ws78{word-spacing:-0.118048pt;}
.ws7{word-spacing:-0.096000pt;}
.ws11{word-spacing:-0.083328pt;}
.ws3{word-spacing:-0.064000pt;}
.wsb4{word-spacing:-0.048608pt;}
.wseb{word-spacing:-0.048096pt;}
.ws60{word-spacing:-0.040992pt;}
.wse3{word-spacing:-0.037408pt;}
.ws7b{word-spacing:-0.027776pt;}
.wsea{word-spacing:-0.026720pt;}
.ws68{word-spacing:-0.020832pt;}
.ws5b{word-spacing:-0.017568pt;}
.wsf2{word-spacing:-0.016032pt;}
.ws5f{word-spacing:-0.011712pt;}
.wsee{word-spacing:-0.010688pt;}
.wsd6{word-spacing:-0.006400pt;}
.ws5c{word-spacing:-0.005856pt;}
.ws2{word-spacing:0.000000pt;}
.wse5{word-spacing:0.005344pt;}
.ws5e{word-spacing:0.005856pt;}
.wse2{word-spacing:0.010688pt;}
.ws76{word-spacing:0.014912pt;}
.wsdb{word-spacing:0.016032pt;}
.wsde{word-spacing:0.021376pt;}
.ws28{word-spacing:0.022368pt;}
.wsda{word-spacing:0.026720pt;}
.wse6{word-spacing:0.032064pt;}
.wse1{word-spacing:0.037408pt;}
.wsca{word-spacing:0.038400pt;}
.ws13{word-spacing:0.041664pt;}
.wsf3{word-spacing:0.042752pt;}
.wsdd{word-spacing:0.048096pt;}
.wse0{word-spacing:0.053440pt;}
.wscd{word-spacing:0.102400pt;}
.ws4{word-spacing:0.128000pt;}
.ws38{word-spacing:0.134400pt;}
.ws3b{word-spacing:0.140800pt;}
.ws26{word-spacing:0.147200pt;}
.ws14{word-spacing:0.153600pt;}
.ws1a{word-spacing:0.160000pt;}
.ws6e{word-spacing:0.166400pt;}
.ws1c{word-spacing:0.172800pt;}
.ws25{word-spacing:0.179200pt;}
.ws89{word-spacing:0.185600pt;}
.ws5{word-spacing:0.192000pt;}
.ws1b{word-spacing:0.198400pt;}
.ws24{word-spacing:0.211200pt;}
.wsd2{word-spacing:0.230400pt;}
.ws77{word-spacing:0.253504pt;}
.ws4a{word-spacing:0.256000pt;}
.ws42{word-spacing:0.313600pt;}
.wsd1{word-spacing:0.345600pt;}
.ws7a{word-spacing:0.390400pt;}
.ws5a{word-spacing:0.492800pt;}
.ws30{word-spacing:0.710400pt;}
.ws8e{word-spacing:0.844800pt;}
.ws8d{word-spacing:0.864000pt;}
.ws2f{word-spacing:0.902400pt;}
.ws32{word-spacing:1.152000pt;}
.ws31{word-spacing:1.209600pt;}
.ws43{word-spacing:1.433600pt;}
.ws46{word-spacing:1.728000pt;}
.ws45{word-spacing:1.740800pt;}
.ws79{word-spacing:1.753600pt;}
.ws54{word-spacing:2.048000pt;}
.wsc8{word-spacing:2.067200pt;}
.wsc9{word-spacing:2.086400pt;}
.ws53{word-spacing:2.099200pt;}
.ws9b{word-spacing:2.630400pt;}
.ws95{word-spacing:2.720000pt;}
.ws9c{word-spacing:2.796800pt;}
.ws96{word-spacing:2.803200pt;}
.ws41{word-spacing:3.360000pt;}
.ws2e{word-spacing:3.392000pt;}
.ws40{word-spacing:3.449600pt;}
.ws2d{word-spacing:3.475200pt;}
.wsae{word-spacing:3.660800pt;}
.wsc6{word-spacing:3.673600pt;}
.wsc7{word-spacing:3.737600pt;}
.wsaf{word-spacing:3.801600pt;}
.wsd5{word-spacing:3.987200pt;}
.wsc5{word-spacing:4.000000pt;}
.ws9d{word-spacing:4.019200pt;}
.ws88{word-spacing:4.313600pt;}
.ws87{word-spacing:4.428800pt;}
.ws90{word-spacing:5.132800pt;}
.ws82{word-spacing:5.273600pt;}
.ws2b{word-spacing:5.286400pt;}
.ws92{word-spacing:5.299200pt;}
.ws35{word-spacing:5.337600pt;}
.ws34{word-spacing:5.369600pt;}
.ws91{word-spacing:5.440000pt;}
.ws2c{word-spacing:5.497600pt;}
.ws18{word-spacing:6.784000pt;}
.ws19{word-spacing:6.828800pt;}
.ws9f{word-spacing:7.814400pt;}
.ws9e{word-spacing:7.904000pt;}
.wsa0{word-spacing:8.006400pt;}
.wsb6{word-spacing:9.049600pt;}
.wsb5{word-spacing:9.171200pt;}
.wsce{word-spacing:9.440000pt;}
.ws27{word-spacing:10.700800pt;}
.ws23{word-spacing:10.732800pt;}
.ws1e{word-spacing:10.739200pt;}
.ws20{word-spacing:10.745600pt;}
.ws1f{word-spacing:10.758400pt;}
.ws21{word-spacing:10.764800pt;}
.ws1d{word-spacing:10.771200pt;}
.ws8f{word-spacing:11.046400pt;}
.ws37{word-spacing:11.366400pt;}
.ws69{word-spacing:11.974400pt;}
.wsa3{word-spacing:12.000000pt;}
.ws6a{word-spacing:12.025600pt;}
.wsa4{word-spacing:12.070400pt;}
.ws39{word-spacing:12.608000pt;}
.ws74{word-spacing:12.633600pt;}
.wsb1{word-spacing:12.742400pt;}
.wsb0{word-spacing:12.761600pt;}
.ws3a{word-spacing:12.787200pt;}
.ws75{word-spacing:12.832000pt;}
.wsa5{word-spacing:12.953600pt;}
.wsa6{word-spacing:12.966400pt;}
.wsa7{word-spacing:13.139200pt;}
.ws63{word-spacing:13.254400pt;}
.ws62{word-spacing:13.497600pt;}
.ws61{word-spacing:13.516800pt;}
.ws64{word-spacing:13.568000pt;}
.ws65{word-spacing:13.580800pt;}
.wsd3{word-spacing:13.593600pt;}
.ws58{word-spacing:13.600000pt;}
.ws57{word-spacing:13.619200pt;}
.ws59{word-spacing:13.625600pt;}
.wsd4{word-spacing:13.689600pt;}
.ws47{word-spacing:14.560000pt;}
.ws48{word-spacing:14.592000pt;}
.ws22{word-spacing:15.744000pt;}
.ws17{word-spacing:17.081600pt;}
.ws15{word-spacing:17.107200pt;}
.ws84{word-spacing:17.132800pt;}
.ws16{word-spacing:17.222400pt;}
.ws83{word-spacing:17.331200pt;}
.ws85{word-spacing:17.452800pt;}
.wsab{word-spacing:17.696000pt;}
.wsac{word-spacing:17.753600pt;}
.wsbb{word-spacing:18.406400pt;}
.wsb9{word-spacing:19.987200pt;}
.wsba{word-spacing:20.032000pt;}
.wsb7{word-spacing:20.300800pt;}
.wsb8{word-spacing:20.313600pt;}
.wsa1{word-spacing:20.633600pt;}
.ws67{word-spacing:20.640000pt;}
.ws66{word-spacing:20.652800pt;}
.wsa2{word-spacing:20.755200pt;}
.ws86{word-spacing:22.547200pt;}
.ws94{word-spacing:26.387200pt;}
.ws93{word-spacing:26.489600pt;}
.ws9a{word-spacing:27.046400pt;}
.ws99{word-spacing:27.059200pt;}
.wsb2{word-spacing:27.340800pt;}
.ws3d{word-spacing:27.680000pt;}
.ws3c{word-spacing:27.692800pt;}
.ws98{word-spacing:28.307200pt;}
.ws97{word-spacing:28.326400pt;}
.wscf{word-spacing:33.107200pt;}
.ws4c{word-spacing:34.790400pt;}
.ws4b{word-spacing:34.816000pt;}
.ws8a{word-spacing:36.320000pt;}
.wsbe{word-spacing:38.598400pt;}
.wsbd{word-spacing:38.675200pt;}
.ws7e{word-spacing:42.092800pt;}
.ws7d{word-spacing:42.131200pt;}
.ws6d{word-spacing:42.323200pt;}
.ws6c{word-spacing:42.374400pt;}
.ws6b{word-spacing:42.387200pt;}
.wsa8{word-spacing:43.667200pt;}
.wsa9{word-spacing:43.673600pt;}
.wsaa{word-spacing:43.737600pt;}
.ws3f{word-spacing:46.841600pt;}
.wsd0{word-spacing:47.590400pt;}
.wsc1{word-spacing:48.147200pt;}
.wsbf{word-spacing:48.153600pt;}
.wsc0{word-spacing:48.179200pt;}
.ws4e{word-spacing:48.774400pt;}
.ws4d{word-spacing:48.787200pt;}
.ws36{word-spacing:48.800000pt;}
.ws44{word-spacing:48.806400pt;}
.ws3e{word-spacing:48.825600pt;}
.wsc4{word-spacing:49.056000pt;}
.wsc3{word-spacing:49.132800pt;}
.wsc2{word-spacing:49.196800pt;}
.ws8b{word-spacing:50.707200pt;}
.ws8c{word-spacing:50.758400pt;}
.ws56{word-spacing:51.360000pt;}
.ws55{word-spacing:51.462400pt;}
.ws72{word-spacing:54.867200pt;}
.ws71{word-spacing:54.873600pt;}
.ws73{word-spacing:55.020800pt;}
.ws6f{word-spacing:56.128000pt;}
.ws70{word-spacing:56.147200pt;}
.ws49{word-spacing:58.086400pt;}
.ws7f{word-spacing:72.480000pt;}
.ws81{word-spacing:72.492800pt;}
.ws80{word-spacing:72.806400pt;}
.wsad{word-spacing:76.627200pt;}
.wsed{word-spacing:126.006176pt;}
.wse9{word-spacing:126.011520pt;}
.wsec{word-spacing:126.048928pt;}
.wse8{word-spacing:126.059616pt;}
.wse7{word-spacing:126.064960pt;}
.wsdf{word-spacing:126.075648pt;}
.ws5d{word-spacing:1348.174176pt;}
._1d{margin-left:-1158.720491pt;}
._18{margin-left:-47.040000pt;}
._12{margin-left:-37.440000pt;}
._22{margin-left:-21.120000pt;}
._2d{margin-left:-12.184320pt;}
._7{margin-left:-10.560000pt;}
._19{margin-left:-9.280000pt;}
._28{margin-left:-4.160000pt;}
._15{margin-left:-2.080000pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.056000pt;}
._a{width:2.803200pt;}
._9{width:4.057600pt;}
._f{width:5.664000pt;}
._6{width:7.590400pt;}
._b{width:9.459200pt;}
._3{width:10.560000pt;}
._21{width:12.480000pt;}
._d{width:13.836800pt;}
._23{width:16.832000pt;}
._26{width:23.891200pt;}
._14{width:27.840000pt;}
._10{width:34.560000pt;}
._13{width:36.160000pt;}
._27{width:38.611200pt;}
._1b{width:41.920000pt;}
._20{width:43.520000pt;}
._8{width:45.440000pt;}
._17{width:47.360000pt;}
._16{width:48.640000pt;}
._11{width:50.176000pt;}
._c{width:52.480000pt;}
._1a{width:53.440000pt;}
._4{width:56.000000pt;}
._24{width:58.368000pt;}
._2f{width:59.874176pt;}
._5{width:63.360000pt;}
._2{width:70.400000pt;}
._e{width:73.920000pt;}
._30{width:101.759968pt;}
._2e{width:126.080672pt;}
._25{width:170.880000pt;}
._1f{width:188.471883pt;}
._31{width:204.504000pt;}
._2a{width:228.194453pt;}
._33{width:237.145013pt;}
._29{width:242.264533pt;}
._1e{width:256.953013pt;}
._32{width:265.954987pt;}
._2c{width:277.011328pt;}
._34{width:279.571328pt;}
._2b{width:290.863125pt;}
._1c{width:295.991349pt;}
.fs8{font-size:5.440000pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.440000pt;}
.fs6{font-size:74.560000pt;}
.fs7{font-size:85.440000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:39.200000pt;}
.y1e{bottom:58.720000pt;}
.y1d{bottom:76.960000pt;}
.y162{bottom:87.868800pt;}
.y1c{bottom:95.040000pt;}
.yb9{bottom:96.587200pt;}
.y123{bottom:102.906933pt;}
.y161{bottom:103.144667pt;}
.y1b{bottom:113.120000pt;}
.yb8{bottom:115.227200pt;}
.y160{bottom:118.508667pt;}
.y97{bottom:119.707067pt;}
.y67{bottom:123.387067pt;}
.y122{bottom:127.707067pt;}
.y1a{bottom:131.200000pt;}
.y15f{bottom:133.788400pt;}
.yb7{bottom:133.867200pt;}
.y96{bottom:138.347067pt;}
.y66{bottom:142.027067pt;}
.y121{bottom:146.667067pt;}
.y15e{bottom:149.068267pt;}
.y19{bottom:149.440000pt;}
.yb6{bottom:152.587200pt;}
.y95{bottom:156.987067pt;}
.y65{bottom:160.667067pt;}
.y120{bottom:162.027067pt;}
.y15d{bottom:164.428267pt;}
.y18{bottom:167.520000pt;}
.yb5{bottom:171.227200pt;}
.y94{bottom:175.707067pt;}
.y11f{bottom:177.943227pt;}
.y15c{bottom:179.708133pt;}
.y17{bottom:185.600000pt;}
.y64{bottom:187.387067pt;}
.y11e{bottom:193.227067pt;}
.y15b{bottom:195.068133pt;}
.yb4{bottom:197.867200pt;}
.y93{bottom:202.515147pt;}
.y16{bottom:203.680000pt;}
.y63{bottom:206.027067pt;}
.y11d{bottom:208.587067pt;}
.y15a{bottom:210.347867pt;}
.yb3{bottom:216.587200pt;}
.y15{bottom:221.920000pt;}
.y92{bottom:222.427067pt;}
.y11c{bottom:224.507200pt;}
.y159{bottom:225.627733pt;}
.y62{bottom:232.667067pt;}
.yb2{bottom:235.227200pt;}
.y11b{bottom:239.787067pt;}
.y14{bottom:240.000000pt;}
.y158{bottom:240.987733pt;}
.y61{bottom:251.387067pt;}
.yb1{bottom:253.867200pt;}
.y11a{bottom:255.787200pt;}
.y157{bottom:256.267600pt;}
.y13{bottom:258.080000pt;}
.y91{bottom:258.187067pt;}
.y60{bottom:270.027067pt;}
.yd0{bottom:270.267067pt;}
.y119{bottom:271.067067pt;}
.y156{bottom:271.543467pt;}
.yb0{bottom:272.587200pt;}
.y12{bottom:276.320000pt;}
.y90{bottom:276.907067pt;}
.y155{bottom:286.907467pt;}
.y118{bottom:287.067200pt;}
.yaf{bottom:291.227200pt;}
.y11{bottom:294.400000pt;}
.y8f{bottom:295.547067pt;}
.y5f{bottom:296.667067pt;}
.ycf{bottom:301.787067pt;}
.y154{bottom:302.187200pt;}
.y117{bottom:302.347067pt;}
.y42{bottom:304.667067pt;}
.yae{bottom:309.867200pt;}
.y10{bottom:312.480000pt;}
.y5e{bottom:315.387067pt;}
.y153{bottom:317.467067pt;}
.y116{bottom:318.347333pt;}
.y8e{bottom:322.355147pt;}
.y41{bottom:323.387067pt;}
.yce{bottom:328.427067pt;}
.yad{bottom:328.587200pt;}
.yf{bottom:330.560000pt;}
.y152{bottom:333.470933pt;}
.y115{bottom:333.627200pt;}
.y5d{bottom:342.027067pt;}
.y8d{bottom:342.267067pt;}
.yac{bottom:347.227200pt;}
.ye{bottom:348.000000pt;}
.y151{bottom:348.746800pt;}
.y114{bottom:349.627333pt;}
.y40{bottom:350.027067pt;}
.ycd{bottom:355.067067pt;}
.y150{bottom:364.110800pt;}
.y113{bottom:364.907200pt;}
.yab{bottom:365.867200pt;}
.yd{bottom:366.720000pt;}
.y3f{bottom:368.587067pt;}
.y5c{bottom:368.667067pt;}
.y8c{bottom:378.027200pt;}
.y14f{bottom:379.386560pt;}
.y112{bottom:380.828267pt;}
.ycc{bottom:381.787067pt;}
.yaa{bottom:384.587200pt;}
.y3e{bottom:387.307067pt;}
.y5b{bottom:387.387067pt;}
.yc{bottom:392.480000pt;}
.y14e{bottom:394.670400pt;}
.y111{bottom:396.184293pt;}
.y8b{bottom:396.747200pt;}
.y3d{bottom:406.027067pt;}
.ycb{bottom:408.427067pt;}
.y14d{bottom:410.030400pt;}
.ya9{bottom:411.395147pt;}
.y110{bottom:411.468133pt;}
.y8a{bottom:415.387200pt;}
.ye6{bottom:419.387200pt;}
.y14c{bottom:425.310267pt;}
.yb{bottom:426.080000pt;}
.y10f{bottom:426.743867pt;}
.ya8{bottom:431.307067pt;}
.y3c{bottom:432.667067pt;}
.y89{bottom:434.027200pt;}
.yca{bottom:435.067067pt;}
.y14b{bottom:440.590133pt;}
.y10e{bottom:442.107867pt;}
.ye5{bottom:446.027600pt;}
.y3b{bottom:451.307067pt;}
.y5a{bottom:451.387067pt;}
.y10d{bottom:457.383760pt;}
.ya{bottom:459.680000pt;}
.yc9{bottom:461.787067pt;}
.y14a{bottom:463.946027pt;}
.ya7{bottom:467.067067pt;}
.y85{bottom:469.060187pt;}
.y3a{bottom:469.947067pt;}
.y10c{bottom:472.667600pt;}
.ye4{bottom:472.747067pt;}
.y59{bottom:478.027067pt;}
.y149{bottom:479.229867pt;}
.ya6{bottom:485.787067pt;}
.y84{bottom:485.940107pt;}
.y10b{bottom:488.027600pt;}
.yc8{bottom:488.427067pt;}
.y39{bottom:488.667067pt;}
.y9{bottom:493.280000pt;}
.y148{bottom:494.509733pt;}
.y58{bottom:496.667067pt;}
.ye3{bottom:498.827067pt;}
.y83{bottom:502.907867pt;}
.y10a{bottom:503.303360pt;}
.ya5{bottom:504.427067pt;}
.y38{bottom:507.387067pt;}
.y147{bottom:509.869733pt;}
.yc7{bottom:515.067067pt;}
.y109{bottom:518.587200pt;}
.y87{bottom:519.707200pt;}
.y82{bottom:519.707227pt;}
.ya4{bottom:523.067067pt;}
.y57{bottom:523.387067pt;}
.ye2{bottom:523.867067pt;}
.y146{bottom:525.145493pt;}
.y37{bottom:526.027067pt;}
.y8{bottom:526.880000pt;}
.y108{bottom:533.947200pt;}
.y81{bottom:536.587147pt;}
.y86{bottom:536.587200pt;}
.y145{bottom:540.429333pt;}
.yc6{bottom:541.787067pt;}
.y56{bottom:542.027067pt;}
.y36{bottom:544.667067pt;}
.y107{bottom:549.227067pt;}
.ya3{bottom:549.787067pt;}
.ye1{bottom:551.547067pt;}
.y80{bottom:553.467067pt;}
.y88{bottom:553.468533pt;}
.y144{bottom:555.789333pt;}
.y7{bottom:556.960000pt;}
.yc5{bottom:560.427067pt;}
.y106{bottom:565.229333pt;}
.ya2{bottom:568.427067pt;}
.y55{bottom:568.667067pt;}
.y143{bottom:571.065200pt;}
.y35{bottom:571.387067pt;}
.y7f{bottom:574.907147pt;}
.yc4{bottom:579.067067pt;}
.y6{bottom:579.360000pt;}
.ye0{bottom:580.107067pt;}
.y105{bottom:580.505067pt;}
.y142{bottom:586.429200pt;}
.ya1{bottom:587.067067pt;}
.y54{bottom:587.387067pt;}
.y34{bottom:590.027067pt;}
.y7e{bottom:591.787067pt;}
.y104{bottom:595.869067pt;}
.yc3{bottom:597.787067pt;}
.y141{bottom:601.704960pt;}
.y5{bottom:601.760000pt;}
.ya0{bottom:605.787067pt;}
.y33{bottom:608.667067pt;}
.y103{bottom:611.148933pt;}
.y7d{bottom:613.307680pt;}
.y53{bottom:614.195147pt;}
.y140{bottom:616.988800pt;}
.ydf{bottom:623.787067pt;}
.y4{bottom:624.160000pt;}
.y9f{bottom:624.427067pt;}
.y102{bottom:626.428800pt;}
.y32{bottom:627.387067pt;}
.y7c{bottom:630.187600pt;}
.y13f{bottom:632.264667pt;}
.y52{bottom:634.107067pt;}
.y101{bottom:641.788800pt;}
.y9e{bottom:643.067067pt;}
.y31{bottom:646.027067pt;}
.y3{bottom:646.560000pt;}
.y13e{bottom:647.628667pt;}
.yde{bottom:651.387067pt;}
.y100{bottom:657.068667pt;}
.y30{bottom:664.667067pt;}
.y9d{bottom:669.787067pt;}
.y51{bottom:669.867067pt;}
.yff{bottom:672.348400pt;}
.y2{bottom:672.480000pt;}
.y7b{bottom:675.147067pt;}
.y13d{bottom:678.188267pt;}
.ydd{bottom:680.027067pt;}
.y2f{bottom:683.387067pt;}
.yfe{bottom:687.708400pt;}
.y9c{bottom:688.427067pt;}
.y50{bottom:688.587067pt;}
.y178{bottom:688.747067pt;}
.y13c{bottom:693.548267pt;}
.y75{bottom:697.940107pt;}
.y79{bottom:698.186000pt;}
.y2e{bottom:702.027067pt;}
.yfd{bottom:702.984293pt;}
.y9b{bottom:707.067067pt;}
.y4f{bottom:707.227067pt;}
.y13b{bottom:708.824160pt;}
.y74{bottom:714.907867pt;}
.y177{bottom:715.707333pt;}
.yfc{bottom:718.268133pt;}
.y78{bottom:720.586667pt;}
.y2d{bottom:720.667067pt;}
.ydc{bottom:723.707067pt;}
.y13a{bottom:724.108000pt;}
.y9a{bottom:725.787067pt;}
.y176{bottom:730.987200pt;}
.y73{bottom:731.707227pt;}
.yfb{bottom:733.624027pt;}
.yc2{bottom:733.868347pt;}
.y4e{bottom:734.035147pt;}
.y2c{bottom:739.387067pt;}
.y139{bottom:739.468000pt;}
.y77{bottom:742.987333pt;}
.y99{bottom:744.427067pt;}
.y175{bottom:746.983360pt;}
.y72{bottom:748.587147pt;}
.yfa{bottom:748.907867pt;}
.ydb{bottom:751.227067pt;}
.yc1{bottom:753.867067pt;}
.y4d{bottom:753.947067pt;}
.y138{bottom:754.747733pt;}
.y174{bottom:762.267200pt;}
.yf9{bottom:764.187733pt;}
.y7a{bottom:765.386533pt;}
.y76{bottom:765.388000pt;}
.y71{bottom:765.467067pt;}
.y2b{bottom:766.027067pt;}
.y137{bottom:770.107733pt;}
.y98{bottom:771.067067pt;}
.y173{bottom:777.547067pt;}
.yf8{bottom:779.547733pt;}
.yda{bottom:779.867067pt;}
.y136{bottom:785.383627pt;}
.y70{bottom:786.994987pt;}
.y4c{bottom:789.787067pt;}
.yc0{bottom:790.107067pt;}
.y172{bottom:793.543360pt;}
.yf7{bottom:794.823627pt;}
.y135{bottom:800.667467pt;}
.y6f{bottom:803.787067pt;}
.y4b{bottom:808.427067pt;}
.y171{bottom:808.827200pt;}
.yf6{bottom:810.107467pt;}
.y134{bottom:816.027467pt;}
.ybf{bottom:819.547067pt;}
.y2a{bottom:820.587067pt;}
.yd9{bottom:823.467067pt;}
.y170{bottom:824.107067pt;}
.y6e{bottom:825.387067pt;}
.yf5{bottom:825.467467pt;}
.y4a{bottom:835.235280pt;}
.y133{bottom:839.307200pt;}
.y16f{bottom:840.107200pt;}
.yf4{bottom:840.747200pt;}
.y29{bottom:847.307067pt;}
.ybe{bottom:848.587067pt;}
.yd8{bottom:851.147067pt;}
.y132{bottom:854.587067pt;}
.y49{bottom:855.147200pt;}
.y16e{bottom:855.387067pt;}
.yf3{bottom:856.027067pt;}
.y6d{bottom:867.227067pt;}
.y130{bottom:870.583760pt;}
.y16d{bottom:871.387200pt;}
.yf1{bottom:872.023627pt;}
.y28{bottom:873.947067pt;}
.ybd{bottom:875.227067pt;}
.yd7{bottom:879.787067pt;}
.y6c{bottom:885.867067pt;}
.y12f{bottom:885.867600pt;}
.y16c{bottom:886.667067pt;}
.yf0{bottom:887.307467pt;}
.y48{bottom:890.987067pt;}
.y27{bottom:892.587067pt;}
.y12e{bottom:901.139360pt;}
.ybc{bottom:901.867067pt;}
.yef{bottom:902.583227pt;}
.yf2{bottom:902.587200pt;}
.y16b{bottom:902.667200pt;}
.yd6{bottom:907.387067pt;}
.y47{bottom:909.627067pt;}
.y26{bottom:911.307067pt;}
.y6b{bottom:912.587067pt;}
.y12d{bottom:916.423200pt;}
.y131{bottom:916.427200pt;}
.yee{bottom:917.867067pt;}
.y16a{bottom:917.947067pt;}
.ybb{bottom:920.587067pt;}
.y25{bottom:929.947067pt;}
.y6a{bottom:931.227067pt;}
.y12c{bottom:931.787200pt;}
.yed{bottom:933.227067pt;}
.y169{bottom:933.867067pt;}
.yd5{bottom:936.027067pt;}
.y46{bottom:936.435147pt;}
.yba{bottom:939.227067pt;}
.y12b{bottom:947.067067pt;}
.ye9{bottom:949.147733pt;}
.y168{bottom:949.227067pt;}
.yeb{bottom:952.828400pt;}
.y45{bottom:956.347067pt;}
.y24{bottom:956.587067pt;}
.yec{bottom:956.828400pt;}
.y69{bottom:957.867067pt;}
.y167{bottom:965.147467pt;}
.yd4{bottom:965.707067pt;}
.y127{bottom:970.746533pt;}
.yea{bottom:972.108267pt;}
.ye8{bottom:972.187067pt;}
.y129{bottom:974.347067pt;}
.y68{bottom:976.587067pt;}
.y12a{bottom:978.347067pt;}
.y166{bottom:980.503360pt;}
.y23{bottom:983.465867pt;}
.y44{bottom:992.667067pt;}
.y128{bottom:993.626933pt;}
.y126{bottom:993.707067pt;}
.yd3{bottom:994.267067pt;}
.y165{bottom:995.787200pt;}
.y22{bottom:1003.395147pt;}
.ye7{bottom:1004.427067pt;}
.y125{bottom:1009.547067pt;}
.y164{bottom:1011.067067pt;}
.y43{bottom:1022.107067pt;}
.yd2{bottom:1022.187067pt;}
.y21{bottom:1023.307067pt;}
.y163{bottom:1026.427067pt;}
.y124{bottom:1038.347067pt;}
.yd1{bottom:1061.067067pt;}
.y20{bottom:1063.067067pt;}
.y1{bottom:1108.800000pt;}
.h15{height:5.673750pt;}
.h5{height:45.248000pt;}
.h7{height:53.123840pt;}
.h10{height:55.736250pt;}
.h11{height:57.020480pt;}
.h14{height:57.928960pt;}
.h8{height:61.076250pt;}
.h3{height:62.781250pt;}
.ha{height:66.750000pt;}
.h4{height:67.872000pt;}
.h9{height:72.423750pt;}
.he{height:77.731430pt;}
.hb{height:77.763750pt;}
.hf{height:89.111250pt;}
.h6{height:103.104000pt;}
.h13{height:118.139947pt;}
.hc{height:128.244570pt;}
.hd{height:128.595930pt;}
.h12{height:134.139947pt;}
.h2{height:1122.548000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.241333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w3{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:37.760000pt;}
.x2{left:71.840000pt;}
.x7{left:94.560000pt;}
.x25{left:97.120000pt;}
.x11{left:99.200000pt;}
.x1b{left:118.560000pt;}
.x5{left:131.913040pt;}
.x2c{left:137.759733pt;}
.x2b{left:142.560000pt;}
.x23{left:151.280000pt;}
.xf{left:156.160000pt;}
.x2d{left:161.759733pt;}
.x1a{left:162.807120pt;}
.x4{left:168.560000pt;}
.x2e{left:185.754293pt;}
.x26{left:199.839733pt;}
.x6{left:204.160133pt;}
.x13{left:222.093413pt;}
.x18{left:223.760000pt;}
.xb{left:238.809200pt;}
.x20{left:261.446640pt;}
.x19{left:279.761440pt;}
.x30{left:281.359733pt;}
.x2f{left:282.400533pt;}
.x27{left:290.799867pt;}
.xe{left:295.125040pt;}
.x1f{left:299.439733pt;}
.x1d{left:312.485040pt;}
.x15{left:337.518160pt;}
.xd{left:338.472960pt;}
.xc{left:341.354720pt;}
.x9{left:346.639333pt;}
.x16{left:348.159840pt;}
.x1c{left:350.086800pt;}
.x28{left:356.960000pt;}
.x10{left:371.283360pt;}
.x1e{left:375.120000pt;}
.x17{left:377.760000pt;}
.x8{left:380.320000pt;}
.xa{left:384.720000pt;}
.x3{left:393.440000pt;}
.x22{left:401.600000pt;}
.x29{left:470.399733pt;}
.x21{left:472.160000pt;}
.x14{left:563.201600pt;}
.x24{left:590.560000pt;}
.x2a{left:621.600133pt;}
.x12{left:652.078187pt;}
}


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