
/* 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_e11bfcaa79f4.woff")format("woff");}.ff1{font-family:ff1;line-height:1.206055;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_6f5a489a7e51.woff")format("woff");}.ff2{font-family:ff2;line-height:0.680176;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_e10af916b36a.woff")format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_1df4c4330f35.woff")format("woff");}.ff4{font-family:ff4;line-height:1.216309;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_49d341348b16.woff")format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_dad7c95f2695.woff")format("woff");}.ff6{font-family:ff6;line-height:1.193848;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_23fd4da1def0.woff")format("woff");}.ff7{font-family:ff7;line-height:1.201660;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_5a79f8fe3f4a.woff")format("woff");}.ff8{font-family:ff8;line-height:0.851562;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_3243fdf442b2.woff")format("woff");}.ff9{font-family:ff9;line-height:0.875488;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_8c70bc5eab80.woff")format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_d17f4bde2c18.woff")format("woff");}.ffb{font-family:ffb;line-height:1.055176;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_4d4f61dd3988.woff")format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_3e13874a5231.woff")format("woff");}.ffd{font-family:ffd;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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.000000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:18.000000px;}
.v6{vertical-align:27.360000px;}
.v5{vertical-align:48.240000px;}
.ls6b{letter-spacing:-0.978000px;}
.ls5{letter-spacing:-0.888000px;}
.ls55{letter-spacing:-0.870000px;}
.ls7{letter-spacing:-0.864000px;}
.ls37{letter-spacing:-0.768000px;}
.ls9{letter-spacing:-0.720000px;}
.ls54{letter-spacing:-0.714000px;}
.ls53{letter-spacing:-0.630000px;}
.ls1c{letter-spacing:-0.555600px;}
.ls30{letter-spacing:-0.540000px;}
.ls41{letter-spacing:-0.414600px;}
.ls15{letter-spacing:-0.413400px;}
.ls31{letter-spacing:-0.391800px;}
.ls69{letter-spacing:-0.360000px;}
.ls50{letter-spacing:-0.342600px;}
.ls1e{letter-spacing:-0.303000px;}
.ls4f{letter-spacing:-0.285000px;}
.ls62{letter-spacing:-0.280200px;}
.ls5b{letter-spacing:-0.259800px;}
.ls40{letter-spacing:-0.256200px;}
.ls48{letter-spacing:-0.244800px;}
.ls57{letter-spacing:-0.240600px;}
.ls45{letter-spacing:-0.237000px;}
.ls28{letter-spacing:-0.216000px;}
.ls5a{letter-spacing:-0.206400px;}
.ls5e{letter-spacing:-0.202800px;}
.ls1d{letter-spacing:-0.175200px;}
.ls6{letter-spacing:-0.171600px;}
.ls47{letter-spacing:-0.169800px;}
.lsa{letter-spacing:-0.166800px;}
.ls2e{letter-spacing:-0.152400px;}
.ls4a{letter-spacing:-0.150000px;}
.ls46{letter-spacing:-0.144000px;}
.ls49{letter-spacing:-0.123600px;}
.ls34{letter-spacing:-0.109200px;}
.ls23{letter-spacing:-0.106800px;}
.ls43{letter-spacing:-0.094800px;}
.ls35{letter-spacing:-0.053280px;}
.ls17{letter-spacing:-0.048960px;}
.ls59{letter-spacing:-0.041760px;}
.ls4d{letter-spacing:-0.005760px;}
.ls38{letter-spacing:-0.002880px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.005760px;}
.ls42{letter-spacing:0.036000px;}
.ls63{letter-spacing:0.048960px;}
.lsc{letter-spacing:0.053280px;}
.ls51{letter-spacing:0.055440px;}
.ls22{letter-spacing:0.058320px;}
.ls5f{letter-spacing:0.067200px;}
.ls1a{letter-spacing:0.069840px;}
.ls5c{letter-spacing:0.089400px;}
.ls3f{letter-spacing:0.106560px;}
.ls2f{letter-spacing:0.106800px;}
.ls32{letter-spacing:0.119520px;}
.ls6c{letter-spacing:0.120000px;}
.ls68{letter-spacing:0.124800px;}
.ls64{letter-spacing:0.131040px;}
.ls4c{letter-spacing:0.141000px;}
.ls66{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.150000px;}
.ls33{letter-spacing:0.152400px;}
.ls61{letter-spacing:0.156000px;}
.ls2b{letter-spacing:0.157800px;}
.ls10{letter-spacing:0.164400px;}
.ls70{letter-spacing:0.174240px;}
.ls4{letter-spacing:0.175200px;}
.ls2{letter-spacing:0.180000px;}
.ls39{letter-spacing:0.195600px;}
.ls2c{letter-spacing:0.206400px;}
.ls27{letter-spacing:0.206640px;}
.ls13{letter-spacing:0.226800px;}
.ls18{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.259920px;}
.ls24{letter-spacing:0.262080px;}
.lsd{letter-spacing:0.262200px;}
.ls4b{letter-spacing:0.298800px;}
.ls44{letter-spacing:0.300000px;}
.ls26{letter-spacing:0.305280px;}
.ls2a{letter-spacing:0.305400px;}
.ls6f{letter-spacing:0.306000px;}
.ls6e{letter-spacing:0.306600px;}
.ls3b{letter-spacing:0.306720px;}
.ls67{letter-spacing:0.316800px;}
.ls11{letter-spacing:0.328200px;}
.ls8{letter-spacing:0.336000px;}
.ls60{letter-spacing:0.343440px;}
.ls6a{letter-spacing:0.346800px;}
.ls4e{letter-spacing:0.349200px;}
.ls3{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.411600px;}
.ls14{letter-spacing:0.439920px;}
.ls5d{letter-spacing:0.442080px;}
.ls58{letter-spacing:0.475200px;}
.ls52{letter-spacing:0.490800px;}
.ls19{letter-spacing:0.496080px;}
.ls56{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.544800px;}
.ls3c{letter-spacing:0.596400px;}
.lsb{letter-spacing:0.612000px;}
.ls21{letter-spacing:0.666000px;}
.ls6d{letter-spacing:0.671040px;}
.ls20{letter-spacing:0.672000px;}
.ls3d{letter-spacing:0.720000px;}
.ls29{letter-spacing:0.780000px;}
.ls12{letter-spacing:0.900000px;}
.ls1f{letter-spacing:0.979920px;}
.ls25{letter-spacing:0.982080px;}
.ls65{letter-spacing:1.020000px;}
.ls3a{letter-spacing:1.099920px;}
.ls36{letter-spacing:1.159920px;}
.ls3e{letter-spacing:1.162080px;}
.lse{letter-spacing:846.156000px;}
.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;}
}
.ws22{word-spacing:-66.240000px;}
.ws11{word-spacing:-48.240000px;}
.ws28{word-spacing:-18.720000px;}
.ws32{word-spacing:-17.232000px;}
.ws35{word-spacing:-16.888200px;}
.ws1a{word-spacing:-16.865400px;}
.wsc{word-spacing:-16.822200px;}
.ws23{word-spacing:-16.755600px;}
.wsd{word-spacing:-16.724400px;}
.ws42{word-spacing:-16.649400px;}
.ws47{word-spacing:-16.608960px;}
.wse{word-spacing:-16.565760px;}
.ws0{word-spacing:-16.560000px;}
.ws27{word-spacing:-16.557120px;}
.ws21{word-spacing:-16.450800px;}
.ws33{word-spacing:-16.410000px;}
.ws9{word-spacing:-16.393200px;}
.ws2f{word-spacing:-16.390200px;}
.ws17{word-spacing:-16.344000px;}
.ws30{word-spacing:-16.315200px;}
.ws29{word-spacing:-16.303800px;}
.ws36{word-spacing:-16.275000px;}
.ws48{word-spacing:-16.217400px;}
.ws1f{word-spacing:-16.168200px;}
.ws12{word-spacing:-16.004400px;}
.ws3a{word-spacing:-15.930000px;}
.ws3b{word-spacing:-15.846000px;}
.ws8{word-spacing:-15.840000px;}
.ws18{word-spacing:-15.720000px;}
.ws3e{word-spacing:-15.690000px;}
.ws2{word-spacing:-15.672000px;}
.ws4c{word-spacing:-15.582000px;}
.wsa{word-spacing:-15.552000px;}
.ws25{word-spacing:-15.536400px;}
.wsf{word-spacing:-15.484800px;}
.ws38{word-spacing:-15.430800px;}
.ws6{word-spacing:-15.300000px;}
.ws34{word-spacing:-15.289200px;}
.ws4b{word-spacing:-15.286800px;}
.ws4d{word-spacing:-15.246000px;}
.ws3d{word-spacing:-15.238800px;}
.ws1d{word-spacing:-15.199800px;}
.ws26{word-spacing:-15.146400px;}
.ws24{word-spacing:-15.120000px;}
.ws3c{word-spacing:-15.115200px;}
.ws19{word-spacing:-15.097800px;}
.ws49{word-spacing:-15.064800px;}
.ws1c{word-spacing:-15.046800px;}
.ws15{word-spacing:-14.998320px;}
.ws39{word-spacing:-14.995440px;}
.wsb{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws3f{word-spacing:-14.898240px;}
.ws10{word-spacing:-14.891040px;}
.ws2c{word-spacing:-14.886720px;}
.ws2a{word-spacing:-14.845200px;}
.ws31{word-spacing:-14.816400px;}
.ws1e{word-spacing:-14.768400px;}
.ws13{word-spacing:-14.764800px;}
.ws44{word-spacing:-14.737200px;}
.ws40{word-spacing:-14.733600px;}
.ws2b{word-spacing:-14.703000px;}
.ws43{word-spacing:-14.699400px;}
.ws41{word-spacing:-14.680200px;}
.ws46{word-spacing:-14.659800px;}
.ws14{word-spacing:-14.637000px;}
.ws37{word-spacing:-14.597400px;}
.ws4a{word-spacing:-14.580000px;}
.ws16{word-spacing:-13.860000px;}
.ws45{word-spacing:-12.127200px;}
.ws2e{word-spacing:-12.060000px;}
.ws1b{word-spacing:-10.131600px;}
.ws3{word-spacing:-9.720000px;}
.ws4{word-spacing:-9.000000px;}
.ws2d{word-spacing:-8.856000px;}
.ws7{word-spacing:-8.136000px;}
.ws20{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-12.543360px;}
._0{margin-left:-1.296000px;}
._1{width:1.026000px;}
._2{width:2.194080px;}
._5{width:3.224400px;}
._9{width:4.429680px;}
._f{width:68.344320px;}
._c{width:69.539280px;}
._10{width:87.840000px;}
._8{width:91.416000px;}
._3{width:153.228000px;}
._d{width:173.952480px;}
._4{width:194.400000px;}
._e{width:195.840000px;}
._7{width:338.400000px;}
._b{width:702.120000px;}
._a{width:1152.300000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(26,23,24);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs9{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs8{font-size:62.991941px;}
.fs1{font-size:66.240000px;}
.fsa{font-size:69.822393px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:56.880000px;}
.y33{bottom:57.600000px;}
.y32{bottom:77.040000px;}
.y2e{bottom:92.880000px;}
.y31{bottom:95.400000px;}
.y53{bottom:114.660000px;}
.y2d{bottom:115.200000px;}
.ya9{bottom:118.440000px;}
.y52{bottom:135.000000px;}
.y2c{bottom:137.340000px;}
.y7c{bottom:138.780000px;}
.y51{bottom:155.160000px;}
.y88{bottom:158.940000px;}
.y2b{bottom:159.660000px;}
.y50{bottom:175.350000px;}
.yd5{bottom:179.130000px;}
.y2a{bottom:182.010000px;}
.y4f{bottom:195.690000px;}
.y99{bottom:199.470000px;}
.y29{bottom:204.150000px;}
.y55{bottom:215.850000px;}
.y15b{bottom:216.210000px;}
.y4e{bottom:219.630000px;}
.y28{bottom:226.470000px;}
.y4d{bottom:236.190000px;}
.y146{bottom:236.370000px;}
.ya3{bottom:239.970000px;}
.y27{bottom:248.790000px;}
.y4c{bottom:256.350000px;}
.y109{bottom:256.710000px;}
.y7b{bottom:260.130000px;}
.y26{bottom:270.930000px;}
.y4b{bottom:276.510000px;}
.y5b{bottom:276.870000px;}
.ya8{bottom:280.290000px;}
.y11c{bottom:289.110000px;}
.y25{bottom:293.250000px;}
.y4a{bottom:296.850000px;}
.y154{bottom:297.030000px;}
.y108{bottom:299.010000px;}
.y58{bottom:300.630000px;}
.y11b{bottom:311.430000px;}
.ybe{bottom:314.670000px;}
.y24{bottom:315.570000px;}
.y49{bottom:317.010000px;}
.y138{bottom:317.370000px;}
.y91{bottom:320.790000px;}
.y107{bottom:321.330000px;}
.y150{bottom:331.950000px;}
.y11a{bottom:333.750000px;}
.y5a{bottom:334.290000px;}
.ybd{bottom:336.810000px;}
.y48{bottom:337.350000px;}
.y147{bottom:337.530000px;}
.y23{bottom:337.710000px;}
.y57{bottom:341.130000px;}
.y106{bottom:343.470000px;}
.y14f{bottom:354.090000px;}
.y119{bottom:355.890000px;}
.y56{bottom:357.510000px;}
.y10a{bottom:357.870000px;}
.y59{bottom:358.590000px;}
.ybc{bottom:359.130000px;}
.y22{bottom:360.030000px;}
.y47{bottom:361.290000px;}
.y105{bottom:365.790000px;}
.y14e{bottom:376.410000px;}
.y46{bottom:377.850000px;}
.yf4{bottom:378.030000px;}
.y118{bottom:378.210000px;}
.y15a{bottom:380.370000px;}
.ybb{bottom:381.450000px;}
.y9b{bottom:381.630000px;}
.y21{bottom:382.350000px;}
.y104{bottom:388.110000px;}
.y137{bottom:388.290000px;}
.y45{bottom:398.010000px;}
.ycf{bottom:398.370000px;}
.y14d{bottom:398.730000px;}
.yf3{bottom:400.530000px;}
.y117{bottom:401.070000px;}
.y54{bottom:401.790000px;}
.y159{bottom:402.510000px;}
.yba{bottom:403.590000px;}
.y20{bottom:404.490000px;}
.y103{bottom:410.250000px;}
.y136{bottom:410.610000px;}
.y44{bottom:418.215000px;}
.y13d{bottom:418.575000px;}
.y16f{bottom:419.835000px;}
.yce{bottom:420.375000px;}
.y14c{bottom:420.915000px;}
.ya7{bottom:421.995000px;}
.yf2{bottom:422.895000px;}
.y116{bottom:424.875000px;}
.yb9{bottom:425.955000px;}
.y1f{bottom:426.855000px;}
.y102{bottom:432.615000px;}
.y135{bottom:432.975000px;}
.y43{bottom:438.555000px;}
.ya2{bottom:438.735000px;}
.y16e{bottom:442.155000px;}
.ya6{bottom:442.335000px;}
.ycd{bottom:442.695000px;}
.y14b{bottom:443.235000px;}
.y176{bottom:444.135000px;}
.yf1{bottom:445.035000px;}
.y115{bottom:447.015000px;}
.y158{bottom:447.195000px;}
.yb8{bottom:448.275000px;}
.y1e{bottom:449.175000px;}
.y134{bottom:455.115000px;}
.y42{bottom:458.715000px;}
.y90{bottom:459.075000px;}
.y7a{bottom:462.495000px;}
.y16d{bottom:464.475000px;}
.ycc{bottom:464.835000px;}
.y14a{bottom:465.555000px;}
.y101{bottom:466.995000px;}
.yf0{bottom:467.355000px;}
.y114{bottom:469.335000px;}
.yb7{bottom:470.415000px;}
.y1d{bottom:471.315000px;}
.y133{bottom:477.435000px;}
.y175{bottom:478.515000px;}
.y41{bottom:479.055000px;}
.y87{bottom:479.235000px;}
.yea{bottom:482.835000px;}
.y100{bottom:484.275000px;}
.y149{bottom:486.615000px;}
.ycb{bottom:487.155000px;}
.yef{bottom:489.675000px;}
.ya1{bottom:491.295000px;}
.y8f{bottom:491.655000px;}
.yb6{bottom:492.735000px;}
.y1c{bottom:493.635000px;}
.y174{bottom:495.795000px;}
.y79{bottom:499.215000px;}
.y11d{bottom:499.575000px;}
.y132{bottom:499.755000px;}
.yff{bottom:501.735000px;}
.y40{bottom:502.995000px;}
.y148{bottom:503.895000px;}
.ya0{bottom:508.575000px;}
.y16c{bottom:508.935000px;}
.yca{bottom:509.475000px;}
.y13c{bottom:511.815000px;}
.y173{bottom:512.175000px;}
.yee{bottom:512.535000px;}
.y113{bottom:513.795000px;}
.y8e{bottom:513.975000px;}
.yb5{bottom:515.055000px;}
.y1b{bottom:515.955000px;}
.y86{bottom:516.495000px;}
.yfe{bottom:519.195000px;}
.y78{bottom:519.555000px;}
.y3f{bottom:519.735000px;}
.y131{bottom:521.895000px;}
.yab{bottom:523.335000px;}
.y9f{bottom:526.035000px;}
.y172{bottom:528.015000px;}
.y16b{bottom:531.255000px;}
.yc9{bottom:531.615000px;}
.y13b{bottom:534.135000px;}
.y8d{bottom:536.115000px;}
.yfd{bottom:536.655000px;}
.yed{bottom:536.835000px;}
.yb4{bottom:537.195000px;}
.y1a{bottom:538.275000px;}
.y85{bottom:538.635000px;}
.y77{bottom:539.715000px;}
.yaa{bottom:540.075000px;}
.y9e{bottom:543.315000px;}
.yec{bottom:543.495000px;}
.y130{bottom:544.215000px;}
.yfc{bottom:552.855000px;}
.y16a{bottom:553.395000px;}
.yc8{bottom:553.935000px;}
.y13a{bottom:556.455000px;}
.y8c{bottom:558.435000px;}
.y9d{bottom:558.795000px;}
.y76{bottom:559.875000px;}
.yb3{bottom:560.055000px;}
.y19{bottom:560.415000px;}
.y84{bottom:560.955000px;}
.yd3{bottom:563.655000px;}
.y12f{bottom:566.535000px;}
.yfb{bottom:568.875000px;}
.y169{bottom:575.715000px;}
.yc7{bottom:576.255000px;}
.yfa{bottom:578.595000px;}
.y98{bottom:580.215000px;}
.yeb{bottom:580.395000px;}
.y112{bottom:580.575000px;}
.y8b{bottom:580.755000px;}
.y18{bottom:582.735000px;}
.y83{bottom:583.275000px;}
.y75{bottom:583.995000px;}
.yb2{bottom:584.355000px;}
.y12e{bottom:588.675000px;}
.y168{bottom:598.035000px;}
.yc6{bottom:598.395000px;}
.y97{bottom:600.375000px;}
.y74{bottom:600.735000px;}
.yf9{bottom:600.915000px;}
.y156{bottom:601.455000px;}
.y8a{bottom:602.895000px;}
.y171{bottom:604.155000px;}
.y17{bottom:605.055000px;}
.yb1{bottom:609.375000px;}
.y12d{bottom:610.995000px;}
.y82{bottom:619.455000px;}
.y167{bottom:620.175000px;}
.y96{bottom:620.715000px;}
.y170{bottom:620.895000px;}
.yf8{bottom:623.235000px;}
.yd2{bottom:624.495000px;}
.y73{bottom:625.215000px;}
.y155{bottom:625.755000px;}
.y16{bottom:627.195000px;}
.y12c{bottom:633.315000px;}
.y81{bottom:637.455000px;}
.y95{bottom:640.875000px;}
.yd4{bottom:641.235000px;}
.y166{bottom:642.495000px;}
.yc5{bottom:643.035000px;}
.yf7{bottom:645.375000px;}
.y111{bottom:647.355000px;}
.y72{bottom:647.535000px;}
.y15{bottom:649.515000px;}
.yb0{bottom:650.415000px;}
.y80{bottom:653.655000px;}
.y12b{bottom:655.455000px;}
.y94{bottom:661.245000px;}
.y9a{bottom:661.425000px;}
.y165{bottom:664.845000px;}
.ya5{bottom:665.025000px;}
.yc4{bottom:665.205000px;}
.ye9{bottom:667.725000px;}
.yaf{bottom:668.445000px;}
.y71{bottom:669.705000px;}
.y7f{bottom:669.885000px;}
.y14{bottom:671.865000px;}
.y12a{bottom:677.805000px;}
.y93{bottom:681.405000px;}
.ya4{bottom:681.765000px;}
.y177{bottom:685.185000px;}
.yae{bottom:685.725000px;}
.y164{bottom:686.985000px;}
.y7e{bottom:687.165000px;}
.yc3{bottom:687.525000px;}
.ye8{bottom:690.045000px;}
.y139{bottom:690.585000px;}
.y70{bottom:692.025000px;}
.y13{bottom:694.005000px;}
.y7d{bottom:699.945000px;}
.y129{bottom:700.125000px;}
.yd1{bottom:701.565000px;}
.y92{bottom:701.925000px;}
.yad{bottom:703.365000px;}
.y163{bottom:709.305000px;}
.yc2{bottom:709.845000px;}
.ye7{bottom:712.185000px;}
.y110{bottom:714.165000px;}
.y6f{bottom:714.345000px;}
.y89{bottom:714.885000px;}
.y12{bottom:716.325000px;}
.yac{bottom:717.045000px;}
.y145{bottom:721.905000px;}
.yd0{bottom:722.085000px;}
.y128{bottom:722.265000px;}
.y162{bottom:731.625000px;}
.ye6{bottom:734.505000px;}
.y6e{bottom:736.485000px;}
.y11{bottom:738.645000px;}
.y144{bottom:742.065000px;}
.yc1{bottom:744.225000px;}
.y127{bottom:744.585000px;}
.y161{bottom:753.765000px;}
.ye5{bottom:756.825000px;}
.y6d{bottom:758.805000px;}
.y10{bottom:760.785000px;}
.yc0{bottom:761.505000px;}
.y143{bottom:762.405000px;}
.y126{bottom:766.905000px;}
.y179{bottom:767.445000px;}
.ybf{bottom:774.105000px;}
.ye4{bottom:778.965000px;}
.y10f{bottom:779.865000px;}
.y6c{bottom:781.125000px;}
.y142{bottom:782.565000px;}
.yf{bottom:783.105000px;}
.y178{bottom:787.785000px;}
.y160{bottom:788.145000px;}
.y125{bottom:789.045000px;}
.y10e{bottom:798.225000px;}
.ye3{bottom:801.285000px;}
.y141{bottom:802.905000px;}
.y6b{bottom:803.265000px;}
.ye{bottom:805.425000px;}
.y124{bottom:809.925000px;}
.y10d{bottom:814.425000px;}
.y15f{bottom:822.885000px;}
.y140{bottom:823.065000px;}
.ye2{bottom:823.605000px;}
.y6a{bottom:825.585000px;}
.yd{bottom:827.565000px;}
.y123{bottom:827.925000px;}
.y10c{bottom:830.445000px;}
.y15e{bottom:835.665000px;}
.ye1{bottom:845.745000px;}
.y122{bottom:845.925000px;}
.y13f{bottom:847.005000px;}
.y69{bottom:847.905000px;}
.y157{bottom:848.445000px;}
.yc{bottom:849.885000px;}
.y13e{bottom:863.745000px;}
.y121{bottom:863.925000px;}
.ye0{bottom:868.065000px;}
.y68{bottom:870.045000px;}
.yb{bottom:872.205000px;}
.y120{bottom:881.925000px;}
.ydf{bottom:890.385000px;}
.y67{bottom:892.365000px;}
.ya{bottom:894.345000px;}
.y11f{bottom:899.925000px;}
.yde{bottom:912.570000px;}
.yf6{bottom:913.290000px;}
.y11e{bottom:914.550000px;}
.y66{bottom:914.730000px;}
.y3e{bottom:916.710000px;}
.y9{bottom:917.250000px;}
.ydd{bottom:934.890000px;}
.y15d{bottom:935.430000px;}
.y65{bottom:936.870000px;}
.yf5{bottom:937.590000px;}
.y3d{bottom:939.030000px;}
.y8{bottom:941.550000px;}
.ydc{bottom:957.210000px;}
.y64{bottom:959.190000px;}
.y15c{bottom:959.730000px;}
.y3c{bottom:961.170000px;}
.y7{bottom:965.310000px;}
.ydb{bottom:979.350000px;}
.y63{bottom:981.510000px;}
.y3b{bottom:983.490000px;}
.y6{bottom:988.710000px;}
.yda{bottom:1001.670000px;}
.y62{bottom:1003.650000px;}
.y3a{bottom:1005.810000px;}
.y5{bottom:1018.770000px;}
.yd9{bottom:1023.990000px;}
.y61{bottom:1025.970000px;}
.y39{bottom:1027.950000px;}
.yd8{bottom:1046.130000px;}
.y60{bottom:1048.290000px;}
.y38{bottom:1050.270000px;}
.y9c{bottom:1052.070000px;}
.y4{bottom:1055.310000px;}
.y153{bottom:1068.450000px;}
.yd7{bottom:1068.990000px;}
.y5f{bottom:1070.430000px;}
.y37{bottom:1072.590000px;}
.y152{bottom:1090.770000px;}
.y3{bottom:1091.670000px;}
.y5e{bottom:1092.750000px;}
.yd6{bottom:1093.290000px;}
.y36{bottom:1094.730000px;}
.y151{bottom:1113.630000px;}
.y5d{bottom:1115.070000px;}
.y35{bottom:1117.050000px;}
.y2{bottom:1128.210000px;}
.y5c{bottom:1137.930000px;}
.y34{bottom:1139.370000px;}
.y10b{bottom:1140.810000px;}
.y30{bottom:1170.000000px;}
.y2f{bottom:1190.880000px;}
.h11{height:39.418945px;}
.ha{height:40.146328px;}
.h18{height:40.472227px;}
.he{height:42.661046px;}
.h10{height:44.023711px;}
.h8{height:44.440312px;}
.hf{height:44.612578px;}
.h1a{height:47.286943px;}
.h12{height:48.353906px;}
.h2{height:49.939453px;}
.h6{height:52.558594px;}
.hc{height:54.536836px;}
.hb{height:55.266328px;}
.h16{height:55.863281px;}
.h14{height:58.651172px;}
.h17{height:60.450469px;}
.h5{height:61.259062px;}
.h15{height:61.493555px;}
.h9{height:65.010937px;}
.h19{height:65.518594px;}
.h7{height:66.585938px;}
.h13{height:68.956875px;}
.h4{height:77.905547px;}
.h3{height:99.878906px;}
.hd{height:109.499062px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.656000px;}
.x33{left:131.616000px;}
.x35{left:133.776000px;}
.x47{left:138.636000px;}
.x3{left:180.750000px;}
.x23{left:182.190000px;}
.x4b{left:183.810000px;}
.x17{left:184.890000px;}
.x4c{left:189.030000px;}
.x2e{left:194.250000px;}
.x2b{left:197.130000px;}
.x27{left:198.750000px;}
.x28{left:203.970000px;}
.x2d{left:205.950000px;}
.x16{left:207.030000px;}
.x25{left:219.090000px;}
.x26{left:224.310000px;}
.x31{left:225.390000px;}
.x8{left:227.190000px;}
.x51{left:228.810000px;}
.x4e{left:230.070000px;}
.x9{left:232.410000px;}
.x37{left:234.750000px;}
.x29{left:238.890000px;}
.x48{left:276.150000px;}
.x18{left:292.215000px;}
.x2f{left:306.075000px;}
.x15{left:307.335000px;}
.xc{left:317.775000px;}
.xd{left:322.995000px;}
.x34{left:328.035000px;}
.x12{left:336.135000px;}
.x1e{left:338.295000px;}
.x13{left:341.355000px;}
.x1f{left:343.515000px;}
.x32{left:345.315000px;}
.x42{left:349.995000px;}
.x3f{left:361.335000px;}
.x40{left:366.555000px;}
.x20{left:385.995000px;}
.x21{left:391.215000px;}
.x1{left:394.095000px;}
.x36{left:397.695000px;}
.x43{left:400.035000px;}
.x2c{left:411.735000px;}
.x6{left:432.795000px;}
.x49{left:434.775000px;}
.x19{left:436.035000px;}
.x4a{left:439.995000px;}
.x4f{left:444.675000px;}
.x24{left:445.755000px;}
.x10{left:459.255000px;}
.x7{left:462.495000px;}
.x11{left:464.475000px;}
.x39{left:484.635000px;}
.x3a{left:489.705000px;}
.xa{left:504.105000px;}
.xb{left:509.325000px;}
.x1a{left:514.005000px;}
.x1b{left:519.225000px;}
.x41{left:544.065000px;}
.x3d{left:545.145000px;}
.x3e{left:550.365000px;}
.x2a{left:553.245000px;}
.x38{left:567.645000px;}
.x50{left:569.085000px;}
.x46{left:593.565000px;}
.x1c{left:601.125000px;}
.x14{left:605.805000px;}
.x22{left:631.725000px;}
.x44{left:643.965000px;}
.x3b{left:646.125000px;}
.x45{left:649.545000px;}
.x3c{left:651.345000px;}
.x30{left:661.065000px;}
.xe{left:682.890000px;}
.xf{left:688.110000px;}
.x4d{left:726.270000px;}
.x1d{left:730.950000px;}
.x5{left:737.610000px;}
.x4{left:744.450000px;}
@media print{
.v4{vertical-align:-16.000000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:16.000000pt;}
.v6{vertical-align:24.320000pt;}
.v5{vertical-align:42.880000pt;}
.ls6b{letter-spacing:-0.869333pt;}
.ls5{letter-spacing:-0.789333pt;}
.ls55{letter-spacing:-0.773333pt;}
.ls7{letter-spacing:-0.768000pt;}
.ls37{letter-spacing:-0.682667pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls54{letter-spacing:-0.634667pt;}
.ls53{letter-spacing:-0.560000pt;}
.ls1c{letter-spacing:-0.493867pt;}
.ls30{letter-spacing:-0.480000pt;}
.ls41{letter-spacing:-0.368533pt;}
.ls15{letter-spacing:-0.367467pt;}
.ls31{letter-spacing:-0.348267pt;}
.ls69{letter-spacing:-0.320000pt;}
.ls50{letter-spacing:-0.304533pt;}
.ls1e{letter-spacing:-0.269333pt;}
.ls4f{letter-spacing:-0.253333pt;}
.ls62{letter-spacing:-0.249067pt;}
.ls5b{letter-spacing:-0.230933pt;}
.ls40{letter-spacing:-0.227733pt;}
.ls48{letter-spacing:-0.217600pt;}
.ls57{letter-spacing:-0.213867pt;}
.ls45{letter-spacing:-0.210667pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls5a{letter-spacing:-0.183467pt;}
.ls5e{letter-spacing:-0.180267pt;}
.ls1d{letter-spacing:-0.155733pt;}
.ls6{letter-spacing:-0.152533pt;}
.ls47{letter-spacing:-0.150933pt;}
.lsa{letter-spacing:-0.148267pt;}
.ls2e{letter-spacing:-0.135467pt;}
.ls4a{letter-spacing:-0.133333pt;}
.ls46{letter-spacing:-0.128000pt;}
.ls49{letter-spacing:-0.109867pt;}
.ls34{letter-spacing:-0.097067pt;}
.ls23{letter-spacing:-0.094933pt;}
.ls43{letter-spacing:-0.084267pt;}
.ls35{letter-spacing:-0.047360pt;}
.ls17{letter-spacing:-0.043520pt;}
.ls59{letter-spacing:-0.037120pt;}
.ls4d{letter-spacing:-0.005120pt;}
.ls38{letter-spacing:-0.002560pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.005120pt;}
.ls42{letter-spacing:0.032000pt;}
.ls63{letter-spacing:0.043520pt;}
.lsc{letter-spacing:0.047360pt;}
.ls51{letter-spacing:0.049280pt;}
.ls22{letter-spacing:0.051840pt;}
.ls5f{letter-spacing:0.059733pt;}
.ls1a{letter-spacing:0.062080pt;}
.ls5c{letter-spacing:0.079467pt;}
.ls3f{letter-spacing:0.094720pt;}
.ls2f{letter-spacing:0.094933pt;}
.ls32{letter-spacing:0.106240pt;}
.ls6c{letter-spacing:0.106667pt;}
.ls68{letter-spacing:0.110933pt;}
.ls64{letter-spacing:0.116480pt;}
.ls4c{letter-spacing:0.125333pt;}
.ls66{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.133333pt;}
.ls33{letter-spacing:0.135467pt;}
.ls61{letter-spacing:0.138667pt;}
.ls2b{letter-spacing:0.140267pt;}
.ls10{letter-spacing:0.146133pt;}
.ls70{letter-spacing:0.154880pt;}
.ls4{letter-spacing:0.155733pt;}
.ls2{letter-spacing:0.160000pt;}
.ls39{letter-spacing:0.173867pt;}
.ls2c{letter-spacing:0.183467pt;}
.ls27{letter-spacing:0.183680pt;}
.ls13{letter-spacing:0.201600pt;}
.ls18{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.231040pt;}
.ls24{letter-spacing:0.232960pt;}
.lsd{letter-spacing:0.233067pt;}
.ls4b{letter-spacing:0.265600pt;}
.ls44{letter-spacing:0.266667pt;}
.ls26{letter-spacing:0.271360pt;}
.ls2a{letter-spacing:0.271467pt;}
.ls6f{letter-spacing:0.272000pt;}
.ls6e{letter-spacing:0.272533pt;}
.ls3b{letter-spacing:0.272640pt;}
.ls67{letter-spacing:0.281600pt;}
.ls11{letter-spacing:0.291733pt;}
.ls8{letter-spacing:0.298667pt;}
.ls60{letter-spacing:0.305280pt;}
.ls6a{letter-spacing:0.308267pt;}
.ls4e{letter-spacing:0.310400pt;}
.ls3{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.365867pt;}
.ls14{letter-spacing:0.391040pt;}
.ls5d{letter-spacing:0.392960pt;}
.ls58{letter-spacing:0.422400pt;}
.ls52{letter-spacing:0.436267pt;}
.ls19{letter-spacing:0.440960pt;}
.ls56{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.484267pt;}
.ls3c{letter-spacing:0.530133pt;}
.lsb{letter-spacing:0.544000pt;}
.ls21{letter-spacing:0.592000pt;}
.ls6d{letter-spacing:0.596480pt;}
.ls20{letter-spacing:0.597333pt;}
.ls3d{letter-spacing:0.640000pt;}
.ls29{letter-spacing:0.693333pt;}
.ls12{letter-spacing:0.800000pt;}
.ls1f{letter-spacing:0.871040pt;}
.ls25{letter-spacing:0.872960pt;}
.ls65{letter-spacing:0.906667pt;}
.ls3a{letter-spacing:0.977707pt;}
.ls36{letter-spacing:1.031040pt;}
.ls3e{letter-spacing:1.032960pt;}
.lse{letter-spacing:752.138667pt;}
.ws22{word-spacing:-58.880000pt;}
.ws11{word-spacing:-42.880000pt;}
.ws28{word-spacing:-16.640000pt;}
.ws32{word-spacing:-15.317333pt;}
.ws35{word-spacing:-15.011733pt;}
.ws1a{word-spacing:-14.991467pt;}
.wsc{word-spacing:-14.953067pt;}
.ws23{word-spacing:-14.893867pt;}
.wsd{word-spacing:-14.866133pt;}
.ws42{word-spacing:-14.799467pt;}
.ws47{word-spacing:-14.763520pt;}
.wse{word-spacing:-14.725120pt;}
.ws0{word-spacing:-14.720000pt;}
.ws27{word-spacing:-14.717440pt;}
.ws21{word-spacing:-14.622933pt;}
.ws33{word-spacing:-14.586667pt;}
.ws9{word-spacing:-14.571733pt;}
.ws2f{word-spacing:-14.569067pt;}
.ws17{word-spacing:-14.528000pt;}
.ws30{word-spacing:-14.502400pt;}
.ws29{word-spacing:-14.492267pt;}
.ws36{word-spacing:-14.466667pt;}
.ws48{word-spacing:-14.415467pt;}
.ws1f{word-spacing:-14.371733pt;}
.ws12{word-spacing:-14.226133pt;}
.ws3a{word-spacing:-14.160000pt;}
.ws3b{word-spacing:-14.085333pt;}
.ws8{word-spacing:-14.080000pt;}
.ws18{word-spacing:-13.973333pt;}
.ws3e{word-spacing:-13.946667pt;}
.ws2{word-spacing:-13.930667pt;}
.ws4c{word-spacing:-13.850667pt;}
.wsa{word-spacing:-13.824000pt;}
.ws25{word-spacing:-13.810133pt;}
.wsf{word-spacing:-13.764267pt;}
.ws38{word-spacing:-13.716267pt;}
.ws6{word-spacing:-13.600000pt;}
.ws34{word-spacing:-13.590400pt;}
.ws4b{word-spacing:-13.588267pt;}
.ws4d{word-spacing:-13.552000pt;}
.ws3d{word-spacing:-13.545600pt;}
.ws1d{word-spacing:-13.510933pt;}
.ws26{word-spacing:-13.463467pt;}
.ws24{word-spacing:-13.440000pt;}
.ws3c{word-spacing:-13.435733pt;}
.ws19{word-spacing:-13.420267pt;}
.ws49{word-spacing:-13.390933pt;}
.ws1c{word-spacing:-13.374933pt;}
.ws15{word-spacing:-13.331840pt;}
.ws39{word-spacing:-13.329280pt;}
.wsb{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws3f{word-spacing:-13.242880pt;}
.ws10{word-spacing:-13.236480pt;}
.ws2c{word-spacing:-13.232640pt;}
.ws2a{word-spacing:-13.195733pt;}
.ws31{word-spacing:-13.170133pt;}
.ws1e{word-spacing:-13.127467pt;}
.ws13{word-spacing:-13.124267pt;}
.ws44{word-spacing:-13.099733pt;}
.ws40{word-spacing:-13.096533pt;}
.ws2b{word-spacing:-13.069333pt;}
.ws43{word-spacing:-13.066133pt;}
.ws41{word-spacing:-13.049067pt;}
.ws46{word-spacing:-13.030933pt;}
.ws14{word-spacing:-13.010667pt;}
.ws37{word-spacing:-12.975467pt;}
.ws4a{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.320000pt;}
.ws45{word-spacing:-10.779733pt;}
.ws2e{word-spacing:-10.720000pt;}
.ws1b{word-spacing:-9.005867pt;}
.ws3{word-spacing:-8.640000pt;}
.ws4{word-spacing:-8.000000pt;}
.ws2d{word-spacing:-7.872000pt;}
.ws7{word-spacing:-7.232000pt;}
.ws20{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-11.149653pt;}
._0{margin-left:-1.152000pt;}
._1{width:0.912000pt;}
._2{width:1.950293pt;}
._5{width:2.866133pt;}
._9{width:3.937493pt;}
._f{width:60.750507pt;}
._c{width:61.812693pt;}
._10{width:78.080000pt;}
._8{width:81.258667pt;}
._3{width:136.202667pt;}
._d{width:154.624427pt;}
._4{width:172.800000pt;}
._e{width:174.080000pt;}
._7{width:300.800000pt;}
._b{width:624.106667pt;}
._a{width:1024.266667pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs9{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs8{font-size:55.992837pt;}
.fs1{font-size:58.880000pt;}
.fsa{font-size:62.064349pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:50.560000pt;}
.y33{bottom:51.200000pt;}
.y32{bottom:68.480000pt;}
.y2e{bottom:82.560000pt;}
.y31{bottom:84.800000pt;}
.y53{bottom:101.920000pt;}
.y2d{bottom:102.400000pt;}
.ya9{bottom:105.280000pt;}
.y52{bottom:120.000000pt;}
.y2c{bottom:122.080000pt;}
.y7c{bottom:123.360000pt;}
.y51{bottom:137.920000pt;}
.y88{bottom:141.280000pt;}
.y2b{bottom:141.920000pt;}
.y50{bottom:155.866667pt;}
.yd5{bottom:159.226667pt;}
.y2a{bottom:161.786667pt;}
.y4f{bottom:173.946667pt;}
.y99{bottom:177.306667pt;}
.y29{bottom:181.466667pt;}
.y55{bottom:191.866667pt;}
.y15b{bottom:192.186667pt;}
.y4e{bottom:195.226667pt;}
.y28{bottom:201.306667pt;}
.y4d{bottom:209.946667pt;}
.y146{bottom:210.106667pt;}
.ya3{bottom:213.306667pt;}
.y27{bottom:221.146667pt;}
.y4c{bottom:227.866667pt;}
.y109{bottom:228.186667pt;}
.y7b{bottom:231.226667pt;}
.y26{bottom:240.826667pt;}
.y4b{bottom:245.786667pt;}
.y5b{bottom:246.106667pt;}
.ya8{bottom:249.146667pt;}
.y11c{bottom:256.986667pt;}
.y25{bottom:260.666667pt;}
.y4a{bottom:263.866667pt;}
.y154{bottom:264.026667pt;}
.y108{bottom:265.786667pt;}
.y58{bottom:267.226667pt;}
.y11b{bottom:276.826667pt;}
.ybe{bottom:279.706667pt;}
.y24{bottom:280.506667pt;}
.y49{bottom:281.786667pt;}
.y138{bottom:282.106667pt;}
.y91{bottom:285.146667pt;}
.y107{bottom:285.626667pt;}
.y150{bottom:295.066667pt;}
.y11a{bottom:296.666667pt;}
.y5a{bottom:297.146667pt;}
.ybd{bottom:299.386667pt;}
.y48{bottom:299.866667pt;}
.y147{bottom:300.026667pt;}
.y23{bottom:300.186667pt;}
.y57{bottom:303.226667pt;}
.y106{bottom:305.306667pt;}
.y14f{bottom:314.746667pt;}
.y119{bottom:316.346667pt;}
.y56{bottom:317.786667pt;}
.y10a{bottom:318.106667pt;}
.y59{bottom:318.746667pt;}
.ybc{bottom:319.226667pt;}
.y22{bottom:320.026667pt;}
.y47{bottom:321.146667pt;}
.y105{bottom:325.146667pt;}
.y14e{bottom:334.586667pt;}
.y46{bottom:335.866667pt;}
.yf4{bottom:336.026667pt;}
.y118{bottom:336.186667pt;}
.y15a{bottom:338.106667pt;}
.ybb{bottom:339.066667pt;}
.y9b{bottom:339.226667pt;}
.y21{bottom:339.866667pt;}
.y104{bottom:344.986667pt;}
.y137{bottom:345.146667pt;}
.y45{bottom:353.786667pt;}
.ycf{bottom:354.106667pt;}
.y14d{bottom:354.426667pt;}
.yf3{bottom:356.026667pt;}
.y117{bottom:356.506667pt;}
.y54{bottom:357.146667pt;}
.y159{bottom:357.786667pt;}
.yba{bottom:358.746667pt;}
.y20{bottom:359.546667pt;}
.y103{bottom:364.666667pt;}
.y136{bottom:364.986667pt;}
.y44{bottom:371.746667pt;}
.y13d{bottom:372.066667pt;}
.y16f{bottom:373.186667pt;}
.yce{bottom:373.666667pt;}
.y14c{bottom:374.146667pt;}
.ya7{bottom:375.106667pt;}
.yf2{bottom:375.906667pt;}
.y116{bottom:377.666667pt;}
.yb9{bottom:378.626667pt;}
.y1f{bottom:379.426667pt;}
.y102{bottom:384.546667pt;}
.y135{bottom:384.866667pt;}
.y43{bottom:389.826667pt;}
.ya2{bottom:389.986667pt;}
.y16e{bottom:393.026667pt;}
.ya6{bottom:393.186667pt;}
.ycd{bottom:393.506667pt;}
.y14b{bottom:393.986667pt;}
.y176{bottom:394.786667pt;}
.yf1{bottom:395.586667pt;}
.y115{bottom:397.346667pt;}
.y158{bottom:397.506667pt;}
.yb8{bottom:398.466667pt;}
.y1e{bottom:399.266667pt;}
.y134{bottom:404.546667pt;}
.y42{bottom:407.746667pt;}
.y90{bottom:408.066667pt;}
.y7a{bottom:411.106667pt;}
.y16d{bottom:412.866667pt;}
.ycc{bottom:413.186667pt;}
.y14a{bottom:413.826667pt;}
.y101{bottom:415.106667pt;}
.yf0{bottom:415.426667pt;}
.y114{bottom:417.186667pt;}
.yb7{bottom:418.146667pt;}
.y1d{bottom:418.946667pt;}
.y133{bottom:424.386667pt;}
.y175{bottom:425.346667pt;}
.y41{bottom:425.826667pt;}
.y87{bottom:425.986667pt;}
.yea{bottom:429.186667pt;}
.y100{bottom:430.466667pt;}
.y149{bottom:432.546667pt;}
.ycb{bottom:433.026667pt;}
.yef{bottom:435.266667pt;}
.ya1{bottom:436.706667pt;}
.y8f{bottom:437.026667pt;}
.yb6{bottom:437.986667pt;}
.y1c{bottom:438.786667pt;}
.y174{bottom:440.706667pt;}
.y79{bottom:443.746667pt;}
.y11d{bottom:444.066667pt;}
.y132{bottom:444.226667pt;}
.yff{bottom:445.986667pt;}
.y40{bottom:447.106667pt;}
.y148{bottom:447.906667pt;}
.ya0{bottom:452.066667pt;}
.y16c{bottom:452.386667pt;}
.yca{bottom:452.866667pt;}
.y13c{bottom:454.946667pt;}
.y173{bottom:455.266667pt;}
.yee{bottom:455.586667pt;}
.y113{bottom:456.706667pt;}
.y8e{bottom:456.866667pt;}
.yb5{bottom:457.826667pt;}
.y1b{bottom:458.626667pt;}
.y86{bottom:459.106667pt;}
.yfe{bottom:461.506667pt;}
.y78{bottom:461.826667pt;}
.y3f{bottom:461.986667pt;}
.y131{bottom:463.906667pt;}
.yab{bottom:465.186667pt;}
.y9f{bottom:467.586667pt;}
.y172{bottom:469.346667pt;}
.y16b{bottom:472.226667pt;}
.yc9{bottom:472.546667pt;}
.y13b{bottom:474.786667pt;}
.y8d{bottom:476.546667pt;}
.yfd{bottom:477.026667pt;}
.yed{bottom:477.186667pt;}
.yb4{bottom:477.506667pt;}
.y1a{bottom:478.466667pt;}
.y85{bottom:478.786667pt;}
.y77{bottom:479.746667pt;}
.yaa{bottom:480.066667pt;}
.y9e{bottom:482.946667pt;}
.yec{bottom:483.106667pt;}
.y130{bottom:483.746667pt;}
.yfc{bottom:491.426667pt;}
.y16a{bottom:491.906667pt;}
.yc8{bottom:492.386667pt;}
.y13a{bottom:494.626667pt;}
.y8c{bottom:496.386667pt;}
.y9d{bottom:496.706667pt;}
.y76{bottom:497.666667pt;}
.yb3{bottom:497.826667pt;}
.y19{bottom:498.146667pt;}
.y84{bottom:498.626667pt;}
.yd3{bottom:501.026667pt;}
.y12f{bottom:503.586667pt;}
.yfb{bottom:505.666667pt;}
.y169{bottom:511.746667pt;}
.yc7{bottom:512.226667pt;}
.yfa{bottom:514.306667pt;}
.y98{bottom:515.746667pt;}
.yeb{bottom:515.906667pt;}
.y112{bottom:516.066667pt;}
.y8b{bottom:516.226667pt;}
.y18{bottom:517.986667pt;}
.y83{bottom:518.466667pt;}
.y75{bottom:519.106667pt;}
.yb2{bottom:519.426667pt;}
.y12e{bottom:523.266667pt;}
.y168{bottom:531.586667pt;}
.yc6{bottom:531.906667pt;}
.y97{bottom:533.666667pt;}
.y74{bottom:533.986667pt;}
.yf9{bottom:534.146667pt;}
.y156{bottom:534.626667pt;}
.y8a{bottom:535.906667pt;}
.y171{bottom:537.026667pt;}
.y17{bottom:537.826667pt;}
.yb1{bottom:541.666667pt;}
.y12d{bottom:543.106667pt;}
.y82{bottom:550.626667pt;}
.y167{bottom:551.266667pt;}
.y96{bottom:551.746667pt;}
.y170{bottom:551.906667pt;}
.yf8{bottom:553.986667pt;}
.yd2{bottom:555.106667pt;}
.y73{bottom:555.746667pt;}
.y155{bottom:556.226667pt;}
.y16{bottom:557.506667pt;}
.y12c{bottom:562.946667pt;}
.y81{bottom:566.626667pt;}
.y95{bottom:569.666667pt;}
.yd4{bottom:569.986667pt;}
.y166{bottom:571.106667pt;}
.yc5{bottom:571.586667pt;}
.yf7{bottom:573.666667pt;}
.y111{bottom:575.426667pt;}
.y72{bottom:575.586667pt;}
.y15{bottom:577.346667pt;}
.yb0{bottom:578.146667pt;}
.y80{bottom:581.026667pt;}
.y12b{bottom:582.626667pt;}
.y94{bottom:587.773333pt;}
.y9a{bottom:587.933333pt;}
.y165{bottom:590.973333pt;}
.ya5{bottom:591.133333pt;}
.yc4{bottom:591.293333pt;}
.ye9{bottom:593.533333pt;}
.yaf{bottom:594.173333pt;}
.y71{bottom:595.293333pt;}
.y7f{bottom:595.453333pt;}
.y14{bottom:597.213333pt;}
.y12a{bottom:602.493333pt;}
.y93{bottom:605.693333pt;}
.ya4{bottom:606.013333pt;}
.y177{bottom:609.053333pt;}
.yae{bottom:609.533333pt;}
.y164{bottom:610.653333pt;}
.y7e{bottom:610.813333pt;}
.yc3{bottom:611.133333pt;}
.ye8{bottom:613.373333pt;}
.y139{bottom:613.853333pt;}
.y70{bottom:615.133333pt;}
.y13{bottom:616.893333pt;}
.y7d{bottom:622.173333pt;}
.y129{bottom:622.333333pt;}
.yd1{bottom:623.613333pt;}
.y92{bottom:623.933333pt;}
.yad{bottom:625.213333pt;}
.y163{bottom:630.493333pt;}
.yc2{bottom:630.973333pt;}
.ye7{bottom:633.053333pt;}
.y110{bottom:634.813333pt;}
.y6f{bottom:634.973333pt;}
.y89{bottom:635.453333pt;}
.y12{bottom:636.733333pt;}
.yac{bottom:637.373333pt;}
.y145{bottom:641.693333pt;}
.yd0{bottom:641.853333pt;}
.y128{bottom:642.013333pt;}
.y162{bottom:650.333333pt;}
.ye6{bottom:652.893333pt;}
.y6e{bottom:654.653333pt;}
.y11{bottom:656.573333pt;}
.y144{bottom:659.613333pt;}
.yc1{bottom:661.533333pt;}
.y127{bottom:661.853333pt;}
.y161{bottom:670.013333pt;}
.ye5{bottom:672.733333pt;}
.y6d{bottom:674.493333pt;}
.y10{bottom:676.253333pt;}
.yc0{bottom:676.893333pt;}
.y143{bottom:677.693333pt;}
.y126{bottom:681.693333pt;}
.y179{bottom:682.173333pt;}
.ybf{bottom:688.093333pt;}
.ye4{bottom:692.413333pt;}
.y10f{bottom:693.213333pt;}
.y6c{bottom:694.333333pt;}
.y142{bottom:695.613333pt;}
.yf{bottom:696.093333pt;}
.y178{bottom:700.253333pt;}
.y160{bottom:700.573333pt;}
.y125{bottom:701.373333pt;}
.y10e{bottom:709.533333pt;}
.ye3{bottom:712.253333pt;}
.y141{bottom:713.693333pt;}
.y6b{bottom:714.013333pt;}
.ye{bottom:715.933333pt;}
.y124{bottom:719.933333pt;}
.y10d{bottom:723.933333pt;}
.y15f{bottom:731.453333pt;}
.y140{bottom:731.613333pt;}
.ye2{bottom:732.093333pt;}
.y6a{bottom:733.853333pt;}
.yd{bottom:735.613333pt;}
.y123{bottom:735.933333pt;}
.y10c{bottom:738.173333pt;}
.y15e{bottom:742.813333pt;}
.ye1{bottom:751.773333pt;}
.y122{bottom:751.933333pt;}
.y13f{bottom:752.893333pt;}
.y69{bottom:753.693333pt;}
.y157{bottom:754.173333pt;}
.yc{bottom:755.453333pt;}
.y13e{bottom:767.773333pt;}
.y121{bottom:767.933333pt;}
.ye0{bottom:771.613333pt;}
.y68{bottom:773.373333pt;}
.yb{bottom:775.293333pt;}
.y120{bottom:783.933333pt;}
.ydf{bottom:791.453333pt;}
.y67{bottom:793.213333pt;}
.ya{bottom:794.973333pt;}
.y11f{bottom:799.933333pt;}
.yde{bottom:811.173333pt;}
.yf6{bottom:811.813333pt;}
.y11e{bottom:812.933333pt;}
.y66{bottom:813.093333pt;}
.y3e{bottom:814.853333pt;}
.y9{bottom:815.333333pt;}
.ydd{bottom:831.013333pt;}
.y15d{bottom:831.493333pt;}
.y65{bottom:832.773333pt;}
.yf5{bottom:833.413333pt;}
.y3d{bottom:834.693333pt;}
.y8{bottom:836.933333pt;}
.ydc{bottom:850.853333pt;}
.y64{bottom:852.613333pt;}
.y15c{bottom:853.093333pt;}
.y3c{bottom:854.373333pt;}
.y7{bottom:858.053333pt;}
.ydb{bottom:870.533333pt;}
.y63{bottom:872.453333pt;}
.y3b{bottom:874.213333pt;}
.y6{bottom:878.853333pt;}
.yda{bottom:890.373333pt;}
.y62{bottom:892.133333pt;}
.y3a{bottom:894.053333pt;}
.y5{bottom:905.573333pt;}
.yd9{bottom:910.213333pt;}
.y61{bottom:911.973333pt;}
.y39{bottom:913.733333pt;}
.yd8{bottom:929.893333pt;}
.y60{bottom:931.813333pt;}
.y38{bottom:933.573333pt;}
.y9c{bottom:935.173333pt;}
.y4{bottom:938.053333pt;}
.y153{bottom:949.733333pt;}
.yd7{bottom:950.213333pt;}
.y5f{bottom:951.493333pt;}
.y37{bottom:953.413333pt;}
.y152{bottom:969.573333pt;}
.y3{bottom:970.373333pt;}
.y5e{bottom:971.333333pt;}
.yd6{bottom:971.813333pt;}
.y36{bottom:973.093333pt;}
.y151{bottom:989.893333pt;}
.y5d{bottom:991.173333pt;}
.y35{bottom:992.933333pt;}
.y2{bottom:1002.853333pt;}
.y5c{bottom:1011.493333pt;}
.y34{bottom:1012.773333pt;}
.y10b{bottom:1014.053333pt;}
.y30{bottom:1040.000000pt;}
.y2f{bottom:1058.560000pt;}
.h11{height:35.039062pt;}
.ha{height:35.685625pt;}
.h18{height:35.975313pt;}
.he{height:37.920930pt;}
.h10{height:39.132187pt;}
.h8{height:39.502500pt;}
.hf{height:39.655625pt;}
.h1a{height:42.032838pt;}
.h12{height:42.981250pt;}
.h2{height:44.390625pt;}
.h6{height:46.718750pt;}
.hc{height:48.477187pt;}
.hb{height:49.125625pt;}
.h16{height:49.656250pt;}
.h14{height:52.134375pt;}
.h17{height:53.733750pt;}
.h5{height:54.452500pt;}
.h15{height:54.660937pt;}
.h9{height:57.787500pt;}
.h19{height:58.238750pt;}
.h7{height:59.187500pt;}
.h13{height:61.295000pt;}
.h4{height:69.249375pt;}
.h3{height:88.781250pt;}
.hd{height:97.332500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.472000pt;}
.x33{left:116.992000pt;}
.x35{left:118.912000pt;}
.x47{left:123.232000pt;}
.x3{left:160.666667pt;}
.x23{left:161.946667pt;}
.x4b{left:163.386667pt;}
.x17{left:164.346667pt;}
.x4c{left:168.026667pt;}
.x2e{left:172.666667pt;}
.x2b{left:175.226667pt;}
.x27{left:176.666667pt;}
.x28{left:181.306667pt;}
.x2d{left:183.066667pt;}
.x16{left:184.026667pt;}
.x25{left:194.746667pt;}
.x26{left:199.386667pt;}
.x31{left:200.346667pt;}
.x8{left:201.946667pt;}
.x51{left:203.386667pt;}
.x4e{left:204.506667pt;}
.x9{left:206.586667pt;}
.x37{left:208.666667pt;}
.x29{left:212.346667pt;}
.x48{left:245.466667pt;}
.x18{left:259.746667pt;}
.x2f{left:272.066667pt;}
.x15{left:273.186667pt;}
.xc{left:282.466667pt;}
.xd{left:287.106667pt;}
.x34{left:291.586667pt;}
.x12{left:298.786667pt;}
.x1e{left:300.706667pt;}
.x13{left:303.426667pt;}
.x1f{left:305.346667pt;}
.x32{left:306.946667pt;}
.x42{left:311.106667pt;}
.x3f{left:321.186667pt;}
.x40{left:325.826667pt;}
.x20{left:343.106667pt;}
.x21{left:347.746667pt;}
.x1{left:350.306667pt;}
.x36{left:353.506667pt;}
.x43{left:355.586667pt;}
.x2c{left:365.986667pt;}
.x6{left:384.706667pt;}
.x49{left:386.466667pt;}
.x19{left:387.586667pt;}
.x4a{left:391.106667pt;}
.x4f{left:395.266667pt;}
.x24{left:396.226667pt;}
.x10{left:408.226667pt;}
.x7{left:411.106667pt;}
.x11{left:412.866667pt;}
.x39{left:430.786667pt;}
.x3a{left:435.293333pt;}
.xa{left:448.093333pt;}
.xb{left:452.733333pt;}
.x1a{left:456.893333pt;}
.x1b{left:461.533333pt;}
.x41{left:483.613333pt;}
.x3d{left:484.573333pt;}
.x3e{left:489.213333pt;}
.x2a{left:491.773333pt;}
.x38{left:504.573333pt;}
.x50{left:505.853333pt;}
.x46{left:527.613333pt;}
.x1c{left:534.333333pt;}
.x14{left:538.493333pt;}
.x22{left:561.533333pt;}
.x44{left:572.413333pt;}
.x3b{left:574.333333pt;}
.x45{left:577.373333pt;}
.x3c{left:578.973333pt;}
.x30{left:587.613333pt;}
.xe{left:607.013333pt;}
.xf{left:611.653333pt;}
.x4d{left:645.573333pt;}
.x1d{left:649.733333pt;}
.x5{left:655.653333pt;}
.x4{left:661.733333pt;}
}


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