
/* 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_8c18e3dff63b.woff")format("woff");}.ff1{font-family:ff1;line-height:1.035645;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_58070af711e5.woff")format("woff");}.ff2{font-family:ff2;line-height:1.049805;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:20.457424px;}
.ls11{letter-spacing:22.693872px;}
.ls9{letter-spacing:23.558340px;}
.ls7{letter-spacing:23.558700px;}
.ls2{letter-spacing:23.589000px;}
.ls6{letter-spacing:24.521400px;}
.ls8{letter-spacing:24.522000px;}
.ls1{letter-spacing:24.554400px;}
.ls5{letter-spacing:25.572000px;}
.lse{letter-spacing:28.504800px;}
.ls10{letter-spacing:28.505400px;}
.lsd{letter-spacing:30.024983px;}
.lsb{letter-spacing:31.050701px;}
.lsf{letter-spacing:32.450890px;}
.lsc{letter-spacing:44.458549px;}
.lsa{letter-spacing:50.071512px;}
.ls3{letter-spacing:79.148185px;}
.ls4{letter-spacing:85.096825px;}
.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;}
}
.ws27{word-spacing:-16.500000px;}
.wse1{word-spacing:-12.000000px;}
.ws101{word-spacing:-5.554178px;}
.ws71{word-spacing:-5.185169px;}
.ws46{word-spacing:-4.700122px;}
.ws50{word-spacing:-4.685766px;}
.ws8a{word-spacing:-4.606505px;}
.wsb2{word-spacing:-4.606205px;}
.ws103{word-spacing:-4.490206px;}
.ws7c{word-spacing:-4.345290px;}
.ws59{word-spacing:-4.138979px;}
.ws9{word-spacing:-3.855443px;}
.ws24{word-spacing:-3.260978px;}
.wsf3{word-spacing:-3.127238px;}
.ws1c{word-spacing:-2.966618px;}
.ws29{word-spacing:-2.787047px;}
.ws32{word-spacing:-2.721311px;}
.wsbc{word-spacing:-2.660899px;}
.ws8c{word-spacing:-2.628071px;}
.ws82{word-spacing:-2.624705px;}
.ws97{word-spacing:-2.624105px;}
.ws35{word-spacing:-2.415920px;}
.ws88{word-spacing:-2.399456px;}
.ws4b{word-spacing:-2.216378px;}
.ws6f{word-spacing:-2.165918px;}
.wsfa{word-spacing:-1.995603px;}
.ws66{word-spacing:-1.517417px;}
.wsae{word-spacing:-1.238120px;}
.ws8e{word-spacing:-1.060979px;}
.wsc1{word-spacing:-0.961008px;}
.ws9f{word-spacing:-0.646871px;}
.wsd8{word-spacing:-0.590774px;}
.wsca{word-spacing:-0.478920px;}
.ws9b{word-spacing:-0.417656px;}
.wsbe{word-spacing:-0.385950px;}
.ws80{word-spacing:-0.373979px;}
.ws57{word-spacing:-0.173339px;}
.ws2c{word-spacing:-0.150810px;}
.ws63{word-spacing:-0.109256px;}
.ws3d{word-spacing:-0.085802px;}
.ws0{word-spacing:0.000000px;}
.wsb4{word-spacing:0.514425px;}
.ws55{word-spacing:0.572018px;}
.ws5e{word-spacing:0.664652px;}
.wsb0{word-spacing:0.973299px;}
.wsfc{word-spacing:0.997510px;}
.ws4c{word-spacing:1.114264px;}
.ws3a{word-spacing:1.174916px;}
.wsc0{word-spacing:1.447010px;}
.wse0{word-spacing:1.504800px;}
.wsef{word-spacing:1.505400px;}
.ws2b{word-spacing:1.549480px;}
.ws86{word-spacing:1.607776px;}
.ws77{word-spacing:2.379592px;}
.wsa2{word-spacing:2.532420px;}
.ws111{word-spacing:2.568636px;}
.wsdf{word-spacing:2.745336px;}
.ws75{word-spacing:2.745755px;}
.ws70{word-spacing:2.825568px;}
.ws95{word-spacing:2.873212px;}
.ws7b{word-spacing:2.873812px;}
.ws38{word-spacing:2.981088px;}
.ws87{word-spacing:3.118338px;}
.wsd9{word-spacing:3.409579px;}
.ws14{word-spacing:3.593852px;}
.ws4a{word-spacing:3.932436px;}
.wsa5{word-spacing:3.946619px;}
.ws72{word-spacing:3.946926px;}
.ws92{word-spacing:3.988200px;}
.wsb6{word-spacing:4.007356px;}
.ws58{word-spacing:4.058400px;}
.ws99{word-spacing:4.106328px;}
.ws1f{word-spacing:4.172358px;}
.ws7e{word-spacing:4.180277px;}
.ws3b{word-spacing:4.283720px;}
.ws6a{word-spacing:4.400100px;}
.ws61{word-spacing:4.434588px;}
.wsd4{word-spacing:4.479715px;}
.ws48{word-spacing:4.493178px;}
.ws100{word-spacing:4.541856px;}
.ws105{word-spacing:4.627980px;}
.wsa8{word-spacing:4.751004px;}
.ws62{word-spacing:4.872414px;}
.ws23{word-spacing:4.878636px;}
.wsfb{word-spacing:4.903452px;}
.ws4{word-spacing:5.035800px;}
.ws76{word-spacing:5.099538px;}
.ws7f{word-spacing:5.100138px;}
.ws9d{word-spacing:5.120852px;}
.ws114{word-spacing:5.158206px;}
.ws16{word-spacing:5.208378px;}
.wsb1{word-spacing:5.313880px;}
.ws6d{word-spacing:5.455800px;}
.ws10e{word-spacing:5.463270px;}
.ws30{word-spacing:5.715022px;}
.wsf6{word-spacing:5.721902px;}
.ws1d{word-spacing:5.737886px;}
.ws18{word-spacing:5.957538px;}
.wsa3{word-spacing:5.970000px;}
.wsb7{word-spacing:5.999298px;}
.wsb5{word-spacing:6.028590px;}
.ws10a{word-spacing:6.031879px;}
.ws2a{word-spacing:6.040800px;}
.ws84{word-spacing:6.087948px;}
.wsa6{word-spacing:6.192984px;}
.ws31{word-spacing:6.251064px;}
.ws109{word-spacing:6.261270px;}
.ws21{word-spacing:6.322932px;}
.ws25{word-spacing:6.443652px;}
.wsa9{word-spacing:6.491479px;}
.ws8f{word-spacing:6.495420px;}
.ws34{word-spacing:6.567735px;}
.ws10d{word-spacing:6.696600px;}
.ws113{word-spacing:6.796907px;}
.wsa1{word-spacing:6.887778px;}
.ws3{word-spacing:6.913008px;}
.ws28{word-spacing:7.047768px;}
.ws96{word-spacing:7.081338px;}
.ws13{word-spacing:7.091758px;}
.ws9e{word-spacing:7.254144px;}
.wsfd{word-spacing:7.399080px;}
.ws6{word-spacing:7.416600px;}
.ws107{word-spacing:7.436610px;}
.ws1a{word-spacing:7.482600px;}
.wsba{word-spacing:7.521606px;}
.ws51{word-spacing:7.532670px;}
.ws7d{word-spacing:7.626816px;}
.ws12{word-spacing:7.793070px;}
.ws6e{word-spacing:7.918848px;}
.ws11{word-spacing:7.937224px;}
.ws5d{word-spacing:8.023800px;}
.ws3f{word-spacing:8.023920px;}
.ws5a{word-spacing:8.026038px;}
.ws10b{word-spacing:8.069760px;}
.wse5{word-spacing:8.136317px;}
.ws8{word-spacing:8.144335px;}
.ws4d{word-spacing:8.155908px;}
.ws73{word-spacing:8.199676px;}
.wsb9{word-spacing:8.210538px;}
.ws6b{word-spacing:8.285337px;}
.ws68{word-spacing:8.285757px;}
.wse6{word-spacing:8.370342px;}
.ws8d{word-spacing:8.503200px;}
.ws37{word-spacing:8.696830px;}
.ws15{word-spacing:8.714598px;}
.wsb8{word-spacing:8.744158px;}
.wsbb{word-spacing:8.797938px;}
.ws49{word-spacing:8.798758px;}
.ws60{word-spacing:8.838354px;}
.ws40{word-spacing:8.845693px;}
.wsbf{word-spacing:8.951477px;}
.ws26{word-spacing:9.001644px;}
.ws81{word-spacing:9.080400px;}
.ws17{word-spacing:9.081358px;}
.ws91{word-spacing:9.084452px;}
.ws7{word-spacing:9.193502px;}
.ws8b{word-spacing:9.235944px;}
.ws5c{word-spacing:9.515070px;}
.ws42{word-spacing:9.515670px;}
.ws79{word-spacing:9.586490px;}
.ws83{word-spacing:9.698992px;}
.ws3e{word-spacing:9.713280px;}
.ws104{word-spacing:9.762264px;}
.wsaf{word-spacing:9.768732px;}
.ws5f{word-spacing:9.832200px;}
.wsb3{word-spacing:9.933600px;}
.wsc2{word-spacing:10.049246px;}
.ws41{word-spacing:10.150464px;}
.ws2d{word-spacing:10.217064px;}
.wsd{word-spacing:10.226400px;}
.ws45{word-spacing:10.368852px;}
.ws2e{word-spacing:10.435652px;}
.wsff{word-spacing:10.517664px;}
.wsfe{word-spacing:10.556852px;}
.wsad{word-spacing:10.586052px;}
.ws20{word-spacing:10.608776px;}
.wsc{word-spacing:10.640621px;}
.ws65{word-spacing:10.813740px;}
.ws56{word-spacing:11.121537px;}
.ws54{word-spacing:11.241270px;}
.wsa{word-spacing:11.280005px;}
.ws3c{word-spacing:11.392938px;}
.ws67{word-spacing:11.409510px;}
.ws85{word-spacing:11.432070px;}
.ws9a{word-spacing:11.432670px;}
.ws5{word-spacing:11.449307px;}
.ws4e{word-spacing:11.498070px;}
.wsa4{word-spacing:11.558400px;}
.ws93{word-spacing:11.568110px;}
.ws43{word-spacing:11.589000px;}
.ws64{word-spacing:11.635430px;}
.ws98{word-spacing:11.680792px;}
.ws36{word-spacing:11.712174px;}
.ws106{word-spacing:11.749980px;}
.wsa0{word-spacing:11.764200px;}
.ws19{word-spacing:11.793000px;}
.ws102{word-spacing:11.840064px;}
.ws4f{word-spacing:11.972556px;}
.ws22{word-spacing:12.043696px;}
.ws89{word-spacing:12.093864px;}
.ws110{word-spacing:12.116931px;}
.ws7a{word-spacing:12.320670px;}
.ws94{word-spacing:12.321090px;}
.ws116{word-spacing:12.432779px;}
.ws10c{word-spacing:12.848472px;}
.wsac{word-spacing:13.267756px;}
.wsf9{word-spacing:13.335000px;}
.wsc7{word-spacing:13.409400px;}
.ws52{word-spacing:13.447480px;}
.wsde{word-spacing:13.488826px;}
.wsa7{word-spacing:13.557364px;}
.ws44{word-spacing:13.618310px;}
.wsb{word-spacing:13.713396px;}
.wsc4{word-spacing:13.737523px;}
.ws108{word-spacing:14.037600px;}
.ws90{word-spacing:14.075064px;}
.ws9c{word-spacing:14.075664px;}
.wsf2{word-spacing:14.120510px;}
.wsdc{word-spacing:14.200536px;}
.wsab{word-spacing:14.367152px;}
.wsda{word-spacing:14.497921px;}
.ws69{word-spacing:14.660328px;}
.wsd5{word-spacing:14.976983px;}
.ws74{word-spacing:14.990676px;}
.wsf{word-spacing:15.303672px;}
.wse3{word-spacing:15.393600px;}
.wsf4{word-spacing:15.505574px;}
.ws2f{word-spacing:15.829836px;}
.wsc6{word-spacing:16.104655px;}
.wse2{word-spacing:16.104710px;}
.ws6c{word-spacing:16.124994px;}
.wsaa{word-spacing:16.142277px;}
.ws1b{word-spacing:16.305144px;}
.ws112{word-spacing:16.875372px;}
.wsc5{word-spacing:17.105221px;}
.wse{word-spacing:17.142600px;}
.ws33{word-spacing:17.538798px;}
.wsed{word-spacing:17.814000px;}
.ws39{word-spacing:17.833974px;}
.wsd3{word-spacing:18.088310px;}
.wsec{word-spacing:19.056187px;}
.wsc8{word-spacing:19.993090px;}
.wsc3{word-spacing:20.056536px;}
.wsea{word-spacing:20.185090px;}
.wsee{word-spacing:20.333904px;}
.ws1e{word-spacing:22.261285px;}
.ws78{word-spacing:22.910442px;}
.wsce{word-spacing:23.155188px;}
.wseb{word-spacing:23.329200px;}
.wse9{word-spacing:23.769490px;}
.wscb{word-spacing:25.504800px;}
.ws2{word-spacing:26.036271px;}
.ws10{word-spacing:26.124474px;}
.wsd6{word-spacing:26.555712px;}
.wse7{word-spacing:26.745336px;}
.ws47{word-spacing:26.841631px;}
.ws5b{word-spacing:26.947207px;}
.wsdd{word-spacing:27.489600px;}
.wsbd{word-spacing:27.709940px;}
.wsd2{word-spacing:28.729536px;}
.wsd0{word-spacing:28.797600px;}
.wse8{word-spacing:30.184310px;}
.wse4{word-spacing:30.713136px;}
.wsf5{word-spacing:32.842698px;}
.ws115{word-spacing:32.954871px;}
.wsf8{word-spacing:36.323290px;}
.wsf7{word-spacing:38.649336px;}
.wscf{word-spacing:39.393000px;}
.wsd1{word-spacing:39.393600px;}
.wsf0{word-spacing:40.633536px;}
.wsd7{word-spacing:42.406218px;}
.wsf1{word-spacing:49.313400px;}
.wsdb{word-spacing:56.179007px;}
.wscc{word-spacing:59.533782px;}
.wscd{word-spacing:69.553320px;}
.wsc9{word-spacing:83.748490px;}
.ws53{word-spacing:94.985396px;}
.ws1{word-spacing:112.414198px;}
.ws10f{word-spacing:769.132800px;}
._3a{margin-left:-17.270290px;}
._27{margin-left:-13.722656px;}
._19{margin-left:-6.260575px;}
._39{margin-left:-5.174290px;}
._1d{margin-left:-2.556138px;}
._3e{margin-left:-1.206490px;}
._1c{width:1.202295px;}
._18{width:3.684211px;}
._1a{width:5.851178px;}
._17{width:7.207661px;}
._10{width:8.238463px;}
._31{width:9.422731px;}
._15{width:10.665800px;}
._1e{width:17.503890px;}
._1b{width:19.425721px;}
._b{width:20.690326px;}
._d{width:22.356000px;}
._f{width:23.701999px;}
._a{width:24.778338px;}
._4{width:26.532480px;}
._6{width:27.896941px;}
._16{width:28.997593px;}
._c{width:30.662400px;}
._9{width:31.814436px;}
._7{width:33.644335px;}
._e{width:35.367079px;}
._34{width:36.681710px;}
._5{width:37.984470px;}
._29{width:39.230246px;}
._12{width:41.029920px;}
._8{width:43.101700px;}
._28{width:45.782575px;}
._32{width:47.780507px;}
._13{width:49.284966px;}
._22{width:50.841622px;}
._35{width:51.849983px;}
._1f{width:52.993061px;}
._3{width:54.187680px;}
._14{width:55.261279px;}
._11{width:57.599485px;}
._23{width:58.754359px;}
._21{width:60.195600px;}
._20{width:63.769240px;}
._3d{width:64.828251px;}
._37{width:66.074092px;}
._3b{width:71.819994px;}
._2b{width:74.300087px;}
._3c{width:77.737178px;}
._1{width:78.870767px;}
._2a{width:81.131065px;}
._2c{width:83.425200px;}
._2{width:85.002463px;}
._2d{width:88.814507px;}
._3f{width:91.690030px;}
._40{width:99.693767px;}
._41{width:114.415413px;}
._33{width:115.762782px;}
._38{width:119.065297px;}
._0{width:123.006563px;}
._25{width:125.430005px;}
._36{width:128.674800px;}
._24{width:130.587537px;}
._26{width:136.713212px;}
._2f{width:154.605180px;}
._30{width:156.329852px;}
._2e{width:158.311232px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fs9{font-size:90.000000px;}
.fs1{font-size:96.000000px;}
.fs8{font-size:102.000000px;}
.fs0{font-size:108.000000px;}
.fsd{font-size:120.000000px;}
.fse{font-size:126.000000px;}
.fsc{font-size:132.000000px;}
.fsf{font-size:162.000000px;}
.fs3{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y13{bottom:73.371870px;}
.y12{bottom:94.586820px;}
.y59{bottom:110.167860px;}
.yc8{bottom:116.688525px;}
.ya2{bottom:136.020750px;}
.yc7{bottom:140.176140px;}
.y58{bottom:140.259240px;}
.ya1{bottom:144.553410px;}
.ya0{bottom:152.082300px;}
.y9f{bottom:162.288000px;}
.y9e{bottom:169.733100px;}
.y57{bottom:171.353700px;}
.y3c{bottom:171.421800px;}
.y9d{bottom:177.763950px;}
.y8{bottom:181.594500px;}
.y9c{bottom:184.790850px;}
.y9b{bottom:191.148450px;}
.yac{bottom:193.490700px;}
.y84{bottom:198.342600px;}
.y56{bottom:201.445050px;}
.yab{bottom:204.951300px;}
.y9a{bottom:206.708100px;}
.y83{bottom:207.377250px;}
.ybd{bottom:209.301300px;}
.y1e{bottom:211.815150px;}
.y82{bottom:215.324400px;}
.y3b{bottom:219.587100px;}
.y81{bottom:225.864750px;}
.y99{bottom:229.461750px;}
.y96{bottom:233.477250px;}
.y80{bottom:234.899250px;}
.yaa{bottom:238.078200px;}
.y98{bottom:238.831050px;}
.y95{bottom:241.507950px;}
.y1d{bottom:242.530050px;}
.y7f{bottom:242.595450px;}
.ybc{bottom:244.017600px;}
.y3a{bottom:249.188700px;}
.y55{bottom:249.591300px;}
.ya9{bottom:249.622350px;}
.y94{bottom:251.044500px;}
.y93{bottom:258.071400px;}
.y7e{bottom:260.246400px;}
.y92{bottom:265.098300px;}
.ya8{bottom:269.364600px;}
.y1c{bottom:272.741400px;}
.y7d{bottom:273.129000px;}
.y91{bottom:276.140550px;}
.ybb{bottom:277.729950px;}
.y54{bottom:279.181050px;}
.y39{bottom:279.793650px;}
.y7c{bottom:281.159700px;}
.y90{bottom:282.749100px;}
.y7b{bottom:286.513500px;}
.yba{bottom:293.289450px;}
.ya7{bottom:293.707800px;}
.y8f{bottom:293.875050px;}
.y7a{bottom:299.563500px;}
.ya6{bottom:301.822200px;}
.yb9{bottom:302.324100px;}
.y1b{bottom:303.959850px;}
.y79{bottom:308.347200px;}
.y53{bottom:309.774000px;}
.y78{bottom:311.358600px;}
.yb8{bottom:312.780750px;}
.y77{bottom:313.282650px;}
.y8e{bottom:313.951950px;}
.y75{bottom:321.731700px;}
.ya5{bottom:322.317300px;}
.y8d{bottom:325.328850px;}
.y76{bottom:325.830750px;}
.yb7{bottom:329.344200px;}
.y38{bottom:330.969450px;}
.y74{bottom:331.268250px;}
.y8c{bottom:332.857650px;}
.yae{bottom:339.382650px;}
.yb6{bottom:340.386450px;}
.y52{bottom:340.868400px;}
.y8b{bottom:344.736450px;}
.yad{bottom:345.489300px;}
.y73{bottom:346.660500px;}
.yb5{bottom:347.413350px;}
.yb4{bottom:354.440250px;}
.y8a{bottom:355.778700px;}
.yb3{bottom:361.467150px;}
.y37{bottom:361.574400px;}
.y72{bottom:365.566200px;}
.ya4{bottom:367.573950px;}
.yb2{bottom:367.992150px;}
.y89{bottom:371.087400px;}
.y51{bottom:371.461350px;}
.y71{bottom:375.186300px;}
.ya3{bottom:376.441200px;}
.y88{bottom:379.118100px;}
.y87{bottom:386.897850px;}
.y70{bottom:392.084400px;}
.y36{bottom:393.684600px;}
.y86{bottom:394.426650px;}
.y50{bottom:402.054150px;}
.y6f{bottom:405.970950px;}
.yb1{bottom:409.066050px;}
.y85{bottom:413.750700px;}
.yb0{bottom:417.013200px;}
.y35{bottom:423.286200px;}
.yaf{bottom:429.728550px;}
.y4f{bottom:450.200400px;}
.y34{bottom:454.894800px;}
.y33{bottom:484.496400px;}
.y32{bottom:514.599750px;}
.y11{bottom:529.283700px;}
.y4e{bottom:529.441050px;}
.y31{bottom:554.235750px;}
.y4d{bottom:559.030800px;}
.y6b{bottom:559.308000px;}
.y6a{bottom:572.776200px;}
.y30{bottom:584.339100px;}
.y69{bottom:585.407850px;}
.y4c{bottom:610.687650px;}
.y2f{bottom:615.445800px;}
.y10{bottom:620.851800px;}
.y4b{bottom:637.770000px;}
.y2e{bottom:645.549150px;}
.y68{bottom:658.521150px;}
.yf{bottom:666.635850px;}
.y67{bottom:669.145050px;}
.y2d{bottom:685.185150px;}
.y4a{bottom:685.916100px;}
.y66{bottom:691.731600px;}
.y65{bottom:701.853600px;}
.ye{bottom:707.388600px;}
.y2c{bottom:714.786750px;}
.yc6{bottom:716.172450px;}
.y49{bottom:716.509050px;}
.y2b{bottom:745.391850px;}
.y7{bottom:745.960650px;}
.y48{bottom:746.600400px;}
.yd{bottom:753.172650px;}
.y6{bottom:790.960650px;}
.y2a{bottom:794.058900px;}
.y47{bottom:797.254200px;}
.yc{bottom:798.956700px;}
.y46{bottom:827.345550px;}
.y1a{bottom:838.700850px;}
.y29{bottom:842.224200px;}
.y5{bottom:850.464600px;}
.yc5{bottom:859.040550px;}
.y28{bottom:872.327550px;}
.y4{bottom:877.464600px;}
.y45{bottom:878.500950px;}
.y6e{bottom:886.979100px;}
.yc4{bottom:887.014800px;}
.y19{bottom:899.123550px;}
.y27{bottom:902.932650px;}
.y3{bottom:904.464600px;}
.y44{bottom:905.081700px;}
.y97{bottom:927.467400px;}
.y18{bottom:929.838450px;}
.y2{bottom:931.464600px;}
.y26{bottom:933.036000px;}
.y43{bottom:953.227800px;}
.y63{bottom:954.236550px;}
.y17{bottom:956.525100px;}
.y62{bottom:960.343200px;}
.y25{bottom:963.640950px;}
.y61{bottom:976.739400px;}
.yc3{bottom:980.928150px;}
.y42{bottom:983.319150px;}
.y6d{bottom:986.359500px;}
.y16{bottom:986.736450px;}
.y60{bottom:988.952850px;}
.y24{bottom:993.744300px;}
.y5f{bottom:996.481650px;}
.y64{bottom:996.899850px;}
.y5e{bottom:1007.022000px;}
.yc2{bottom:1010.900400px;}
.y41{bottom:1013.410650px;}
.y15{bottom:1017.451350px;}
.y23{bottom:1023.847650px;}
.y1{bottom:1026.992100px;}
.yb{bottom:1053.955350px;}
.y22{bottom:1054.452750px;}
.yc1{bottom:1061.853450px;}
.y40{bottom:1073.091750px;}
.y5d{bottom:1076.119800px;}
.ya{bottom:1079.950050px;}
.y5c{bottom:1083.314100px;}
.y21{bottom:1084.556100px;}
.y6c{bottom:1085.740050px;}
.yc0{bottom:1088.329050px;}
.y5b{bottom:1094.188950px;}
.y5a{bottom:1100.379300px;}
.y3f{bottom:1103.684700px;}
.y9{bottom:1115.755500px;}
.y20{bottom:1133.223150px;}
.y3e{bottom:1134.277650px;}
.ybf{bottom:1137.283800px;}
.y1f{bottom:1190.503050px;}
.y3d{bottom:1191.534750px;}
.ybe{bottom:1193.815050px;}
.y14{bottom:1197.796350px;}
.ha{height:40.031250px;}
.h7{height:50.039062px;}
.h9{height:55.042969px;}
.h11{height:60.046875px;}
.h6{height:65.050781px;}
.h4{height:67.183594px;}
.hb{height:70.054688px;}
.hd{height:75.058594px;}
.h3{height:76.781250px;}
.hf{height:80.062500px;}
.h8{height:85.066406px;}
.h2{height:86.378906px;}
.h10{height:90.070312px;}
.he{height:100.078125px;}
.h12{height:105.082031px;}
.hc{height:110.085938px;}
.h13{height:135.105469px;}
.h5{height:180.140625px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:73.355130px;}
.x4{left:112.970370px;}
.x22{left:119.034180px;}
.x1f{left:121.017060px;}
.x1d{left:122.504220px;}
.x2e{left:124.298790px;}
.x1a{left:126.156390px;}
.x29{left:127.665765px;}
.x27{left:129.151965px;}
.x23{left:130.638165px;}
.x46{left:133.178775px;}
.x2{left:142.191075px;}
.x21{left:145.307295px;}
.x20{left:146.794455px;}
.x9{left:154.454850px;}
.x24{left:156.399060px;}
.xa{left:171.850710px;}
.x2d{left:173.403690px;}
.x2b{left:176.379750px;}
.x25{left:182.159940px;}
.x1{left:192.857085px;}
.x2a{left:195.228135px;}
.xf{left:230.002485px;}
.x2c{left:232.428735px;}
.x26{left:233.681685px;}
.xe{left:234.972735px;}
.x35{left:250.285035px;}
.x36{left:253.261185px;}
.x33{left:269.133435px;}
.x34{left:271.613535px;}
.x8{left:277.016040px;}
.x31{left:287.485785px;}
.x10{left:302.568135px;}
.x30{left:306.334185px;}
.x2f{left:309.806235px;}
.xd{left:311.514585px;}
.x12{left:313.999635px;}
.x6{left:315.104190px;}
.x17{left:324.105930px;}
.x16{left:326.095380px;}
.x32{left:327.662535px;}
.x11{left:337.359885px;}
.xb{left:341.833035px;}
.x28{left:345.147135px;}
.x7{left:347.609040px;}
.x1e{left:350.535045px;}
.xc{left:362.210985px;}
.x18{left:367.376280px;}
.x15{left:373.842030px;}
.x5{left:375.622770px;}
.x19{left:386.773380px;}
.x3a{left:388.671585px;}
.x3b{left:391.647735px;}
.x1c{left:399.115545px;}
.x14{left:405.175680px;}
.x37{left:408.016035px;}
.x38{left:410.992035px;}
.x3d{left:416.448135px;}
.x39{left:428.352285px;}
.x1b{left:450.174645px;}
.x13{left:457.398630px;}
.x45{left:458.790480px;}
.x3f{left:482.417385px;}
.x3e{left:484.897335px;}
.x47{left:542.166780px;}
.x40{left:555.826635px;}
.x41{left:623.779935px;}
.x42{left:627.251985px;}
.x43{left:642.628335px;}
.x44{left:644.612385px;}
.x3c{left:689.253135px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:18.184377pt;}
.ls11{letter-spacing:20.172331pt;}
.ls9{letter-spacing:20.940747pt;}
.ls7{letter-spacing:20.941067pt;}
.ls2{letter-spacing:20.968000pt;}
.ls6{letter-spacing:21.796800pt;}
.ls8{letter-spacing:21.797333pt;}
.ls1{letter-spacing:21.826133pt;}
.ls5{letter-spacing:22.730667pt;}
.lse{letter-spacing:25.337600pt;}
.ls10{letter-spacing:25.338133pt;}
.lsd{letter-spacing:26.688874pt;}
.lsb{letter-spacing:27.600623pt;}
.lsf{letter-spacing:28.845235pt;}
.lsc{letter-spacing:39.518710pt;}
.lsa{letter-spacing:44.508011pt;}
.ls3{letter-spacing:70.353942pt;}
.ls4{letter-spacing:75.641622pt;}
.ws27{word-spacing:-14.666667pt;}
.wse1{word-spacing:-10.666667pt;}
.ws101{word-spacing:-4.937047pt;}
.ws71{word-spacing:-4.609039pt;}
.ws46{word-spacing:-4.177886pt;}
.ws50{word-spacing:-4.165125pt;}
.ws8a{word-spacing:-4.094671pt;}
.wsb2{word-spacing:-4.094404pt;}
.ws103{word-spacing:-3.991294pt;}
.ws7c{word-spacing:-3.862480pt;}
.ws59{word-spacing:-3.679092pt;}
.ws9{word-spacing:-3.427061pt;}
.ws24{word-spacing:-2.898647pt;}
.wsf3{word-spacing:-2.779767pt;}
.ws1c{word-spacing:-2.636994pt;}
.ws29{word-spacing:-2.477375pt;}
.ws32{word-spacing:-2.418943pt;}
.wsbc{word-spacing:-2.365244pt;}
.ws8c{word-spacing:-2.336063pt;}
.ws82{word-spacing:-2.333071pt;}
.ws97{word-spacing:-2.332538pt;}
.ws35{word-spacing:-2.147485pt;}
.ws88{word-spacing:-2.132850pt;}
.ws4b{word-spacing:-1.970114pt;}
.ws6f{word-spacing:-1.925260pt;}
.wsfa{word-spacing:-1.773869pt;}
.ws66{word-spacing:-1.348815pt;}
.wsae{word-spacing:-1.100551pt;}
.ws8e{word-spacing:-0.943092pt;}
.wsc1{word-spacing:-0.854229pt;}
.ws9f{word-spacing:-0.574997pt;}
.wsd8{word-spacing:-0.525133pt;}
.wsca{word-spacing:-0.425707pt;}
.ws9b{word-spacing:-0.371250pt;}
.wsbe{word-spacing:-0.343067pt;}
.ws80{word-spacing:-0.332426pt;}
.ws57{word-spacing:-0.154079pt;}
.ws2c{word-spacing:-0.134053pt;}
.ws63{word-spacing:-0.097116pt;}
.ws3d{word-spacing:-0.076268pt;}
.ws0{word-spacing:0.000000pt;}
.wsb4{word-spacing:0.457267pt;}
.ws55{word-spacing:0.508461pt;}
.ws5e{word-spacing:0.590802pt;}
.wsb0{word-spacing:0.865155pt;}
.wsfc{word-spacing:0.886676pt;}
.ws4c{word-spacing:0.990457pt;}
.ws3a{word-spacing:1.044370pt;}
.wsc0{word-spacing:1.286231pt;}
.wse0{word-spacing:1.337600pt;}
.wsef{word-spacing:1.338133pt;}
.ws2b{word-spacing:1.377315pt;}
.ws86{word-spacing:1.429134pt;}
.ws77{word-spacing:2.115193pt;}
.wsa2{word-spacing:2.251040pt;}
.ws111{word-spacing:2.283232pt;}
.wsdf{word-spacing:2.440299pt;}
.ws75{word-spacing:2.440671pt;}
.ws70{word-spacing:2.511616pt;}
.ws95{word-spacing:2.553966pt;}
.ws7b{word-spacing:2.554500pt;}
.ws38{word-spacing:2.649856pt;}
.ws87{word-spacing:2.771856pt;}
.wsd9{word-spacing:3.030737pt;}
.ws14{word-spacing:3.194535pt;}
.ws4a{word-spacing:3.495499pt;}
.wsa5{word-spacing:3.508106pt;}
.ws72{word-spacing:3.508379pt;}
.ws92{word-spacing:3.545067pt;}
.wsb6{word-spacing:3.562094pt;}
.ws58{word-spacing:3.607467pt;}
.ws99{word-spacing:3.650069pt;}
.ws1f{word-spacing:3.708763pt;}
.ws7e{word-spacing:3.715802pt;}
.ws3b{word-spacing:3.807751pt;}
.ws6a{word-spacing:3.911200pt;}
.ws61{word-spacing:3.941856pt;}
.wsd4{word-spacing:3.981969pt;}
.ws48{word-spacing:3.993936pt;}
.ws100{word-spacing:4.037205pt;}
.ws105{word-spacing:4.113760pt;}
.wsa8{word-spacing:4.223115pt;}
.ws62{word-spacing:4.331035pt;}
.ws23{word-spacing:4.336565pt;}
.wsfb{word-spacing:4.358624pt;}
.ws4{word-spacing:4.476267pt;}
.ws76{word-spacing:4.532923pt;}
.ws7f{word-spacing:4.533456pt;}
.ws9d{word-spacing:4.551868pt;}
.ws114{word-spacing:4.585072pt;}
.ws16{word-spacing:4.629669pt;}
.wsb1{word-spacing:4.723449pt;}
.ws6d{word-spacing:4.849600pt;}
.ws10e{word-spacing:4.856240pt;}
.ws30{word-spacing:5.080020pt;}
.wsf6{word-spacing:5.086135pt;}
.ws1d{word-spacing:5.100343pt;}
.ws18{word-spacing:5.295589pt;}
.wsa3{word-spacing:5.306667pt;}
.wsb7{word-spacing:5.332709pt;}
.wsb5{word-spacing:5.358747pt;}
.ws10a{word-spacing:5.361670pt;}
.ws2a{word-spacing:5.369600pt;}
.ws84{word-spacing:5.411509pt;}
.wsa6{word-spacing:5.504875pt;}
.ws31{word-spacing:5.556501pt;}
.ws109{word-spacing:5.565573pt;}
.ws21{word-spacing:5.620384pt;}
.ws25{word-spacing:5.727691pt;}
.wsa9{word-spacing:5.770203pt;}
.ws8f{word-spacing:5.773707pt;}
.ws34{word-spacing:5.837987pt;}
.ws10d{word-spacing:5.952533pt;}
.ws113{word-spacing:6.041695pt;}
.wsa1{word-spacing:6.122469pt;}
.ws3{word-spacing:6.144896pt;}
.ws28{word-spacing:6.264683pt;}
.ws96{word-spacing:6.294523pt;}
.ws13{word-spacing:6.303785pt;}
.ws9e{word-spacing:6.448128pt;}
.wsfd{word-spacing:6.576960pt;}
.ws6{word-spacing:6.592533pt;}
.ws107{word-spacing:6.610320pt;}
.ws1a{word-spacing:6.651200pt;}
.wsba{word-spacing:6.685872pt;}
.ws51{word-spacing:6.695707pt;}
.ws7d{word-spacing:6.779392pt;}
.ws12{word-spacing:6.927173pt;}
.ws6e{word-spacing:7.038976pt;}
.ws11{word-spacing:7.055310pt;}
.ws5d{word-spacing:7.132267pt;}
.ws3f{word-spacing:7.132373pt;}
.ws5a{word-spacing:7.134256pt;}
.ws10b{word-spacing:7.173120pt;}
.wse5{word-spacing:7.232282pt;}
.ws8{word-spacing:7.239409pt;}
.ws4d{word-spacing:7.249696pt;}
.ws73{word-spacing:7.288601pt;}
.wsb9{word-spacing:7.298256pt;}
.ws6b{word-spacing:7.364744pt;}
.ws68{word-spacing:7.365117pt;}
.wse6{word-spacing:7.440304pt;}
.ws8d{word-spacing:7.558400pt;}
.ws37{word-spacing:7.730515pt;}
.ws15{word-spacing:7.746309pt;}
.wsb8{word-spacing:7.772585pt;}
.wsbb{word-spacing:7.820389pt;}
.ws49{word-spacing:7.821118pt;}
.ws60{word-spacing:7.856315pt;}
.ws40{word-spacing:7.862838pt;}
.wsbf{word-spacing:7.956868pt;}
.ws26{word-spacing:8.001461pt;}
.ws81{word-spacing:8.071467pt;}
.ws17{word-spacing:8.072318pt;}
.ws91{word-spacing:8.075068pt;}
.ws7{word-spacing:8.172002pt;}
.ws8b{word-spacing:8.209728pt;}
.ws5c{word-spacing:8.457840pt;}
.ws42{word-spacing:8.458373pt;}
.ws79{word-spacing:8.521325pt;}
.ws83{word-spacing:8.621326pt;}
.ws3e{word-spacing:8.634027pt;}
.ws104{word-spacing:8.677568pt;}
.wsaf{word-spacing:8.683317pt;}
.ws5f{word-spacing:8.739733pt;}
.wsb3{word-spacing:8.829867pt;}
.wsc2{word-spacing:8.932663pt;}
.ws41{word-spacing:9.022635pt;}
.ws2d{word-spacing:9.081835pt;}
.wsd{word-spacing:9.090133pt;}
.ws45{word-spacing:9.216757pt;}
.ws2e{word-spacing:9.276135pt;}
.wsff{word-spacing:9.349035pt;}
.wsfe{word-spacing:9.383868pt;}
.wsad{word-spacing:9.409824pt;}
.ws20{word-spacing:9.430023pt;}
.wsc{word-spacing:9.458330pt;}
.ws65{word-spacing:9.612213pt;}
.ws56{word-spacing:9.885811pt;}
.ws54{word-spacing:9.992240pt;}
.wsa{word-spacing:10.026671pt;}
.ws3c{word-spacing:10.127056pt;}
.ws67{word-spacing:10.141787pt;}
.ws85{word-spacing:10.161840pt;}
.ws9a{word-spacing:10.162373pt;}
.ws5{word-spacing:10.177162pt;}
.ws4e{word-spacing:10.220507pt;}
.wsa4{word-spacing:10.274133pt;}
.ws93{word-spacing:10.282765pt;}
.ws43{word-spacing:10.301333pt;}
.ws64{word-spacing:10.342605pt;}
.ws98{word-spacing:10.382926pt;}
.ws36{word-spacing:10.410821pt;}
.ws106{word-spacing:10.444427pt;}
.wsa0{word-spacing:10.457067pt;}
.ws19{word-spacing:10.482667pt;}
.ws102{word-spacing:10.524501pt;}
.ws4f{word-spacing:10.642272pt;}
.ws22{word-spacing:10.705508pt;}
.ws89{word-spacing:10.750101pt;}
.ws110{word-spacing:10.770605pt;}
.ws7a{word-spacing:10.951707pt;}
.ws94{word-spacing:10.952080pt;}
.ws116{word-spacing:11.051359pt;}
.ws10c{word-spacing:11.420864pt;}
.wsac{word-spacing:11.793561pt;}
.wsf9{word-spacing:11.853333pt;}
.wsc7{word-spacing:11.919467pt;}
.ws52{word-spacing:11.953315pt;}
.wsde{word-spacing:11.990067pt;}
.wsa7{word-spacing:12.050990pt;}
.ws44{word-spacing:12.105165pt;}
.wsb{word-spacing:12.189685pt;}
.wsc4{word-spacing:12.211132pt;}
.ws108{word-spacing:12.477867pt;}
.ws90{word-spacing:12.511168pt;}
.ws9c{word-spacing:12.511701pt;}
.wsf2{word-spacing:12.551565pt;}
.wsdc{word-spacing:12.622699pt;}
.wsab{word-spacing:12.770802pt;}
.wsda{word-spacing:12.887041pt;}
.ws69{word-spacing:13.031403pt;}
.wsd5{word-spacing:13.312874pt;}
.ws74{word-spacing:13.325045pt;}
.wsf{word-spacing:13.603264pt;}
.wse3{word-spacing:13.683200pt;}
.wsf4{word-spacing:13.782733pt;}
.ws2f{word-spacing:14.070965pt;}
.wsc6{word-spacing:14.315249pt;}
.wse2{word-spacing:14.315298pt;}
.ws6c{word-spacing:14.333328pt;}
.wsaa{word-spacing:14.348691pt;}
.ws1b{word-spacing:14.493461pt;}
.ws112{word-spacing:15.000331pt;}
.wsc5{word-spacing:15.204641pt;}
.wse{word-spacing:15.237867pt;}
.ws33{word-spacing:15.590043pt;}
.wsed{word-spacing:15.834667pt;}
.ws39{word-spacing:15.852421pt;}
.wsd3{word-spacing:16.078498pt;}
.wsec{word-spacing:16.938833pt;}
.wsc8{word-spacing:17.771635pt;}
.wsc3{word-spacing:17.828032pt;}
.wsea{word-spacing:17.942302pt;}
.wsee{word-spacing:18.074581pt;}
.ws1e{word-spacing:19.787809pt;}
.ws78{word-spacing:20.364837pt;}
.wsce{word-spacing:20.582389pt;}
.wseb{word-spacing:20.737067pt;}
.wse9{word-spacing:21.128435pt;}
.wscb{word-spacing:22.670933pt;}
.ws2{word-spacing:23.143352pt;}
.ws10{word-spacing:23.221755pt;}
.wsd6{word-spacing:23.605077pt;}
.wse7{word-spacing:23.773632pt;}
.ws47{word-spacing:23.859227pt;}
.ws5b{word-spacing:23.953073pt;}
.wsdd{word-spacing:24.435200pt;}
.wsbd{word-spacing:24.631058pt;}
.wsd2{word-spacing:25.537365pt;}
.wsd0{word-spacing:25.597867pt;}
.wse8{word-spacing:26.830498pt;}
.wse4{word-spacing:27.300565pt;}
.wsf5{word-spacing:29.193509pt;}
.ws115{word-spacing:29.293219pt;}
.wsf8{word-spacing:32.287369pt;}
.wsf7{word-spacing:34.354965pt;}
.wscf{word-spacing:35.016000pt;}
.wsd1{word-spacing:35.016533pt;}
.wsf0{word-spacing:36.118699pt;}
.wsd7{word-spacing:37.694416pt;}
.wsf1{word-spacing:43.834133pt;}
.wsdb{word-spacing:49.936895pt;}
.wscc{word-spacing:52.918917pt;}
.wscd{word-spacing:61.825173pt;}
.wsc9{word-spacing:74.443102pt;}
.ws53{word-spacing:84.431463pt;}
.ws1{word-spacing:99.923731pt;}
.ws10f{word-spacing:683.673600pt;}
._3a{margin-left:-15.351369pt;}
._27{margin-left:-12.197916pt;}
._19{margin-left:-5.564956pt;}
._39{margin-left:-4.599369pt;}
._1d{margin-left:-2.272123pt;}
._3e{margin-left:-1.072435pt;}
._1c{width:1.068707pt;}
._18{width:3.274854pt;}
._1a{width:5.201047pt;}
._17{width:6.406810pt;}
._10{width:7.323078pt;}
._31{width:8.375761pt;}
._15{width:9.480711pt;}
._1e{width:15.559013pt;}
._1b{width:17.267307pt;}
._b{width:18.391401pt;}
._d{width:19.872000pt;}
._f{width:21.068444pt;}
._a{width:22.025189pt;}
._4{width:23.584427pt;}
._6{width:24.797281pt;}
._16{width:25.775638pt;}
._c{width:27.255467pt;}
._9{width:28.279499pt;}
._7{width:29.906075pt;}
._e{width:31.437403pt;}
._34{width:32.605965pt;}
._5{width:33.763973pt;}
._29{width:34.871330pt;}
._12{width:36.471040pt;}
._8{width:38.312622pt;}
._28{width:40.695622pt;}
._32{width:42.471562pt;}
._13{width:43.808859pt;}
._22{width:45.192553pt;}
._35{width:46.088874pt;}
._1f{width:47.104943pt;}
._3{width:48.166827pt;}
._14{width:49.121137pt;}
._11{width:51.199542pt;}
._23{width:52.226097pt;}
._21{width:53.507200pt;}
._20{width:56.683769pt;}
._3d{width:57.625112pt;}
._37{width:58.732526pt;}
._3b{width:63.839995pt;}
._2b{width:66.044522pt;}
._3c{width:69.099714pt;}
._1{width:70.107348pt;}
._2a{width:72.116502pt;}
._2c{width:74.155733pt;}
._2{width:75.557745pt;}
._2d{width:78.946229pt;}
._3f{width:81.502249pt;}
._40{width:88.616682pt;}
._41{width:101.702589pt;}
._33{width:102.900251pt;}
._38{width:105.835820pt;}
._0{width:109.339167pt;}
._25{width:111.493338pt;}
._36{width:114.377600pt;}
._24{width:116.077811pt;}
._26{width:121.522855pt;}
._2f{width:137.426827pt;}
._30{width:138.959868pt;}
._2e{width:140.721095pt;}
.fsb{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fs9{font-size:80.000000pt;}
.fs1{font-size:85.333333pt;}
.fs8{font-size:90.666667pt;}
.fs0{font-size:96.000000pt;}
.fsd{font-size:106.666667pt;}
.fse{font-size:112.000000pt;}
.fsc{font-size:117.333333pt;}
.fsf{font-size:144.000000pt;}
.fs3{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:65.219440pt;}
.y12{bottom:84.077173pt;}
.y59{bottom:97.926987pt;}
.yc8{bottom:103.723133pt;}
.ya2{bottom:120.907333pt;}
.yc7{bottom:124.601013pt;}
.y58{bottom:124.674880pt;}
.ya1{bottom:128.491920pt;}
.ya0{bottom:135.184267pt;}
.y9f{bottom:144.256000pt;}
.y9e{bottom:150.873867pt;}
.y57{bottom:152.314400pt;}
.y3c{bottom:152.374933pt;}
.y9d{bottom:158.012400pt;}
.y8{bottom:161.417333pt;}
.y9c{bottom:164.258533pt;}
.y9b{bottom:169.909733pt;}
.yac{bottom:171.991733pt;}
.y84{bottom:176.304533pt;}
.y56{bottom:179.062267pt;}
.yab{bottom:182.178933pt;}
.y9a{bottom:183.740533pt;}
.y83{bottom:184.335333pt;}
.ybd{bottom:186.045600pt;}
.y1e{bottom:188.280133pt;}
.y82{bottom:191.399467pt;}
.y3b{bottom:195.188533pt;}
.y81{bottom:200.768667pt;}
.y99{bottom:203.966000pt;}
.y96{bottom:207.535333pt;}
.y80{bottom:208.799333pt;}
.yaa{bottom:211.625067pt;}
.y98{bottom:212.294267pt;}
.y95{bottom:214.673733pt;}
.y1d{bottom:215.582267pt;}
.y7f{bottom:215.640400pt;}
.ybc{bottom:216.904533pt;}
.y3a{bottom:221.501067pt;}
.y55{bottom:221.858933pt;}
.ya9{bottom:221.886533pt;}
.y94{bottom:223.150667pt;}
.y93{bottom:229.396800pt;}
.y7e{bottom:231.330133pt;}
.y92{bottom:235.642933pt;}
.ya8{bottom:239.435200pt;}
.y1c{bottom:242.436800pt;}
.y7d{bottom:242.781333pt;}
.y91{bottom:245.458267pt;}
.ybb{bottom:246.871067pt;}
.y54{bottom:248.160933pt;}
.y39{bottom:248.705467pt;}
.y7c{bottom:249.919733pt;}
.y90{bottom:251.332533pt;}
.y7b{bottom:254.678667pt;}
.yba{bottom:260.701733pt;}
.ya7{bottom:261.073600pt;}
.y8f{bottom:261.222267pt;}
.y7a{bottom:266.278667pt;}
.ya6{bottom:268.286400pt;}
.yb9{bottom:268.732533pt;}
.y1b{bottom:270.186533pt;}
.y79{bottom:274.086400pt;}
.y53{bottom:275.354667pt;}
.y78{bottom:276.763200pt;}
.yb8{bottom:278.027333pt;}
.y77{bottom:278.473467pt;}
.y8e{bottom:279.068400pt;}
.y75{bottom:285.983733pt;}
.ya5{bottom:286.504267pt;}
.y8d{bottom:289.181200pt;}
.y76{bottom:289.627333pt;}
.yb7{bottom:292.750400pt;}
.y38{bottom:294.195067pt;}
.y74{bottom:294.460667pt;}
.y8c{bottom:295.873467pt;}
.yae{bottom:301.673467pt;}
.yb6{bottom:302.565733pt;}
.y52{bottom:302.994133pt;}
.y8b{bottom:306.432400pt;}
.yad{bottom:307.101600pt;}
.y73{bottom:308.142667pt;}
.yb5{bottom:308.811867pt;}
.yb4{bottom:315.058000pt;}
.y8a{bottom:316.247733pt;}
.yb3{bottom:321.304133pt;}
.y37{bottom:321.399467pt;}
.y72{bottom:324.947733pt;}
.ya4{bottom:326.732400pt;}
.yb2{bottom:327.104133pt;}
.y89{bottom:329.855467pt;}
.y51{bottom:330.187867pt;}
.y71{bottom:333.498933pt;}
.ya3{bottom:334.614400pt;}
.y88{bottom:336.993867pt;}
.y87{bottom:343.909200pt;}
.y70{bottom:348.519467pt;}
.y36{bottom:349.941867pt;}
.y86{bottom:350.601467pt;}
.y50{bottom:357.381467pt;}
.y6f{bottom:360.863067pt;}
.yb1{bottom:363.614267pt;}
.y85{bottom:367.778400pt;}
.yb0{bottom:370.678400pt;}
.y35{bottom:376.254400pt;}
.yaf{bottom:381.980933pt;}
.y4f{bottom:400.178133pt;}
.y34{bottom:404.350933pt;}
.y33{bottom:430.663467pt;}
.y32{bottom:457.422000pt;}
.y11{bottom:470.474400pt;}
.y4e{bottom:470.614267pt;}
.y31{bottom:492.654000pt;}
.y4d{bottom:496.916267pt;}
.y6b{bottom:497.162667pt;}
.y6a{bottom:509.134400pt;}
.y30{bottom:519.412533pt;}
.y69{bottom:520.362533pt;}
.y4c{bottom:542.833467pt;}
.y2f{bottom:547.062933pt;}
.y10{bottom:551.868267pt;}
.y4b{bottom:566.906667pt;}
.y2e{bottom:573.821467pt;}
.y68{bottom:585.352133pt;}
.yf{bottom:592.565200pt;}
.y67{bottom:594.795600pt;}
.y2d{bottom:609.053467pt;}
.y4a{bottom:609.703200pt;}
.y66{bottom:614.872533pt;}
.y65{bottom:623.869867pt;}
.ye{bottom:628.789867pt;}
.y2c{bottom:635.366000pt;}
.yc6{bottom:636.597733pt;}
.y49{bottom:636.896933pt;}
.y2b{bottom:662.570533pt;}
.y7{bottom:663.076133pt;}
.y48{bottom:663.644800pt;}
.yd{bottom:669.486800pt;}
.y6{bottom:703.076133pt;}
.y2a{bottom:705.830133pt;}
.y47{bottom:708.670400pt;}
.yc{bottom:710.183733pt;}
.y46{bottom:735.418267pt;}
.y1a{bottom:745.511867pt;}
.y29{bottom:748.643733pt;}
.y5{bottom:755.968533pt;}
.yc5{bottom:763.591600pt;}
.y28{bottom:775.402267pt;}
.y4{bottom:779.968533pt;}
.y45{bottom:780.889733pt;}
.y6e{bottom:788.425867pt;}
.yc4{bottom:788.457600pt;}
.y19{bottom:799.220933pt;}
.y27{bottom:802.606800pt;}
.y3{bottom:803.968533pt;}
.y44{bottom:804.517067pt;}
.y97{bottom:824.415467pt;}
.y18{bottom:826.523067pt;}
.y2{bottom:827.968533pt;}
.y26{bottom:829.365333pt;}
.y43{bottom:847.313600pt;}
.y63{bottom:848.210267pt;}
.y17{bottom:850.244533pt;}
.y62{bottom:853.638400pt;}
.y25{bottom:856.569733pt;}
.y61{bottom:868.212800pt;}
.yc3{bottom:871.936133pt;}
.y42{bottom:874.061467pt;}
.y6d{bottom:876.764000pt;}
.y16{bottom:877.099067pt;}
.y60{bottom:879.069200pt;}
.y24{bottom:883.328267pt;}
.y5f{bottom:885.761467pt;}
.y64{bottom:886.133200pt;}
.y5e{bottom:895.130667pt;}
.yc2{bottom:898.578133pt;}
.y41{bottom:900.809467pt;}
.y15{bottom:904.401200pt;}
.y23{bottom:910.086800pt;}
.y1{bottom:912.881867pt;}
.yb{bottom:936.849200pt;}
.y22{bottom:937.291333pt;}
.yc1{bottom:943.869733pt;}
.y40{bottom:953.859333pt;}
.y5d{bottom:956.550933pt;}
.ya{bottom:959.955600pt;}
.y5c{bottom:962.945867pt;}
.y21{bottom:964.049867pt;}
.y6c{bottom:965.102267pt;}
.yc0{bottom:967.403600pt;}
.y5b{bottom:972.612400pt;}
.y5a{bottom:978.114933pt;}
.y3f{bottom:981.053067pt;}
.y9{bottom:991.782667pt;}
.y20{bottom:1007.309467pt;}
.y3e{bottom:1008.246800pt;}
.ybf{bottom:1010.918933pt;}
.y1f{bottom:1058.224933pt;}
.y3d{bottom:1059.142000pt;}
.ybe{bottom:1061.168933pt;}
.y14{bottom:1064.707867pt;}
.ha{height:35.583333pt;}
.h7{height:44.479167pt;}
.h9{height:48.927083pt;}
.h11{height:53.375000pt;}
.h6{height:57.822917pt;}
.h4{height:59.718750pt;}
.hb{height:62.270833pt;}
.hd{height:66.718750pt;}
.h3{height:68.250000pt;}
.hf{height:71.166667pt;}
.h8{height:75.614583pt;}
.h2{height:76.781250pt;}
.h10{height:80.062500pt;}
.he{height:88.958333pt;}
.h12{height:93.406250pt;}
.hc{height:97.854167pt;}
.h13{height:120.093750pt;}
.h5{height:160.125000pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:65.204560pt;}
.x4{left:100.418107pt;}
.x22{left:105.808160pt;}
.x1f{left:107.570720pt;}
.x1d{left:108.892640pt;}
.x2e{left:110.487813pt;}
.x1a{left:112.139013pt;}
.x29{left:113.480680pt;}
.x27{left:114.801747pt;}
.x23{left:116.122813pt;}
.x46{left:118.381133pt;}
.x2{left:126.392067pt;}
.x21{left:129.162040pt;}
.x20{left:130.483960pt;}
.x9{left:137.293200pt;}
.x24{left:139.021387pt;}
.xa{left:152.756187pt;}
.x2d{left:154.136613pt;}
.x2b{left:156.782000pt;}
.x25{left:161.919947pt;}
.x1{left:171.428520pt;}
.x2a{left:173.536120pt;}
.xf{left:204.446653pt;}
.x2c{left:206.603320pt;}
.x26{left:207.717053pt;}
.xe{left:208.864653pt;}
.x35{left:222.475587pt;}
.x36{left:225.121053pt;}
.x33{left:239.229720pt;}
.x34{left:241.434253pt;}
.x8{left:246.236480pt;}
.x31{left:255.542920pt;}
.x10{left:268.949453pt;}
.x30{left:272.297053pt;}
.x2f{left:275.383320pt;}
.xd{left:276.901853pt;}
.x12{left:279.110787pt;}
.x6{left:280.092613pt;}
.x17{left:288.094160pt;}
.x16{left:289.862560pt;}
.x32{left:291.255587pt;}
.x11{left:299.875453pt;}
.xb{left:303.851587pt;}
.x28{left:306.797453pt;}
.x7{left:308.985813pt;}
.x1e{left:311.586707pt;}
.xc{left:321.965320pt;}
.x18{left:326.556693pt;}
.x15{left:332.304027pt;}
.x5{left:333.886907pt;}
.x19{left:343.798560pt;}
.x3a{left:345.485853pt;}
.x3b{left:348.131320pt;}
.x1c{left:354.769373pt;}
.x14{left:360.156160pt;}
.x37{left:362.680920pt;}
.x38{left:365.326253pt;}
.x3d{left:370.176120pt;}
.x39{left:380.757587pt;}
.x1b{left:400.155240pt;}
.x13{left:406.576560pt;}
.x45{left:407.813760pt;}
.x3f{left:428.815453pt;}
.x3e{left:431.019853pt;}
.x47{left:481.926027pt;}
.x40{left:494.068120pt;}
.x41{left:554.471053pt;}
.x42{left:557.557320pt;}
.x43{left:571.225187pt;}
.x44{left:572.988787pt;}
.x3c{left:612.669453pt;}
}


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