
/* 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_ec74c07aeea8.woff")format("woff");}.ff1{font-family:ff1;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_1cdf20f73d32.woff")format("woff");}.ff2{font-family:ff2;line-height:0.909000;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_68b1130130ea.woff")format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_611e99c5f0e6.woff")format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_dd61ed5916ee.woff")format("woff");}.ff5{font-family:ff5;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:ff6;src:url("fonts/font_0005_9b1b7bbdd776.woff")format("woff");}.ff6{font-family:ff6;line-height:0.710000;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_c54ab896de75.woff")format("woff");}.ff7{font-family:ff7;line-height:0.922000;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_0f0b877d1840.woff")format("woff");}.ff8{font-family:ff8;line-height:0.453000;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_37f575148329.woff")format("woff");}.ff9{font-family:ff9;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:ffa;src:url("fonts/font_0009_9ab98a6c46af.woff")format("woff");}.ffa{font-family:ffa;line-height:0.918000;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_14888f02eb13.woff")format("woff");}.ffb{font-family:ffb;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:ffc;src:url("fonts/font_0011_a4f054cc85e0.woff")format("woff");}.ffc{font-family:ffc;line-height:0.724000;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_5f5bd7a29873.woff")format("woff");}.ffd{font-family:ffd;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url("fonts/font_0013_bc50595a44a2.woff")format("woff");}.ffe{font-family:ffe;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url("fonts/font_0014_5ea1b4f004ed.woff")format("woff");}.fff{font-family:fff;line-height:0.923000;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);}
.v3{vertical-align:-21.708000px;}
.v2{vertical-align:-10.787769px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.996628px;}
.v4{vertical-align:10.746000px;}
.v1{vertical-align:31.266000px;}
.ls21{letter-spacing:-3.586500px;}
.ls1{letter-spacing:-1.936710px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.014346px;}
.ls38{letter-spacing:0.021519px;}
.ls1c{letter-spacing:0.025443px;}
.ls4{letter-spacing:0.030483px;}
.ls2d{letter-spacing:0.047820px;}
.ls10{letter-spacing:0.049158px;}
.ls28{letter-spacing:0.050211px;}
.ls14{letter-spacing:0.055377px;}
.ls3{letter-spacing:0.196362px;}
.lse{letter-spacing:0.416034px;}
.ls2e{letter-spacing:0.621660px;}
.ls12{letter-spacing:2.960100px;}
.ls5{letter-spacing:3.007260px;}
.ls16{letter-spacing:4.052745px;}
.ls1f{letter-spacing:4.174686px;}
.ls2f{letter-spacing:7.459920px;}
.ls6{letter-spacing:9.755280px;}
.ls23{letter-spacing:11.907180px;}
.ls24{letter-spacing:12.481020px;}
.ls11{letter-spacing:14.891580px;}
.ls1a{letter-spacing:14.998743px;}
.ls27{letter-spacing:17.157816px;}
.ls26{letter-spacing:17.236719px;}
.ls30{letter-spacing:18.936720px;}
.ls17{letter-spacing:19.912248px;}
.lsd{letter-spacing:20.127438px;}
.ls18{letter-spacing:20.392839px;}
.ls2c{letter-spacing:20.507607px;}
.lsc{letter-spacing:20.773008px;}
.ls19{letter-spacing:20.801400px;}
.ls29{letter-spacing:21.612249px;}
.ls35{letter-spacing:21.633768px;}
.ls2a{letter-spacing:21.648114px;}
.ls31{letter-spacing:22.229127px;}
.lsa{letter-spacing:22.451490px;}
.ls22{letter-spacing:22.738410px;}
.ls8{letter-spacing:23.369634px;}
.ls37{letter-spacing:23.635035px;}
.ls2b{letter-spacing:23.850225px;}
.ls7{letter-spacing:24.804234px;}
.ls1e{letter-spacing:24.825753px;}
.ls13{letter-spacing:25.069635px;}
.ls25{letter-spacing:25.686513px;}
.lsf{letter-spacing:26.855712px;}
.ls34{letter-spacing:26.984826px;}
.ls1b{letter-spacing:28.685400px;}
.ls1d{letter-spacing:30.089400px;}
.ls20{letter-spacing:30.255714px;}
.ls15{letter-spacing:30.791400px;}
.ls32{letter-spacing:32.005926px;}
.ls9{letter-spacing:35.097489px;}
.ls33{letter-spacing:35.570907px;}
.ls36{letter-spacing:47.392011px;}
.ls2{letter-spacing:242.811000px;}
.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;}
}
.ws51{word-spacing:-22.810140px;}
.ws1{word-spacing:-16.558506px;}
.ws24{word-spacing:-9.827010px;}
.ws79{word-spacing:-7.531650px;}
.ws77{word-spacing:-0.669480px;}
.ws2{word-spacing:-0.123978px;}
.ws74{word-spacing:-0.095640px;}
.ws25{word-spacing:-0.071730px;}
.ws29{word-spacing:-0.059778px;}
.ws7a{word-spacing:-0.047820px;}
.ws0{word-spacing:0.000000px;}
.ws73{word-spacing:11.562876px;}
.ws76{word-spacing:11.598741px;}
.ws87{word-spacing:11.605914px;}
.ws85{word-spacing:11.620260px;}
.ws9{word-spacing:14.465334px;}
.ws10{word-spacing:14.858058px;}
.wsbc{word-spacing:15.780600px;}
.wsbe{word-spacing:16.426170px;}
.wse{word-spacing:16.625316px;}
.wsb9{word-spacing:16.713090px;}
.ws1f{word-spacing:16.784820px;}
.ws2f{word-spacing:16.856550px;}
.ws19{word-spacing:17.071740px;}
.wsd{word-spacing:17.279856px;}
.ws20{word-spacing:17.573850px;}
.ws1e{word-spacing:17.717310px;}
.ws6b{word-spacing:17.789040px;}
.wsbb{word-spacing:18.075960px;}
.ws17{word-spacing:18.291150px;}
.ws22{word-spacing:18.721530px;}
.wsb8{word-spacing:18.864990px;}
.ws36{word-spacing:18.936720px;}
.ws65{word-spacing:19.151910px;}
.ws97{word-spacing:19.295370px;}
.wsc5{word-spacing:19.367100px;}
.ws21{word-spacing:19.725750px;}
.ws90{word-spacing:19.869210px;}
.ws28{word-spacing:19.906074px;}
.ws46{word-spacing:19.919421px;}
.ws6c{word-spacing:19.940940px;}
.ws2a{word-spacing:19.965852px;}
.ws34{word-spacing:20.084400px;}
.ws7d{word-spacing:20.156130px;}
.ws83{word-spacing:20.227860px;}
.ws33{word-spacing:20.299590px;}
.ws6d{word-spacing:20.658240px;}
.wsb6{word-spacing:20.801700px;}
.ws30{word-spacing:21.016890px;}
.ws4c{word-spacing:21.088620px;}
.wsbd{word-spacing:21.160350px;}
.ws27{word-spacing:21.161412px;}
.ws96{word-spacing:21.232080px;}
.ws93{word-spacing:21.303810px;}
.ws9c{word-spacing:21.375540px;}
.ws5f{word-spacing:21.519000px;}
.ws11{word-spacing:21.730728px;}
.ws13{word-spacing:21.796182px;}
.wsb3{word-spacing:21.805920px;}
.ws81{word-spacing:21.949380px;}
.wsc6{word-spacing:22.308030px;}
.ws44{word-spacing:22.379760px;}
.ws9b{word-spacing:22.523220px;}
.ws80{word-spacing:22.666680px;}
.wsaa{word-spacing:22.810140px;}
.ws54{word-spacing:22.867524px;}
.ws2d{word-spacing:22.881870px;}
.wsf{word-spacing:22.908900px;}
.ws53{word-spacing:22.953600px;}
.ws55{word-spacing:22.989465px;}
.ws18{word-spacing:23.046849px;}
.ws62{word-spacing:23.097060px;}
.ws64{word-spacing:23.168790px;}
.ws41{word-spacing:23.226174px;}
.ws66{word-spacing:23.240520px;}
.ws12{word-spacing:23.301624px;}
.ws23{word-spacing:23.312250px;}
.wsb2{word-spacing:23.319423px;}
.ws60{word-spacing:23.326596px;}
.wsc0{word-spacing:23.340942px;}
.ws4a{word-spacing:23.383980px;}
.ws48{word-spacing:23.527440px;}
.wsae{word-spacing:23.599170px;}
.ws92{word-spacing:23.670900px;}
.ws63{word-spacing:23.742630px;}
.ws68{word-spacing:23.957820px;}
.ws4b{word-spacing:23.993685px;}
.wsc3{word-spacing:24.029550px;}
.ws58{word-spacing:24.137145px;}
.ws72{word-spacing:24.173010px;}
.ws57{word-spacing:24.244740px;}
.ws2c{word-spacing:24.316470px;}
.ws56{word-spacing:24.323643px;}
.wsa9{word-spacing:24.531660px;}
.ws9d{word-spacing:24.675120px;}
.ws3a{word-spacing:24.739677px;}
.ws3c{word-spacing:24.746850px;}
.ws43{word-spacing:24.890310px;}
.ws52{word-spacing:24.962040px;}
.ws50{word-spacing:25.005078px;}
.ws1b{word-spacing:25.033770px;}
.ws67{word-spacing:25.105500px;}
.ws5e{word-spacing:25.177230px;}
.ws9f{word-spacing:25.248960px;}
.ws91{word-spacing:25.464150px;}
.ws59{word-spacing:25.607610px;}
.wsc2{word-spacing:25.679340px;}
.ws7e{word-spacing:25.822800px;}
.ws5b{word-spacing:25.837146px;}
.ws5c{word-spacing:25.966260px;}
.wsc4{word-spacing:26.109720px;}
.ws3e{word-spacing:26.253180px;}
.ws26{word-spacing:26.318040px;}
.wsa4{word-spacing:26.324910px;}
.ws61{word-spacing:26.468370px;}
.wsc{word-spacing:26.508870px;}
.ws39{word-spacing:26.540100px;}
.wsb5{word-spacing:26.611830px;}
.ws7c{word-spacing:26.683560px;}
.ws3f{word-spacing:26.755290px;}
.ws4e{word-spacing:27.042210px;}
.ws47{word-spacing:27.113940px;}
.wsc1{word-spacing:27.171324px;}
.ws45{word-spacing:27.185670px;}
.ws82{word-spacing:27.257400px;}
.ws1c{word-spacing:27.329130px;}
.ws9a{word-spacing:27.544320px;}
.ws31{word-spacing:27.616050px;}
.wsa3{word-spacing:27.759510px;}
.wsa5{word-spacing:27.902970px;}
.ws8{word-spacing:27.974700px;}
.ws2b{word-spacing:28.046430px;}
.ws6{word-spacing:28.060776px;}
.wsb4{word-spacing:28.118160px;}
.ws4d{word-spacing:28.189890px;}
.ws42{word-spacing:28.620270px;}
.ws40{word-spacing:28.677654px;}
.ws35{word-spacing:28.692000px;}
.ws5d{word-spacing:28.763730px;}
.ws49{word-spacing:28.835460px;}
.ws78{word-spacing:28.978920px;}
.ws69{word-spacing:29.050650px;}
.ws6a{word-spacing:29.194110px;}
.wsb{word-spacing:29.388846px;}
.ws1d{word-spacing:29.696220px;}
.ws32{word-spacing:29.911410px;}
.ws1a{word-spacing:29.983140px;}
.wsaf{word-spacing:30.054870px;}
.wsac{word-spacing:30.270060px;}
.ws38{word-spacing:30.485250px;}
.ws7f{word-spacing:30.628710px;}
.ws16{word-spacing:30.700440px;}
.ws84{word-spacing:30.915630px;}
.wsc7{word-spacing:31.202550px;}
.ws7b{word-spacing:31.274280px;}
.ws95{word-spacing:31.346010px;}
.ws5a{word-spacing:31.489470px;}
.wsba{word-spacing:31.704660px;}
.ws3d{word-spacing:32.135040px;}
.ws6f{word-spacing:32.421960px;}
.ws5{word-spacing:32.450652px;}
.wsb7{word-spacing:32.493690px;}
.ws4f{word-spacing:32.565420px;}
.wsb0{word-spacing:32.708880px;}
.ws2e{word-spacing:32.780610px;}
.wsa{word-spacing:32.792454px;}
.ws70{word-spacing:33.067530px;}
.ws8d{word-spacing:33.641370px;}
.ws8e{word-spacing:33.713100px;}
.wsbf{word-spacing:33.928290px;}
.ws99{word-spacing:34.000020px;}
.ws94{word-spacing:34.430400px;}
.ws75{word-spacing:34.502130px;}
.wsa2{word-spacing:34.702974px;}
.wsa0{word-spacing:34.946856px;}
.ws8c{word-spacing:34.997067px;}
.ws71{word-spacing:35.004240px;}
.ws15{word-spacing:35.291160px;}
.wsa7{word-spacing:36.080190px;}
.wsab{word-spacing:36.295380px;}
.wsa6{word-spacing:36.654030px;}
.ws7{word-spacing:37.317378px;}
.ws98{word-spacing:37.514790px;}
.ws37{word-spacing:38.527170px;}
.wsa1{word-spacing:38.630460px;}
.ws3b{word-spacing:39.293694px;}
.ws8f{word-spacing:40.886100px;}
.wsa8{word-spacing:44.042220px;}
.ws4{word-spacing:46.615728px;}
.ws3{word-spacing:46.739706px;}
.wsb1{word-spacing:47.485260px;}
.ws9e{word-spacing:47.556990px;}
.ws6e{word-spacing:58.402566px;}
.wsad{word-spacing:58.459950px;}
.ws8a{word-spacing:71.658270px;}
.ws86{word-spacing:74.591820px;}
.ws89{word-spacing:74.668320px;}
.ws88{word-spacing:75.047340px;}
.ws8b{word-spacing:99.417780px;}
.ws14{word-spacing:116.097960px;}
._1b{margin-left:-36.451761px;}
._3b{margin-left:-34.799673px;}
._3c{margin-left:-31.966824px;}
._3d{margin-left:-30.253959px;}
._15{margin-left:-29.142070px;}
._21{margin-left:-22.305519px;}
._7{margin-left:-9.794262px;}
._3{margin-left:-8.642922px;}
._9{margin-left:-6.972156px;}
._14{margin-left:-5.881860px;}
._0{margin-left:-4.483350px;}
._25{margin-left:-3.460884px;}
._1{margin-left:-2.391120px;}
._f{margin-left:-1.274304px;}
._c{width:1.832712px;}
._8{width:3.223428px;}
._11{width:4.590720px;}
._5{width:6.446856px;}
._20{width:7.899144px;}
._18{width:11.752578px;}
._19{width:18.745560px;}
._22{width:20.311404px;}
._2a{width:21.351870px;}
._29{width:23.044698px;}
._1d{width:24.436260px;}
._e{width:25.559538px;}
._16{width:26.840322px;}
._40{width:27.876246px;}
._10{width:29.127030px;}
._1a{width:30.659934px;}
._b{width:32.303598px;}
._17{width:34.174683px;}
._a{width:35.541522px;}
._24{width:37.383708px;}
._3e{width:39.541074px;}
._1f{width:40.630383px;}
._28{width:42.077058px;}
._d{width:43.265094px;}
._3a{width:45.118170px;}
._1c{width:47.628720px;}
._6{width:49.502760px;}
._13{width:51.693660px;}
._12{width:53.046846px;}
._2b{width:54.116688px;}
._23{width:56.460108px;}
._27{width:58.803168px;}
._2{width:60.908736px;}
._39{width:64.448922px;}
._26{width:66.431586px;}
._2c{width:71.730000px;}
._2d{width:76.088580px;}
._3f{width:79.027938px;}
._37{width:86.938440px;}
._35{width:93.535920px;}
._2e{width:99.489510px;}
._1e{width:116.201250px;}
._32{width:117.995850px;}
._34{width:122.140140px;}
._31{width:123.683430px;}
._41{width:170.805966px;}
._38{width:189.668766px;}
._36{width:199.301607px;}
._4{width:202.622904px;}
._33{width:206.008560px;}
._30{width:224.873550px;}
._2f{width:234.423990px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.844000px;}
.fs6{font-size:47.820000px;}
.fs0{font-size:59.778000px;}
.fs4{font-size:65.454000px;}
.fs2{font-size:71.730000px;}
.fs3{font-size:86.076000px;}
.fs5{font-size:103.290000px;}
.fs1{font-size:123.978000px;}
.y0{bottom:0.000000px;}
.y75{bottom:68.028442px;}
.y27{bottom:68.080500px;}
.y50{bottom:68.080545px;}
.y9a{bottom:68.091928px;}
.y96{bottom:68.097843px;}
.yd6{bottom:112.910625px;}
.y4f{bottom:112.913588px;}
.y74{bottom:114.319397px;}
.y26{bottom:118.475083px;}
.yd5{bottom:134.578465px;}
.y4e{bottom:134.581428px;}
.y73{bottom:135.987237px;}
.y95{bottom:137.595247px;}
.yb6{bottom:139.258991px;}
.y25{bottom:141.831000px;}
.y4d{bottom:156.249268px;}
.y72{bottom:157.655077px;}
.y94{bottom:159.263086px;}
.yb5{bottom:160.926831px;}
.y24{bottom:165.101942px;}
.yd4{bottom:170.339456px;}
.y4c{bottom:177.917107px;}
.y71{bottom:179.322917px;}
.y23{bottom:186.769782px;}
.yd3{bottom:192.007296px;}
.y93{bottom:195.874078px;}
.yb4{bottom:197.537823px;}
.y4b{bottom:199.597160px;}
.y70{bottom:200.990756px;}
.y22{bottom:208.437622px;}
.yd2{bottom:213.675136px;}
.y92{bottom:217.541918px;}
.y4a{bottom:218.578500px;}
.yb3{bottom:219.205663px;}
.y49{bottom:221.264660px;}
.y6f{bottom:222.658596px;}
.y21{bottom:230.105461px;}
.y91{bottom:239.209758px;}
.y48{bottom:240.246000px;}
.y47{bottom:242.931602px;}
.yd1{bottom:249.436127px;}
.y20{bottom:251.773301px;}
.yb2{bottom:255.816655px;}
.y6e{bottom:255.909037px;}
.y90{bottom:260.890150px;}
.y46{bottom:264.599442px;}
.yd0{bottom:271.103967px;}
.y1f{bottom:273.441141px;}
.yb1{bottom:277.484494px;}
.y6d{bottom:277.589430px;}
.y45{bottom:286.267282px;}
.y1e{bottom:295.108981px;}
.y8f{bottom:297.501142px;}
.yb0{bottom:299.152334px;}
.y6c{bottom:299.269823px;}
.ycf{bottom:306.852406px;}
.y44{bottom:307.935122px;}
.y1d{bottom:316.776820px;}
.y8e{bottom:319.168982px;}
.y6b{bottom:320.950215px;}
.yce{bottom:328.520245px;}
.y43{bottom:329.602961px;}
.yaf{bottom:335.763326px;}
.y1c{bottom:338.444660px;}
.y6a{bottom:342.630607px;}
.y42{bottom:351.270801px;}
.y8d{bottom:355.779974px;}
.yae{bottom:357.431166px;}
.y1b{bottom:360.112500px;}
.ycd{bottom:364.281237px;}
.y69{bottom:364.310660px;}
.y8c{bottom:377.447814px;}
.ycc{bottom:385.949077px;}
.y68{bottom:385.987302px;}
.yad{bottom:394.042158px;}
.y41{bottom:396.035701px;}
.y8b{bottom:399.115654px;}
.y67{bottom:407.655142px;}
.y1a{bottom:411.129000px;}
.yac{bottom:415.722550px;}
.y40{bottom:417.703540px;}
.ycb{bottom:421.710068px;}
.y66{bottom:429.322982px;}
.y8a{bottom:435.726646px;}
.yab{bottom:437.390390px;}
.y3f{bottom:439.371380px;}
.yca{bottom:443.377908px;}
.y65{bottom:450.990821px;}
.y89{bottom:457.394485px;}
.yaa{bottom:459.058230px;}
.y3e{bottom:461.039220px;}
.y64{bottom:472.658661px;}
.y88{bottom:479.062325px;}
.yc9{bottom:479.126347px;}
.y19{bottom:482.597576px;}
.ye6{bottom:485.761372px;}
.y63{bottom:494.326501px;}
.ya9{bottom:495.669222px;}
.y3d{bottom:496.854009px;}
.yc8{bottom:500.794186px;}
.y18{bottom:502.929225px;}
.y87{bottom:515.673317px;}
.y62{bottom:515.994340px;}
.ye5{bottom:516.406221px;}
.ya8{bottom:517.337062px;}
.y3c{bottom:518.521849px;}
.y17{bottom:523.260874px;}
.yc7{bottom:536.555178px;}
.y86{bottom:537.341157px;}
.y3b{bottom:540.202241px;}
.y16{bottom:543.592522px;}
.ye4{bottom:547.036724px;}
.y61{bottom:549.244782px;}
.y9{bottom:553.163718px;}
.ya7{bottom:553.948054px;}
.yc6{bottom:558.223018px;}
.y85{bottom:559.008997px;}
.y3a{bottom:561.870081px;}
.y15{bottom:563.924171px;}
.y60{bottom:570.912622px;}
.ya6{bottom:575.615893px;}
.ye3{bottom:577.667227px;}
.y14{bottom:584.255820px;}
.y8{bottom:591.934500px;}
.y5f{bottom:592.580461px;}
.yc5{bottom:593.984009px;}
.y84{bottom:595.619989px;}
.y13{bottom:604.572741px;}
.y39{bottom:606.634981px;}
.ya5{bottom:612.226886px;}
.y5e{bottom:614.248301px;}
.yc4{bottom:615.651849px;}
.y83{bottom:617.287828px;}
.y12{bottom:624.889663px;}
.y38{bottom:628.302821px;}
.y7{bottom:631.894500px;}
.ya4{bottom:633.894725px;}
.y5d{bottom:635.916141px;}
.y82{bottom:638.955668px;}
.y11{bottom:645.206585px;}
.ye2{bottom:648.285412px;}
.y37{bottom:649.970660px;}
.yc3{bottom:651.400288px;}
.y5c{bottom:657.583981px;}
.y10{bottom:665.523506px;}
.y6{bottom:666.614289px;}
.ya3{bottom:670.505717px;}
.y36{bottom:671.638500px;}
.yc2{bottom:673.068127px;}
.y81{bottom:675.566660px;}
.ye1{bottom:678.456844px;}
.y5b{bottom:679.251821px;}
.yf{bottom:685.840428px;}
.ya2{bottom:692.173557px;}
.y80{bottom:697.234500px;}
.ye0{bottom:700.124683px;}
.y5a{bottom:700.919660px;}
.y5{bottom:703.968860px;}
.yc1{bottom:708.829119px;}
.y35{bottom:721.615500px;}
.ydf{bottom:721.792523px;}
.y59{bottom:722.587500px;}
.ye{bottom:726.273000px;}
.ya1{bottom:728.784549px;}
.yc0{bottom:730.496959px;}
.y4{bottom:741.338929px;}
.yde{bottom:743.460363px;}
.y7f{bottom:744.133500px;}
.ya0{bottom:750.452389px;}
.ybf{bottom:752.164799px;}
.ydd{bottom:765.128203px;}
.y58{bottom:773.590500px;}
.y3{bottom:778.693500px;}
.ybe{bottom:787.925790px;}
.y34{bottom:791.662923px;}
.y9f{bottom:803.141660px;}
.ybd{bottom:809.593630px;}
.y33{bottom:813.330763px;}
.y7e{bottom:815.616648px;}
.yd{bottom:823.365000px;}
.y9e{bottom:824.809500px;}
.ybc{bottom:831.261469px;}
.y32{bottom:834.998603px;}
.y7d{bottom:837.284488px;}
.y57{bottom:845.058735px;}
.ydc{bottom:855.158319px;}
.y31{bottom:856.666442px;}
.y7c{bottom:858.952328px;}
.y56{bottom:866.726575px;}
.ybb{bottom:867.009908px;}
.yc{bottom:877.014000px;}
.y30{bottom:878.334282px;}
.y55{bottom:888.406967px;}
.ydb{bottom:891.783657px;}
.y2f{bottom:900.002122px;}
.y99{bottom:906.714257px;}
.y54{bottom:910.087360px;}
.yda{bottom:913.451497px;}
.yba{bottom:915.164051px;}
.y2e{bottom:921.669961px;}
.y98{bottom:928.394649px;}
.y7b{bottom:929.690660px;}
.y53{bottom:931.755200px;}
.yd9{bottom:935.119337px;}
.yb9{bottom:936.831890px;}
.y9d{bottom:939.424500px;}
.yb{bottom:941.840929px;}
.y2d{bottom:943.337801px;}
.y97{bottom:950.062489px;}
.y7a{bottom:951.358500px;}
.y52{bottom:953.423039px;}
.y2c{bottom:965.005641px;}
.yd8{bottom:971.730329px;}
.yb8{bottom:972.580329px;}
.y51{bottom:975.090879px;}
.ya{bottom:979.195500px;}
.y9c{bottom:982.354257px;}
.y2b{bottom:986.673481px;}
.y79{bottom:987.349160px;}
.yd7{bottom:993.398168px;}
.yb7{bottom:994.248169px;}
.y9b{bottom:1006.803000px;}
.y2a{bottom:1008.341321px;}
.y78{bottom:1009.016660px;}
.y29{bottom:1030.009160px;}
.y77{bottom:1030.684500px;}
.y2{bottom:1042.360892px;}
.y28{bottom:1051.677000px;}
.y76{bottom:1052.946000px;}
.y1{bottom:1061.046000px;}
.hb{height:21.093048px;}
.hc{height:44.833500px;}
.h8{height:46.079616px;}
.h9{height:46.865064px;}
.h12{height:49.780620px;}
.h11{height:51.215220px;}
.h3{height:53.797500px;}
.hf{height:53.798859px;}
.hd{height:53.801091px;}
.h10{height:57.355308px;}
.h4{height:61.630416px;}
.h1{height:63.783126px;}
.he{height:64.543500px;}
.h5{height:64.557000px;}
.h7{height:76.099500px;}
.ha{height:77.467500px;}
.h6{height:87.652446px;}
.h2{height:88.768248px;}
.h0{height:1252.500000px;}
.w0{width:885.000000px;}
.x0{left:0.000000px;}
.xf{left:154.422000px;}
.x15{left:163.386000px;}
.x17{left:167.874442px;}
.x8{left:172.620000px;}
.x10{left:174.442500px;}
.x16{left:176.643000px;}
.x12{left:180.571171px;}
.x20{left:182.099020px;}
.x9{left:183.257312px;}
.x18{left:190.506404px;}
.xe{left:198.313807px;}
.x3{left:220.626202px;}
.xd{left:222.855785px;}
.x1d{left:224.163000px;}
.x4{left:235.760816px;}
.x2{left:268.537500px;}
.x1e{left:270.265500px;}
.x1b{left:272.465102px;}
.x6{left:275.463000px;}
.x13{left:331.501500px;}
.xa{left:334.998000px;}
.x1c{left:374.877000px;}
.x7{left:386.066356px;}
.xb{left:406.251000px;}
.x5{left:438.543000px;}
.x1f{left:444.169955px;}
.xc{left:447.939000px;}
.x11{left:479.556000px;}
.x19{left:484.830734px;}
.x1a{left:491.847721px;}
.x14{left:558.288000px;}
.x1{left:716.548500px;}
@media print{
.v3{vertical-align:-19.296000pt;}
.v2{vertical-align:-9.589128pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.330336pt;}
.v4{vertical-align:9.552000pt;}
.v1{vertical-align:27.792000pt;}
.ls21{letter-spacing:-3.188000pt;}
.ls1{letter-spacing:-1.721520pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.012752pt;}
.ls38{letter-spacing:0.019128pt;}
.ls1c{letter-spacing:0.022616pt;}
.ls4{letter-spacing:0.027096pt;}
.ls2d{letter-spacing:0.042507pt;}
.ls10{letter-spacing:0.043696pt;}
.ls28{letter-spacing:0.044632pt;}
.ls14{letter-spacing:0.049224pt;}
.ls3{letter-spacing:0.174544pt;}
.lse{letter-spacing:0.369808pt;}
.ls2e{letter-spacing:0.552587pt;}
.ls12{letter-spacing:2.631200pt;}
.ls5{letter-spacing:2.673120pt;}
.ls16{letter-spacing:3.602440pt;}
.ls1f{letter-spacing:3.710832pt;}
.ls2f{letter-spacing:6.631040pt;}
.ls6{letter-spacing:8.671360pt;}
.ls23{letter-spacing:10.584160pt;}
.ls24{letter-spacing:11.094240pt;}
.ls11{letter-spacing:13.236960pt;}
.ls1a{letter-spacing:13.332216pt;}
.ls27{letter-spacing:15.251392pt;}
.ls26{letter-spacing:15.321528pt;}
.ls30{letter-spacing:16.832640pt;}
.ls17{letter-spacing:17.699776pt;}
.lsd{letter-spacing:17.891056pt;}
.ls18{letter-spacing:18.126968pt;}
.ls2c{letter-spacing:18.228984pt;}
.lsc{letter-spacing:18.464896pt;}
.ls19{letter-spacing:18.490133pt;}
.ls29{letter-spacing:19.210888pt;}
.ls35{letter-spacing:19.230016pt;}
.ls2a{letter-spacing:19.242768pt;}
.ls31{letter-spacing:19.759224pt;}
.lsa{letter-spacing:19.956880pt;}
.ls22{letter-spacing:20.211920pt;}
.ls8{letter-spacing:20.773008pt;}
.ls37{letter-spacing:21.008920pt;}
.ls2b{letter-spacing:21.200200pt;}
.ls7{letter-spacing:22.048208pt;}
.ls1e{letter-spacing:22.067336pt;}
.ls13{letter-spacing:22.284120pt;}
.ls25{letter-spacing:22.832456pt;}
.lsf{letter-spacing:23.871744pt;}
.ls34{letter-spacing:23.986512pt;}
.ls1b{letter-spacing:25.498133pt;}
.ls1d{letter-spacing:26.746133pt;}
.ls20{letter-spacing:26.893968pt;}
.ls15{letter-spacing:27.370133pt;}
.ls32{letter-spacing:28.449712pt;}
.ls9{letter-spacing:31.197768pt;}
.ls33{letter-spacing:31.618584pt;}
.ls36{letter-spacing:42.126232pt;}
.ls2{letter-spacing:215.832000pt;}
.ws51{word-spacing:-20.275680pt;}
.ws1{word-spacing:-14.718672pt;}
.ws24{word-spacing:-8.735120pt;}
.ws79{word-spacing:-6.694800pt;}
.ws77{word-spacing:-0.595093pt;}
.ws2{word-spacing:-0.110203pt;}
.ws74{word-spacing:-0.085013pt;}
.ws25{word-spacing:-0.063760pt;}
.ws29{word-spacing:-0.053136pt;}
.ws7a{word-spacing:-0.042507pt;}
.ws0{word-spacing:0.000000pt;}
.ws73{word-spacing:10.278112pt;}
.ws76{word-spacing:10.309992pt;}
.ws87{word-spacing:10.316368pt;}
.ws85{word-spacing:10.329120pt;}
.ws9{word-spacing:12.858075pt;}
.ws10{word-spacing:13.207163pt;}
.wsbc{word-spacing:14.027200pt;}
.wsbe{word-spacing:14.601040pt;}
.wse{word-spacing:14.778059pt;}
.wsb9{word-spacing:14.856080pt;}
.ws1f{word-spacing:14.919840pt;}
.ws2f{word-spacing:14.983600pt;}
.ws19{word-spacing:15.174880pt;}
.wsd{word-spacing:15.359872pt;}
.ws20{word-spacing:15.621200pt;}
.ws1e{word-spacing:15.748720pt;}
.ws6b{word-spacing:15.812480pt;}
.wsbb{word-spacing:16.067520pt;}
.ws17{word-spacing:16.258800pt;}
.ws22{word-spacing:16.641360pt;}
.wsb8{word-spacing:16.768880pt;}
.ws36{word-spacing:16.832640pt;}
.ws65{word-spacing:17.023920pt;}
.ws97{word-spacing:17.151440pt;}
.wsc5{word-spacing:17.215200pt;}
.ws21{word-spacing:17.534000pt;}
.ws90{word-spacing:17.661520pt;}
.ws28{word-spacing:17.694288pt;}
.ws46{word-spacing:17.706152pt;}
.ws6c{word-spacing:17.725280pt;}
.ws2a{word-spacing:17.747424pt;}
.ws34{word-spacing:17.852800pt;}
.ws7d{word-spacing:17.916560pt;}
.ws83{word-spacing:17.980320pt;}
.ws33{word-spacing:18.044080pt;}
.ws6d{word-spacing:18.362880pt;}
.wsb6{word-spacing:18.490400pt;}
.ws30{word-spacing:18.681680pt;}
.ws4c{word-spacing:18.745440pt;}
.wsbd{word-spacing:18.809200pt;}
.ws27{word-spacing:18.810144pt;}
.ws96{word-spacing:18.872960pt;}
.ws93{word-spacing:18.936720pt;}
.ws9c{word-spacing:19.000480pt;}
.ws5f{word-spacing:19.128000pt;}
.ws11{word-spacing:19.316203pt;}
.ws13{word-spacing:19.374384pt;}
.wsb3{word-spacing:19.383040pt;}
.ws81{word-spacing:19.510560pt;}
.wsc6{word-spacing:19.829360pt;}
.ws44{word-spacing:19.893120pt;}
.ws9b{word-spacing:20.020640pt;}
.ws80{word-spacing:20.148160pt;}
.wsaa{word-spacing:20.275680pt;}
.ws54{word-spacing:20.326688pt;}
.ws2d{word-spacing:20.339440pt;}
.wsf{word-spacing:20.363467pt;}
.ws53{word-spacing:20.403200pt;}
.ws55{word-spacing:20.435080pt;}
.ws18{word-spacing:20.486088pt;}
.ws62{word-spacing:20.530720pt;}
.ws64{word-spacing:20.594480pt;}
.ws41{word-spacing:20.645488pt;}
.ws66{word-spacing:20.658240pt;}
.ws12{word-spacing:20.712555pt;}
.ws23{word-spacing:20.722000pt;}
.wsb2{word-spacing:20.728376pt;}
.ws60{word-spacing:20.734752pt;}
.wsc0{word-spacing:20.747504pt;}
.ws4a{word-spacing:20.785760pt;}
.ws48{word-spacing:20.913280pt;}
.wsae{word-spacing:20.977040pt;}
.ws92{word-spacing:21.040800pt;}
.ws63{word-spacing:21.104560pt;}
.ws68{word-spacing:21.295840pt;}
.ws4b{word-spacing:21.327720pt;}
.wsc3{word-spacing:21.359600pt;}
.ws58{word-spacing:21.455240pt;}
.ws72{word-spacing:21.487120pt;}
.ws57{word-spacing:21.550880pt;}
.ws2c{word-spacing:21.614640pt;}
.ws56{word-spacing:21.621016pt;}
.wsa9{word-spacing:21.805920pt;}
.ws9d{word-spacing:21.933440pt;}
.ws3a{word-spacing:21.990824pt;}
.ws3c{word-spacing:21.997200pt;}
.ws43{word-spacing:22.124720pt;}
.ws52{word-spacing:22.188480pt;}
.ws50{word-spacing:22.226736pt;}
.ws1b{word-spacing:22.252240pt;}
.ws67{word-spacing:22.316000pt;}
.ws5e{word-spacing:22.379760pt;}
.ws9f{word-spacing:22.443520pt;}
.ws91{word-spacing:22.634800pt;}
.ws59{word-spacing:22.762320pt;}
.wsc2{word-spacing:22.826080pt;}
.ws7e{word-spacing:22.953600pt;}
.ws5b{word-spacing:22.966352pt;}
.ws5c{word-spacing:23.081120pt;}
.wsc4{word-spacing:23.208640pt;}
.ws3e{word-spacing:23.336160pt;}
.ws26{word-spacing:23.393813pt;}
.wsa4{word-spacing:23.399920pt;}
.ws61{word-spacing:23.527440pt;}
.wsc{word-spacing:23.563440pt;}
.ws39{word-spacing:23.591200pt;}
.wsb5{word-spacing:23.654960pt;}
.ws7c{word-spacing:23.718720pt;}
.ws3f{word-spacing:23.782480pt;}
.ws4e{word-spacing:24.037520pt;}
.ws47{word-spacing:24.101280pt;}
.wsc1{word-spacing:24.152288pt;}
.ws45{word-spacing:24.165040pt;}
.ws82{word-spacing:24.228800pt;}
.ws1c{word-spacing:24.292560pt;}
.ws9a{word-spacing:24.483840pt;}
.ws31{word-spacing:24.547600pt;}
.wsa3{word-spacing:24.675120pt;}
.wsa5{word-spacing:24.802640pt;}
.ws8{word-spacing:24.866400pt;}
.ws2b{word-spacing:24.930160pt;}
.ws6{word-spacing:24.942912pt;}
.wsb4{word-spacing:24.993920pt;}
.ws4d{word-spacing:25.057680pt;}
.ws42{word-spacing:25.440240pt;}
.ws40{word-spacing:25.491248pt;}
.ws35{word-spacing:25.504000pt;}
.ws5d{word-spacing:25.567760pt;}
.ws49{word-spacing:25.631520pt;}
.ws78{word-spacing:25.759040pt;}
.ws69{word-spacing:25.822800pt;}
.ws6a{word-spacing:25.950320pt;}
.wsb{word-spacing:26.123419pt;}
.ws1d{word-spacing:26.396640pt;}
.ws32{word-spacing:26.587920pt;}
.ws1a{word-spacing:26.651680pt;}
.wsaf{word-spacing:26.715440pt;}
.wsac{word-spacing:26.906720pt;}
.ws38{word-spacing:27.098000pt;}
.ws7f{word-spacing:27.225520pt;}
.ws16{word-spacing:27.289280pt;}
.ws84{word-spacing:27.480560pt;}
.wsc7{word-spacing:27.735600pt;}
.ws7b{word-spacing:27.799360pt;}
.ws95{word-spacing:27.863120pt;}
.ws5a{word-spacing:27.990640pt;}
.wsba{word-spacing:28.181920pt;}
.ws3d{word-spacing:28.564480pt;}
.ws6f{word-spacing:28.819520pt;}
.ws5{word-spacing:28.845024pt;}
.wsb7{word-spacing:28.883280pt;}
.ws4f{word-spacing:28.947040pt;}
.wsb0{word-spacing:29.074560pt;}
.ws2e{word-spacing:29.138320pt;}
.wsa{word-spacing:29.148848pt;}
.ws70{word-spacing:29.393360pt;}
.ws8d{word-spacing:29.903440pt;}
.ws8e{word-spacing:29.967200pt;}
.wsbf{word-spacing:30.158480pt;}
.ws99{word-spacing:30.222240pt;}
.ws94{word-spacing:30.604800pt;}
.ws75{word-spacing:30.668560pt;}
.wsa2{word-spacing:30.847088pt;}
.wsa0{word-spacing:31.063872pt;}
.ws8c{word-spacing:31.108504pt;}
.ws71{word-spacing:31.114880pt;}
.ws15{word-spacing:31.369920pt;}
.wsa7{word-spacing:32.071280pt;}
.wsab{word-spacing:32.262560pt;}
.wsa6{word-spacing:32.581360pt;}
.ws7{word-spacing:33.171003pt;}
.ws98{word-spacing:33.346480pt;}
.ws37{word-spacing:34.246373pt;}
.wsa1{word-spacing:34.338187pt;}
.ws3b{word-spacing:34.927728pt;}
.ws8f{word-spacing:36.343200pt;}
.wsa8{word-spacing:39.148640pt;}
.ws4{word-spacing:41.436203pt;}
.ws3{word-spacing:41.546405pt;}
.wsb1{word-spacing:42.209120pt;}
.ws9e{word-spacing:42.272880pt;}
.ws6e{word-spacing:51.913392pt;}
.wsad{word-spacing:51.964400pt;}
.ws8a{word-spacing:63.696240pt;}
.ws86{word-spacing:66.303840pt;}
.ws89{word-spacing:66.371840pt;}
.ws88{word-spacing:66.708747pt;}
.ws8b{word-spacing:88.371360pt;}
.ws14{word-spacing:103.198187pt;}
._1b{margin-left:-32.401565pt;}
._3b{margin-left:-30.933043pt;}
._3c{margin-left:-28.414955pt;}
._3d{margin-left:-26.892408pt;}
._15{margin-left:-25.904062pt;}
._21{margin-left:-19.827128pt;}
._7{margin-left:-8.706011pt;}
._3{margin-left:-7.682597pt;}
._9{margin-left:-6.197472pt;}
._14{margin-left:-5.228320pt;}
._0{margin-left:-3.985200pt;}
._25{margin-left:-3.076341pt;}
._1{margin-left:-2.125440pt;}
._f{margin-left:-1.132715pt;}
._c{width:1.629077pt;}
._8{width:2.865269pt;}
._11{width:4.080640pt;}
._5{width:5.730539pt;}
._20{width:7.021461pt;}
._18{width:10.446736pt;}
._19{width:16.662720pt;}
._22{width:18.054581pt;}
._2a{width:18.979440pt;}
._29{width:20.484176pt;}
._1d{width:21.721120pt;}
._e{width:22.719589pt;}
._16{width:23.858064pt;}
._40{width:24.778885pt;}
._10{width:25.890693pt;}
._1a{width:27.253275pt;}
._b{width:28.714309pt;}
._17{width:30.377496pt;}
._a{width:31.592464pt;}
._24{width:33.229963pt;}
._3e{width:35.147621pt;}
._1f{width:36.115896pt;}
._28{width:37.401829pt;}
._d{width:38.457861pt;}
._3a{width:40.105040pt;}
._1c{width:42.336640pt;}
._6{width:44.002453pt;}
._13{width:45.949920pt;}
._12{width:47.152752pt;}
._2b{width:48.103723pt;}
._23{width:50.186763pt;}
._27{width:52.269483pt;}
._2{width:54.141099pt;}
._39{width:57.287931pt;}
._26{width:59.050299pt;}
._2c{width:63.760000pt;}
._2d{width:67.634293pt;}
._3f{width:70.247056pt;}
._37{width:77.278613pt;}
._35{width:83.143040pt;}
._2e{width:88.435120pt;}
._1e{width:103.290000pt;}
._32{width:104.885200pt;}
._34{width:108.569013pt;}
._31{width:109.940827pt;}
._41{width:151.827525pt;}
._38{width:168.594459pt;}
._36{width:177.156984pt;}
._4{width:180.109248pt;}
._33{width:183.118720pt;}
._30{width:199.887600pt;}
._2f{width:208.376880pt;}
.fs7{font-size:37.194667pt;}
.fs6{font-size:42.506667pt;}
.fs0{font-size:53.136000pt;}
.fs4{font-size:58.181333pt;}
.fs2{font-size:63.760000pt;}
.fs3{font-size:76.512000pt;}
.fs5{font-size:91.813333pt;}
.fs1{font-size:110.202667pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:60.469726pt;}
.y27{bottom:60.516000pt;}
.y50{bottom:60.516040pt;}
.y9a{bottom:60.526158pt;}
.y96{bottom:60.531416pt;}
.yd6{bottom:100.365000pt;}
.y4f{bottom:100.367634pt;}
.y74{bottom:101.617242pt;}
.y26{bottom:105.311185pt;}
.yd5{bottom:119.625302pt;}
.y4e{bottom:119.627936pt;}
.y73{bottom:120.877544pt;}
.y95{bottom:122.306886pt;}
.yb6{bottom:123.785770pt;}
.y25{bottom:126.072000pt;}
.y4d{bottom:138.888238pt;}
.y72{bottom:140.137846pt;}
.y94{bottom:141.567188pt;}
.yb5{bottom:143.046072pt;}
.y24{bottom:146.757282pt;}
.yd4{bottom:151.412850pt;}
.y4c{bottom:158.148540pt;}
.y71{bottom:159.398148pt;}
.y23{bottom:166.017584pt;}
.yd3{bottom:170.673152pt;}
.y93{bottom:174.110292pt;}
.yb4{bottom:175.589176pt;}
.y4b{bottom:177.419698pt;}
.y70{bottom:178.658450pt;}
.y22{bottom:185.277886pt;}
.yd2{bottom:189.933454pt;}
.y92{bottom:193.370594pt;}
.y4a{bottom:194.292000pt;}
.yb3{bottom:194.849478pt;}
.y49{bottom:196.679698pt;}
.y6f{bottom:197.918752pt;}
.y21{bottom:204.538188pt;}
.y91{bottom:212.630896pt;}
.y48{bottom:213.552000pt;}
.y47{bottom:215.939202pt;}
.yd1{bottom:221.721002pt;}
.y20{bottom:223.798490pt;}
.yb2{bottom:227.392582pt;}
.y6e{bottom:227.474700pt;}
.y90{bottom:231.902356pt;}
.y46{bottom:235.199504pt;}
.yd0{bottom:240.981304pt;}
.y1f{bottom:243.058792pt;}
.yb1{bottom:246.652884pt;}
.y6d{bottom:246.746160pt;}
.y45{bottom:254.459806pt;}
.y1e{bottom:262.319094pt;}
.y8f{bottom:264.445460pt;}
.yb0{bottom:265.913186pt;}
.y6c{bottom:266.017620pt;}
.ycf{bottom:272.757694pt;}
.y44{bottom:273.720108pt;}
.y1d{bottom:281.579396pt;}
.y8e{bottom:283.705762pt;}
.y6b{bottom:285.289080pt;}
.yce{bottom:292.017996pt;}
.y43{bottom:292.980410pt;}
.yaf{bottom:298.456290pt;}
.y1c{bottom:300.839698pt;}
.y6a{bottom:304.560540pt;}
.y42{bottom:312.240712pt;}
.y8d{bottom:316.248866pt;}
.yae{bottom:317.716592pt;}
.y1b{bottom:320.100000pt;}
.ycd{bottom:323.805544pt;}
.y69{bottom:323.831698pt;}
.y8c{bottom:335.509168pt;}
.ycc{bottom:343.065846pt;}
.y68{bottom:343.099824pt;}
.yad{bottom:350.259696pt;}
.y41{bottom:352.031734pt;}
.y8b{bottom:354.769470pt;}
.y67{bottom:362.360126pt;}
.y1a{bottom:365.448000pt;}
.yac{bottom:369.531156pt;}
.y40{bottom:371.292036pt;}
.ycb{bottom:374.853394pt;}
.y66{bottom:381.620428pt;}
.y8a{bottom:387.312574pt;}
.yab{bottom:388.791458pt;}
.y3f{bottom:390.552338pt;}
.yca{bottom:394.113696pt;}
.y65{bottom:400.880730pt;}
.y89{bottom:406.572876pt;}
.yaa{bottom:408.051760pt;}
.y3e{bottom:409.812640pt;}
.y64{bottom:420.141032pt;}
.y88{bottom:425.833178pt;}
.yc9{bottom:425.890086pt;}
.y19{bottom:428.975623pt;}
.ye6{bottom:431.787886pt;}
.y63{bottom:439.401334pt;}
.ya9{bottom:440.594864pt;}
.y3d{bottom:441.648008pt;}
.yc8{bottom:445.150388pt;}
.y18{bottom:447.048200pt;}
.y87{bottom:458.376282pt;}
.y62{bottom:458.661636pt;}
.ye5{bottom:459.027752pt;}
.ya8{bottom:459.855166pt;}
.y3c{bottom:460.908310pt;}
.y17{bottom:465.120777pt;}
.yc7{bottom:476.937936pt;}
.y86{bottom:477.636584pt;}
.y3b{bottom:480.179770pt;}
.y16{bottom:483.193353pt;}
.ye4{bottom:486.254866pt;}
.y61{bottom:488.217584pt;}
.y9{bottom:491.701082pt;}
.ya7{bottom:492.398270pt;}
.yc6{bottom:496.198238pt;}
.y85{bottom:496.896886pt;}
.y3a{bottom:499.440072pt;}
.y15{bottom:501.265930pt;}
.y60{bottom:507.477886pt;}
.ya6{bottom:511.658572pt;}
.ye3{bottom:513.481980pt;}
.y14{bottom:519.338507pt;}
.y8{bottom:526.164000pt;}
.y5f{bottom:526.738188pt;}
.yc5{bottom:527.985786pt;}
.y84{bottom:529.439990pt;}
.y13{bottom:537.397992pt;}
.y39{bottom:539.231094pt;}
.ya5{bottom:544.201676pt;}
.y5e{bottom:545.998490pt;}
.yc4{bottom:547.246088pt;}
.y83{bottom:548.700292pt;}
.y12{bottom:555.457478pt;}
.y38{bottom:558.491396pt;}
.y7{bottom:561.684000pt;}
.ya4{bottom:563.461978pt;}
.y5d{bottom:565.258792pt;}
.y82{bottom:567.960594pt;}
.y11{bottom:573.516964pt;}
.ye2{bottom:576.253700pt;}
.y37{bottom:577.751698pt;}
.yc3{bottom:579.022478pt;}
.y5c{bottom:584.519094pt;}
.y10{bottom:591.576450pt;}
.y6{bottom:592.546034pt;}
.ya3{bottom:596.005082pt;}
.y36{bottom:597.012000pt;}
.yc2{bottom:598.282780pt;}
.y81{bottom:600.503698pt;}
.ye1{bottom:603.072750pt;}
.y5b{bottom:603.779396pt;}
.yf{bottom:609.635936pt;}
.ya2{bottom:615.265384pt;}
.y80{bottom:619.764000pt;}
.ye0{bottom:622.333052pt;}
.y5a{bottom:623.039698pt;}
.y5{bottom:625.750098pt;}
.yc1{bottom:630.070328pt;}
.y35{bottom:641.436000pt;}
.ydf{bottom:641.593354pt;}
.y59{bottom:642.300000pt;}
.ye{bottom:645.576000pt;}
.ya1{bottom:647.808488pt;}
.yc0{bottom:649.330630pt;}
.y4{bottom:658.967937pt;}
.yde{bottom:660.853656pt;}
.y7f{bottom:661.452000pt;}
.ya0{bottom:667.068790pt;}
.ybf{bottom:668.590932pt;}
.ydd{bottom:680.113958pt;}
.y58{bottom:687.636000pt;}
.y3{bottom:692.172000pt;}
.ybe{bottom:700.378480pt;}
.y34{bottom:703.700376pt;}
.y9f{bottom:713.903698pt;}
.ybd{bottom:719.638782pt;}
.y33{bottom:722.960678pt;}
.y7e{bottom:724.992576pt;}
.yd{bottom:731.880000pt;}
.y9e{bottom:733.164000pt;}
.ybc{bottom:738.899084pt;}
.y32{bottom:742.220980pt;}
.y7d{bottom:744.252878pt;}
.y57{bottom:751.163320pt;}
.ydc{bottom:760.140728pt;}
.y31{bottom:761.481282pt;}
.y7c{bottom:763.513180pt;}
.y56{bottom:770.423622pt;}
.ybb{bottom:770.675474pt;}
.yc{bottom:779.568000pt;}
.y30{bottom:780.741584pt;}
.y55{bottom:789.695082pt;}
.ydb{bottom:792.696584pt;}
.y2f{bottom:800.001886pt;}
.y99{bottom:805.968228pt;}
.y54{bottom:808.966542pt;}
.yda{bottom:811.956886pt;}
.yba{bottom:813.479156pt;}
.y2e{bottom:819.262188pt;}
.y98{bottom:825.239688pt;}
.y7b{bottom:826.391698pt;}
.y53{bottom:828.226844pt;}
.yd9{bottom:831.217188pt;}
.yb9{bottom:832.739458pt;}
.y9d{bottom:835.044000pt;}
.yb{bottom:837.191937pt;}
.y2d{bottom:838.522490pt;}
.y97{bottom:844.499990pt;}
.y7a{bottom:845.652000pt;}
.y52{bottom:847.487146pt;}
.y2c{bottom:857.782792pt;}
.yd8{bottom:863.760292pt;}
.yb8{bottom:864.515848pt;}
.y51{bottom:866.747448pt;}
.ya{bottom:870.396000pt;}
.y9c{bottom:873.203784pt;}
.y2b{bottom:877.043094pt;}
.y79{bottom:877.643698pt;}
.yd7{bottom:883.020594pt;}
.yb7{bottom:883.776150pt;}
.y9b{bottom:894.936000pt;}
.y2a{bottom:896.303396pt;}
.y78{bottom:896.903698pt;}
.y29{bottom:915.563698pt;}
.y77{bottom:916.164000pt;}
.y2{bottom:926.543015pt;}
.y28{bottom:934.824000pt;}
.y76{bottom:935.952000pt;}
.y1{bottom:943.152000pt;}
.hb{height:18.749376pt;}
.hc{height:39.852000pt;}
.h8{height:40.959659pt;}
.h9{height:41.657835pt;}
.h12{height:44.249440pt;}
.h11{height:45.524640pt;}
.h3{height:47.820000pt;}
.hf{height:47.821208pt;}
.hd{height:47.823192pt;}
.h10{height:50.982496pt;}
.h4{height:54.782592pt;}
.h1{height:56.696112pt;}
.he{height:57.372000pt;}
.h5{height:57.384000pt;}
.h7{height:67.644000pt;}
.ha{height:68.860000pt;}
.h6{height:77.913285pt;}
.h2{height:78.905109pt;}
.h0{height:1113.333333pt;}
.w0{width:786.666667pt;}
.x0{left:0.000000pt;}
.xf{left:137.264000pt;}
.x15{left:145.232000pt;}
.x17{left:149.221726pt;}
.x8{left:153.440000pt;}
.x10{left:155.060000pt;}
.x16{left:157.016000pt;}
.x12{left:160.507708pt;}
.x20{left:161.865796pt;}
.x9{left:162.895389pt;}
.x18{left:169.339026pt;}
.xe{left:176.278940pt;}
.x3{left:196.112179pt;}
.xd{left:198.094031pt;}
.x1d{left:199.256000pt;}
.x4{left:209.565170pt;}
.x2{left:238.700000pt;}
.x1e{left:240.236000pt;}
.x1b{left:242.191202pt;}
.x6{left:244.856000pt;}
.x13{left:294.668000pt;}
.xa{left:297.776000pt;}
.x1c{left:333.224000pt;}
.x7{left:343.170094pt;}
.xb{left:361.112000pt;}
.x5{left:389.816000pt;}
.x1f{left:394.817738pt;}
.xc{left:398.168000pt;}
.x11{left:426.272000pt;}
.x19{left:430.960652pt;}
.x1a{left:437.197974pt;}
.x14{left:496.256000pt;}
.x1{left:636.932000pt;}
}


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