
/* 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_e4b2fde229e9.woff")format("woff");}.ff1{font-family:ff1;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:ff2;src:url("fonts/font_0001_df64e9a7fb32.woff")format("woff");}.ff2{font-family:ff2;line-height:0.894000;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_3f81df9f925c.woff")format("woff");}.ff3{font-family:ff3;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:ff4;src:url("fonts/font_0003_ebfe095a5931.woff")format("woff");}.ff4{font-family:ff4;line-height:0.897000;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_f4fceaab5473.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_47b0389652ac.woff")format("woff");}.ff6{font-family:ff6;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:ff7;src:url("fonts/font_0006_a9f05a655ff3.woff")format("woff");}.ff7{font-family:ff7;line-height:0.854000;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_501a7758a3de.woff")format("woff");}.ff8{font-family:ff8;line-height:0.666000;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_a631ebc0e3b5.woff")format("woff");}.ff9{font-family:ff9;line-height:0.414000;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_3718c8280c88.woff")format("woff");}.ffa{font-family:ffa;line-height:0.910000;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_46c3952f424b.woff")format("woff");}.ffb{font-family:ffb;line-height:0.725000;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_b1a32598eab7.woff")format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url("fonts/font_0012_829c155463df.woff")format("woff");}.ffd{font-family:ffd;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:ffe;src:url("fonts/font_0013_85598a15df0b.woff")format("woff");}.ffe{font-family:ffe;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-10.134000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.748000px;}
.v5{vertical-align:27.426000px;}
.v3{vertical-align:36.912000px;}
.v7{vertical-align:62.970000px;}
.v4{vertical-align:64.482000px;}
.v6{vertical-align:67.440000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.002706px;}
.ls2{letter-spacing:2.984915px;}
.ls1{letter-spacing:22.790915px;}
.ls3{letter-spacing:23.842328px;}
.ls8{letter-spacing:25.317229px;}
.ls6{letter-spacing:25.617229px;}
.ls4{letter-spacing:27.476915px;}
.ls5{letter-spacing:27.482915px;}
.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;}
}
.ws10{word-spacing:-18.183288px;}
.ws37{word-spacing:-7.317824px;}
.ws14{word-spacing:-3.652367px;}
.ws97{word-spacing:-2.081456px;}
.ws43{word-spacing:-2.016002px;}
.ws2c{word-spacing:-1.165092px;}
.ws50{word-spacing:-1.034183px;}
.wsd{word-spacing:-0.903273px;}
.ws32{word-spacing:-0.445091px;}
.ws2{word-spacing:-0.148723px;}
.ws5{word-spacing:-0.086077px;}
.ws2e{word-spacing:-0.065455px;}
.ws60{word-spacing:-0.047821px;}
.ws7{word-spacing:0.000000px;}
.ws4f{word-spacing:0.013091px;}
.ws7b{word-spacing:0.274909px;}
.ws3d{word-spacing:0.340364px;}
.ws1a{word-spacing:0.602182px;}
.ws9{word-spacing:0.864001px;}
.ws6d{word-spacing:1.060365px;}
.ws4d{word-spacing:1.191274px;}
.ws9a{word-spacing:1.387638px;}
.ws2f{word-spacing:1.584001px;}
.ws2d{word-spacing:1.649456px;}
.ws31{word-spacing:1.714911px;}
.ws33{word-spacing:1.780365px;}
.ws28{word-spacing:2.042184px;}
.ws5c{word-spacing:2.238547px;}
.ws15{word-spacing:2.369457px;}
.ws72{word-spacing:2.500366px;}
.ws1f{word-spacing:2.631275px;}
.ws21{word-spacing:2.696730px;}
.ws8f{word-spacing:2.762184px;}
.ws89{word-spacing:2.816633px;}
.ws79{word-spacing:3.039610px;}
.ws1e{word-spacing:3.089457px;}
.ws78{word-spacing:3.093408px;}
.ws76{word-spacing:3.154912px;}
.ws4e{word-spacing:3.285821px;}
.ws8d{word-spacing:3.298956px;}
.ws8a{word-spacing:3.313553px;}
.ws8e{word-spacing:3.317215px;}
.ws8b{word-spacing:3.318600px;}
.ws88{word-spacing:3.319077px;}
.ws8c{word-spacing:3.324600px;}
.ws12{word-spacing:3.351276px;}
.ws4a{word-spacing:3.482185px;}
.ws48{word-spacing:3.514845px;}
.ws4b{word-spacing:3.547639px;}
.wsa{word-spacing:3.613094px;}
.ws4c{word-spacing:3.809458px;}
.ws2a{word-spacing:4.202185px;}
.ws2b{word-spacing:4.333095px;}
.ws16{word-spacing:4.464004px;}
.ws30{word-spacing:4.594913px;}
.ws40{word-spacing:4.660368px;}
.ws20{word-spacing:4.791277px;}
.ws68{word-spacing:4.856731px;}
.ws36{word-spacing:4.922186px;}
.ws3c{word-spacing:4.987641px;}
.wse{word-spacing:5.249459px;}
.ws3f{word-spacing:5.314914px;}
.ws35{word-spacing:5.511277px;}
.ws24{word-spacing:5.707641px;}
.wsf{word-spacing:5.773096px;}
.ws3b{word-spacing:5.838550px;}
.ws29{word-spacing:6.165823px;}
.ws58{word-spacing:6.296733px;}
.ws8{word-spacing:6.427642px;}
.ws5b{word-spacing:6.754915px;}
.ws59{word-spacing:6.820369px;}
.ws38{word-spacing:6.885824px;}
.wsc{word-spacing:7.147642px;}
.ws57{word-spacing:7.174261px;}
.ws23{word-spacing:7.213097px;}
.ws7a{word-spacing:7.278552px;}
.ws13{word-spacing:7.344006px;}
.ws55{word-spacing:7.736734px;}
.ws53{word-spacing:7.798159px;}
.ws3a{word-spacing:8.194916px;}
.ws46{word-spacing:8.391280px;}
.ws27{word-spacing:8.653098px;}
.ws34{word-spacing:8.914917px;}
.ws11{word-spacing:9.111280px;}
.ws26{word-spacing:9.373099px;}
.ws6c{word-spacing:9.438553px;}
.ws5a{word-spacing:9.831281px;}
.ws6b{word-spacing:10.485827px;}
.ws94{word-spacing:10.551282px;}
.ws96{word-spacing:10.944009px;}
.ws19{word-spacing:11.271282px;}
.ws75{word-spacing:11.402191px;}
.ws73{word-spacing:11.467646px;}
.ws25{word-spacing:12.122192px;}
.ws6a{word-spacing:12.253101px;}
.ws22{word-spacing:12.580374px;}
.ws1b{word-spacing:12.973102px;}
.ws51{word-spacing:13.365829px;}
.ws74{word-spacing:13.824012px;}
.ws70{word-spacing:14.020375px;}
.ws71{word-spacing:14.347648px;}
.ws66{word-spacing:14.740376px;}
.ws67{word-spacing:16.049468px;}
.ws42{word-spacing:16.103225px;}
.ws92{word-spacing:16.573105px;}
.ws6e{word-spacing:17.293105px;}
.ws98{word-spacing:18.130924px;}
.ws1d{word-spacing:18.227332px;}
.ws5e{word-spacing:18.236925px;}
.ws1c{word-spacing:18.237095px;}
.ws5f{word-spacing:18.242925px;}
.ws5d{word-spacing:18.243095px;}
.ws6f{word-spacing:18.405834px;}
.ws69{word-spacing:18.994925px;}
.ws91{word-spacing:20.107653px;}
.ws95{word-spacing:20.290926px;}
.ws99{word-spacing:21.272745px;}
.ws47{word-spacing:21.630230px;}
.ws61{word-spacing:22.594928px;}
.ws41{word-spacing:22.771235px;}
.ws62{word-spacing:23.053110px;}
.ws63{word-spacing:23.118565px;}
.ws18{word-spacing:23.367292px;}
.ws17{word-spacing:24.152747px;}
.ws49{word-spacing:24.669560px;}
.ws44{word-spacing:24.673895px;}
.ws54{word-spacing:24.675215px;}
.ws39{word-spacing:24.794572px;}
.ws56{word-spacing:25.290230px;}
.ws65{word-spacing:26.064022px;}
.ws90{word-spacing:26.784022px;}
.ws6{word-spacing:27.975090px;}
.ws4{word-spacing:30.040943px;}
.ws52{word-spacing:31.470575px;}
.wsb{word-spacing:31.504255px;}
.ws3{word-spacing:32.192873px;}
.ws64{word-spacing:32.544027px;}
.ws3e{word-spacing:34.003463px;}
.ws45{word-spacing:34.298210px;}
.ws93{word-spacing:35.214575px;}
.ws1{word-spacing:54.283749px;}
.ws0{word-spacing:54.432472px;}
.ws77{word-spacing:99.500141px;}
.ws85{word-spacing:151.905456px;}
.ws7f{word-spacing:151.910112px;}
.ws87{word-spacing:159.185268px;}
.ws81{word-spacing:168.275412px;}
.ws7c{word-spacing:168.388911px;}
.ws86{word-spacing:175.025125px;}
.ws83{word-spacing:180.627601px;}
.ws7e{word-spacing:182.157109px;}
.ws80{word-spacing:182.190882px;}
.ws7d{word-spacing:211.617656px;}
.ws84{word-spacing:251.546112px;}
.ws82{word-spacing:251.555119px;}
._e{margin-left:-32.122963px;}
._4{margin-left:-8.177334px;}
._15{margin-left:-6.973151px;}
._1d{margin-left:-5.634363px;}
._1{margin-left:-4.610401px;}
._3{margin-left:-2.668393px;}
._7{margin-left:-1.534150px;}
._8{width:1.832729px;}
._5{width:3.270934px;}
._2{width:4.610401px;}
._d{width:16.544768px;}
._19{width:18.195606px;}
._f{width:19.549295px;}
._6{width:21.796382px;}
._16{width:22.828410px;}
._a{width:24.530230px;}
._1c{width:25.712751px;}
._9{width:27.264077px;}
._17{width:28.472751px;}
._13{width:30.128834px;}
._14{width:31.287299px;}
._10{width:32.319327px;}
._11{width:33.360215px;}
._b{width:35.541848px;}
._4f{width:38.251220px;}
._18{width:39.851873px;}
._1a{width:43.804676px;}
._c{width:45.402181px;}
._20{width:46.981157px;}
._21{width:49.810951px;}
._24{width:51.562979px;}
._12{width:55.621165px;}
._1b{width:58.159888px;}
._23{width:59.286622px;}
._22{width:62.445146px;}
._0{width:72.725351px;}
._1e{width:86.007344px;}
._1f{width:88.348465px;}
._41{width:97.069172px;}
._40{width:111.393118px;}
._4c{width:115.087994px;}
._3b{width:119.701440px;}
._33{width:141.274598px;}
._2c{width:150.581722px;}
._38{width:154.993190px;}
._2e{width:159.350861px;}
._3a{width:167.420621px;}
._4b{width:171.957268px;}
._4a{width:177.014053px;}
._43{width:185.573842px;}
._36{width:190.338739px;}
._3d{width:191.984963px;}
._31{width:198.031910px;}
._26{width:200.399040px;}
._39{width:226.706458px;}
._48{width:228.117145px;}
._28{width:232.678080px;}
._2a{width:234.991411px;}
._35{width:242.039002px;}
._27{width:244.083341px;}
._34{width:246.020083px;}
._4d{width:251.867606px;}
._2d{width:253.928448px;}
._3f{width:256.254759px;}
._46{width:260.638812px;}
._2f{width:262.697587px;}
._45{width:263.852092px;}
._42{width:268.942503px;}
._44{width:269.982586px;}
._25{width:272.462893px;}
._47{width:274.397492px;}
._29{width:276.362381px;}
._2b{width:278.621914px;}
._4e{width:291.848859px;}
._37{width:293.450427px;}
._3c{width:300.879982px;}
._32{width:302.777395px;}
._49{width:308.749646px;}
._30{width:335.217830px;}
._3e{width:339.736896px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(167,19,36);}
.fs3{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y4e{bottom:85.039500px;}
.y72{bottom:127.558500px;}
.y71{bottom:147.883500px;}
.y9b{bottom:159.241500px;}
.y70{bottom:168.207000px;}
.y9a{bottom:175.680000px;}
.y6f{bottom:188.530500px;}
.y99{bottom:192.118500px;}
.y98{bottom:208.557000px;}
.y6e{bottom:208.854000px;}
.y97{bottom:224.995500px;}
.y6d{bottom:229.177500px;}
.y96{bottom:241.434000px;}
.y6c{bottom:249.502500px;}
.y95{bottom:257.872500px;}
.yec{bottom:262.734000px;}
.y6b{bottom:269.826000px;}
.y94{bottom:274.311000px;}
.y22{bottom:281.785500px;}
.yeb{bottom:283.057500px;}
.y6a{bottom:290.149500px;}
.y93{bottom:290.749500px;}
.y21{bottom:302.109000px;}
.y92{bottom:307.188000px;}
.yea{bottom:316.830000px;}
.y20{bottom:322.432500px;}
.y69{bottom:322.689000px;}
.y91{bottom:323.625000px;}
.ye9{bottom:337.155000px;}
.y90{bottom:340.063500px;}
.y1f{bottom:342.756000px;}
.y68{bottom:355.228500px;}
.y8f{bottom:356.502000px;}
.ye8{bottom:370.927500px;}
.y8e{bottom:372.940500px;}
.y1e{bottom:383.403000px;}
.y67{bottom:387.768000px;}
.y8d{bottom:389.379000px;}
.ye7{bottom:391.251000px;}
.y1d{bottom:403.728000px;}
.y8c{bottom:405.817500px;}
.y4d{bottom:406.704000px;}
.y66{bottom:420.307500px;}
.y8b{bottom:422.256000px;}
.y1c{bottom:424.051500px;}
.ye6{bottom:425.025000px;}
.y4c{bottom:427.029000px;}
.y8a{bottom:438.694500px;}
.y1b{bottom:444.375000px;}
.ye5{bottom:445.348500px;}
.y4b{bottom:447.352500px;}
.y65{bottom:452.847000px;}
.y89{bottom:463.348500px;}
.ye4{bottom:465.672000px;}
.y4a{bottom:467.676000px;}
.y64{bottom:473.170500px;}
.y1a{bottom:485.022000px;}
.ye3{bottom:485.997000px;}
.y49{bottom:487.999500px;}
.y88{bottom:488.335500px;}
.y63{bottom:493.494000px;}
.yda{bottom:502.989000px;}
.y19{bottom:505.347000px;}
.y48{bottom:508.323000px;}
.ydc{bottom:516.366000px;}
.ydb{bottom:517.002000px;}
.y62{bottom:521.295000px;}
.ye2{bottom:522.525000px;}
.yd9{bottom:523.312500px;}
.y18{bottom:525.670500px;}
.y47{bottom:528.648000px;}
.y87{bottom:535.438500px;}
.y61{bottom:541.620000px;}
.yd8{bottom:543.636000px;}
.y17{bottom:545.994000px;}
.y86{bottom:555.762000px;}
.y60{bottom:561.943500px;}
.yd1{bottom:563.961000px;}
.y46{bottom:565.176000px;}
.y16{bottom:566.317500px;}
.yd7{bottom:569.415000px;}
.y85{bottom:576.087000px;}
.yd3{bottom:577.428000px;}
.yd4{bottom:577.882500px;}
.y5f{bottom:582.267000px;}
.yd0{bottom:584.284500px;}
.yd{bottom:584.667000px;}
.yd6{bottom:586.170000px;}
.y15{bottom:586.641000px;}
.yd2{bottom:594.184500px;}
.y84{bottom:596.410500px;}
.ye1{bottom:598.113000px;}
.yd5{bottom:602.017500px;}
.ycf{bottom:604.608000px;}
.y14{bottom:606.966000px;}
.y45{bottom:616.734000px;}
.ye0{bottom:618.436500px;}
.y5e{bottom:618.795000px;}
.yc8{bottom:624.931500px;}
.yc{bottom:625.539000px;}
.y13{bottom:627.289500px;}
.yce{bottom:630.385500px;}
.y44{bottom:637.057500px;}
.yca{bottom:638.400000px;}
.ycb{bottom:639.412500px;}
.yc7{bottom:645.255000px;}
.ycd{bottom:647.142000px;}
.y12{bottom:647.613000px;}
.ydf{bottom:651.865500px;}
.yb{bottom:652.438500px;}
.yc9{bottom:655.155000px;}
.y43{bottom:657.381000px;}
.ycc{bottom:662.988000px;}
.yc6{bottom:665.578500px;}
.y42{bottom:677.704500px;}
.y11{bottom:684.141000px;}
.yc2{bottom:685.903500px;}
.y5d{bottom:690.444000px;}
.y41{bottom:698.029500px;}
.yc4{bottom:699.370500px;}
.yc5{bottom:700.384500px;}
.yc1{bottom:706.227000px;}
.ya{bottom:706.236000px;}
.y5c{bottom:710.769000px;}
.y83{bottom:713.056500px;}
.yc3{bottom:716.127000px;}
.y40{bottom:718.353000px;}
.yc0{bottom:726.550500px;}
.y5b{bottom:731.092500px;}
.y9{bottom:733.135500px;}
.y82{bottom:733.381500px;}
.y3f{bottom:738.676500px;}
.ybb{bottom:746.874000px;}
.y5a{bottom:751.416000px;}
.ybf{bottom:752.782500px;}
.y3e{bottom:759.000000px;}
.y10{bottom:759.729000px;}
.ybc{bottom:760.797000px;}
.yba{bottom:767.197500px;}
.ybe{bottom:768.630000px;}
.y59{bottom:771.739500px;}
.y81{bottom:772.530000px;}
.y3d{bottom:779.323500px;}
.yf{bottom:780.052500px;}
.y8{bottom:781.294500px;}
.ybd{bottom:784.476000px;}
.yb9{bottom:787.522500px;}
.y58{bottom:792.063000px;}
.y80{bottom:794.748000px;}
.y3c{bottom:799.648500px;}
.ye{bottom:800.377500px;}
.yb6{bottom:807.846000px;}
.y7{bottom:808.194000px;}
.y57{bottom:812.388000px;}
.y3b{bottom:819.972000px;}
.y7f{bottom:820.330500px;}
.yb8{bottom:821.223000px;}
.yb7{bottom:821.859000px;}
.yb5{bottom:828.169500px;}
.yde{bottom:829.093500px;}
.y56{bottom:832.711500px;}
.y3a{bottom:840.295500px;}
.y7e{bottom:842.697000px;}
.yb4{bottom:848.493000px;}
.y6{bottom:859.638000px;}
.y39{bottom:860.619000px;}
.y7d{bottom:863.584500px;}
.y55{bottom:865.251000px;}
.yaf{bottom:868.816500px;}
.yb3{bottom:874.270500px;}
.y38{bottom:880.942500px;}
.yb0{bottom:882.739500px;}
.y7c{bottom:886.311000px;}
.yae{bottom:889.140000px;}
.yb2{bottom:891.027000px;}
.y7b{bottom:893.986500px;}
.y54{bottom:897.790500px;}
.y37{bottom:901.267500px;}
.y5{bottom:904.470000px;}
.yb1{bottom:906.873000px;}
.yad{bottom:909.465000px;}
.y7a{bottom:920.881500px;}
.y36{bottom:921.591000px;}
.y2b{bottom:926.331000px;}
.yaa{bottom:929.788500px;}
.y53{bottom:930.330000px;}
.y35{bottom:941.914500px;}
.yac{bottom:943.165500px;}
.yab{bottom:943.801500px;}
.y79{bottom:947.784000px;}
.y4{bottom:949.302000px;}
.ya9{bottom:950.112000px;}
.y34{bottom:962.238000px;}
.y52{bottom:962.869500px;}
.y2a{bottom:965.481000px;}
.y78{bottom:970.158000px;}
.ya8{bottom:970.435500px;}
.y33{bottom:982.561500px;}
.y29{bottom:987.697500px;}
.ya3{bottom:990.759000px;}
.y77{bottom:991.047000px;}
.y3{bottom:994.134000px;}
.y51{bottom:995.409000px;}
.ya7{bottom:996.213000px;}
.y32{bottom:1002.886500px;}
.ya4{bottom:1005.091500px;}
.ydd{bottom:1006.321500px;}
.y28{bottom:1009.915500px;}
.ya2{bottom:1011.082500px;}
.ya6{bottom:1012.969500px;}
.y76{bottom:1013.773500px;}
.y50{bottom:1015.732500px;}
.y75{bottom:1021.449000px;}
.y31{bottom:1023.210000px;}
.ya5{bottom:1028.815500px;}
.ya1{bottom:1031.407500px;}
.y27{bottom:1032.132000px;}
.y4f{bottom:1036.056000px;}
.y2{bottom:1038.966000px;}
.y30{bottom:1043.533500px;}
.y74{bottom:1048.342500px;}
.y26{bottom:1054.348500px;}
.y2f{bottom:1063.857000px;}
.ya0{bottom:1063.924500px;}
.y9f{bottom:1070.109000px;}
.y73{bottom:1075.237500px;}
.y25{bottom:1076.565000px;}
.y1{bottom:1083.798000px;}
.y2e{bottom:1084.180500px;}
.y24{bottom:1102.131000px;}
.y2d{bottom:1104.505500px;}
.y9e{bottom:1107.976500px;}
.y2c{bottom:1124.829000px;}
.y9d{bottom:1128.301500px;}
.y9c{bottom:1148.625000px;}
.y23{bottom:1161.357000px;}
.h8{height:29.935696px;}
.ha{height:37.927872px;}
.h15{height:44.831700px;}
.h9{height:45.425492px;}
.h6{height:49.090950px;}
.h3{height:60.254040px;}
.h5{height:60.598349px;}
.h4{height:61.459121px;}
.h7{height:61.631275px;}
.hc{height:73.828950px;}
.hd{height:85.240950px;}
.hb{height:86.002950px;}
.h10{height:86.146950px;}
.h11{height:86.506950px;}
.he{height:86.512950px;}
.h2{height:106.485382px;}
.h14{height:112.060950px;}
.h12{height:113.566950px;}
.hf{height:113.572950px;}
.h13{height:116.530950px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:133.938000px;}
.x3b{left:142.429500px;}
.x3c{left:143.505000px;}
.x4{left:148.984500px;}
.xf{left:150.301500px;}
.x20{left:151.752000px;}
.x7{left:153.082500px;}
.x33{left:155.238000px;}
.x3{left:158.032500px;}
.x3d{left:159.393000px;}
.x32{left:163.692000px;}
.x26{left:164.988000px;}
.x2d{left:167.170500px;}
.x37{left:169.443000px;}
.x2f{left:171.375000px;}
.x24{left:172.669500px;}
.x31{left:175.465500px;}
.x27{left:177.283500px;}
.x35{left:182.170500px;}
.x34{left:183.534000px;}
.x38{left:186.487500px;}
.x28{left:192.283500px;}
.x23{left:197.119500px;}
.x16{left:201.618000px;}
.xe{left:203.757000px;}
.x2{left:207.849000px;}
.x1{left:220.578000px;}
.x15{left:231.687000px;}
.x8{left:247.455000px;}
.x9{left:255.217500px;}
.x18{left:261.754500px;}
.x39{left:265.671000px;}
.x30{left:277.080000px;}
.x21{left:283.372500px;}
.x29{left:290.739000px;}
.x22{left:295.293000px;}
.xa{left:307.156500px;}
.x14{left:313.299000px;}
.xb{left:314.413500px;}
.x17{left:343.366500px;}
.xc{left:359.395500px;}
.x5{left:371.770500px;}
.x25{left:387.739500px;}
.x6{left:426.007500px;}
.x13{left:442.365000px;}
.x1e{left:458.959500px;}
.x12{left:461.535000px;}
.x19{left:468.388500px;}
.x10{left:525.627000px;}
.x1f{left:528.778500px;}
.x1a{left:534.340500px;}
.x36{left:552.946500px;}
.x3a{left:557.538000px;}
.x2e{left:559.582500px;}
.x1b{left:565.357500px;}
.x11{left:567.061500px;}
.x1d{left:584.412000px;}
.x1c{left:615.430500px;}
.x2b{left:653.244000px;}
.x2a{left:661.924500px;}
.x2c{left:664.221000px;}
@media print{
.v2{vertical-align:-9.008000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.109333pt;}
.v5{vertical-align:24.378667pt;}
.v3{vertical-align:32.810667pt;}
.v7{vertical-align:55.973333pt;}
.v4{vertical-align:57.317333pt;}
.v6{vertical-align:59.946667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.002405pt;}
.ls2{letter-spacing:2.653258pt;}
.ls1{letter-spacing:20.258591pt;}
.ls3{letter-spacing:21.193181pt;}
.ls8{letter-spacing:22.504203pt;}
.ls6{letter-spacing:22.770870pt;}
.ls4{letter-spacing:24.423925pt;}
.ls5{letter-spacing:24.429258pt;}
.ws10{word-spacing:-16.162923pt;}
.ws37{word-spacing:-6.504733pt;}
.ws14{word-spacing:-3.246548pt;}
.ws97{word-spacing:-1.850183pt;}
.ws43{word-spacing:-1.792001pt;}
.ws2c{word-spacing:-1.035637pt;}
.ws50{word-spacing:-0.919273pt;}
.wsd{word-spacing:-0.802910pt;}
.ws32{word-spacing:-0.395637pt;}
.ws2{word-spacing:-0.132198pt;}
.ws5{word-spacing:-0.076513pt;}
.ws2e{word-spacing:-0.058182pt;}
.ws60{word-spacing:-0.042507pt;}
.ws7{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.011636pt;}
.ws7b{word-spacing:0.244364pt;}
.ws3d{word-spacing:0.302546pt;}
.ws1a{word-spacing:0.535273pt;}
.ws9{word-spacing:0.768001pt;}
.ws6d{word-spacing:0.942546pt;}
.ws4d{word-spacing:1.058910pt;}
.ws9a{word-spacing:1.233456pt;}
.ws2f{word-spacing:1.408001pt;}
.ws2d{word-spacing:1.466183pt;}
.ws31{word-spacing:1.524365pt;}
.ws33{word-spacing:1.582547pt;}
.ws28{word-spacing:1.815274pt;}
.ws5c{word-spacing:1.989820pt;}
.ws15{word-spacing:2.106184pt;}
.ws72{word-spacing:2.222547pt;}
.ws1f{word-spacing:2.338911pt;}
.ws21{word-spacing:2.397093pt;}
.ws8f{word-spacing:2.455275pt;}
.ws89{word-spacing:2.503674pt;}
.ws79{word-spacing:2.701875pt;}
.ws1e{word-spacing:2.746184pt;}
.ws78{word-spacing:2.749696pt;}
.ws76{word-spacing:2.804366pt;}
.ws4e{word-spacing:2.920730pt;}
.ws8d{word-spacing:2.932406pt;}
.ws8a{word-spacing:2.945381pt;}
.ws8e{word-spacing:2.948636pt;}
.ws8b{word-spacing:2.949867pt;}
.ws88{word-spacing:2.950290pt;}
.ws8c{word-spacing:2.955200pt;}
.ws12{word-spacing:2.978912pt;}
.ws4a{word-spacing:3.095275pt;}
.ws48{word-spacing:3.124307pt;}
.ws4b{word-spacing:3.153457pt;}
.wsa{word-spacing:3.211639pt;}
.ws4c{word-spacing:3.386185pt;}
.ws2a{word-spacing:3.735276pt;}
.ws2b{word-spacing:3.851640pt;}
.ws16{word-spacing:3.968003pt;}
.ws30{word-spacing:4.084367pt;}
.ws40{word-spacing:4.142549pt;}
.ws20{word-spacing:4.258913pt;}
.ws68{word-spacing:4.317095pt;}
.ws36{word-spacing:4.375276pt;}
.ws3c{word-spacing:4.433458pt;}
.wse{word-spacing:4.666186pt;}
.ws3f{word-spacing:4.724368pt;}
.ws35{word-spacing:4.898913pt;}
.ws24{word-spacing:5.073459pt;}
.wsf{word-spacing:5.131641pt;}
.ws3b{word-spacing:5.189823pt;}
.ws29{word-spacing:5.480732pt;}
.ws58{word-spacing:5.597096pt;}
.ws8{word-spacing:5.713459pt;}
.ws5b{word-spacing:6.004369pt;}
.ws59{word-spacing:6.062551pt;}
.ws38{word-spacing:6.120732pt;}
.wsc{word-spacing:6.353460pt;}
.ws57{word-spacing:6.377121pt;}
.ws23{word-spacing:6.411642pt;}
.ws7a{word-spacing:6.469824pt;}
.ws13{word-spacing:6.528005pt;}
.ws55{word-spacing:6.877097pt;}
.ws53{word-spacing:6.931697pt;}
.ws3a{word-spacing:7.284370pt;}
.ws46{word-spacing:7.458915pt;}
.ws27{word-spacing:7.691643pt;}
.ws34{word-spacing:7.924370pt;}
.ws11{word-spacing:8.098916pt;}
.ws26{word-spacing:8.331643pt;}
.ws6c{word-spacing:8.389825pt;}
.ws5a{word-spacing:8.738916pt;}
.ws6b{word-spacing:9.320735pt;}
.ws94{word-spacing:9.378917pt;}
.ws96{word-spacing:9.728008pt;}
.ws19{word-spacing:10.018917pt;}
.ws75{word-spacing:10.135281pt;}
.ws73{word-spacing:10.193463pt;}
.ws25{word-spacing:10.775282pt;}
.ws6a{word-spacing:10.891645pt;}
.ws22{word-spacing:11.182555pt;}
.ws1b{word-spacing:11.531646pt;}
.ws51{word-spacing:11.880737pt;}
.ws74{word-spacing:12.288010pt;}
.ws70{word-spacing:12.462556pt;}
.ws71{word-spacing:12.753465pt;}
.ws66{word-spacing:13.102556pt;}
.ws67{word-spacing:14.266194pt;}
.ws42{word-spacing:14.313978pt;}
.ws92{word-spacing:14.731649pt;}
.ws6e{word-spacing:15.371649pt;}
.ws98{word-spacing:16.116377pt;}
.ws1d{word-spacing:16.202073pt;}
.ws5e{word-spacing:16.210600pt;}
.ws1c{word-spacing:16.210751pt;}
.ws5f{word-spacing:16.215933pt;}
.ws5d{word-spacing:16.216084pt;}
.ws6f{word-spacing:16.360741pt;}
.ws69{word-spacing:16.884378pt;}
.ws91{word-spacing:17.873469pt;}
.ws95{word-spacing:18.036379pt;}
.ws99{word-spacing:18.909107pt;}
.ws47{word-spacing:19.226871pt;}
.ws61{word-spacing:20.084380pt;}
.ws41{word-spacing:20.241098pt;}
.ws62{word-spacing:20.491653pt;}
.ws63{word-spacing:20.549835pt;}
.ws18{word-spacing:20.770926pt;}
.ws17{word-spacing:21.469109pt;}
.ws49{word-spacing:21.928498pt;}
.ws44{word-spacing:21.932351pt;}
.ws54{word-spacing:21.933525pt;}
.ws39{word-spacing:22.039619pt;}
.ws56{word-spacing:22.480205pt;}
.ws65{word-spacing:23.168019pt;}
.ws90{word-spacing:23.808020pt;}
.ws6{word-spacing:24.866747pt;}
.ws4{word-spacing:26.703060pt;}
.ws52{word-spacing:27.973845pt;}
.wsb{word-spacing:28.003782pt;}
.ws3{word-spacing:28.615887pt;}
.ws64{word-spacing:28.928024pt;}
.ws3e{word-spacing:30.225300pt;}
.ws45{word-spacing:30.487298pt;}
.ws93{word-spacing:31.301844pt;}
.ws1{word-spacing:48.252221pt;}
.ws0{word-spacing:48.384419pt;}
.ws77{word-spacing:88.444570pt;}
.ws85{word-spacing:135.027072pt;}
.ws7f{word-spacing:135.031211pt;}
.ws87{word-spacing:141.498016pt;}
.ws81{word-spacing:149.578144pt;}
.ws7c{word-spacing:149.679032pt;}
.ws86{word-spacing:155.577889pt;}
.ws83{word-spacing:160.557868pt;}
.ws7e{word-spacing:161.917431pt;}
.ws80{word-spacing:161.947451pt;}
.ws7d{word-spacing:188.104583pt;}
.ws84{word-spacing:223.596544pt;}
.ws82{word-spacing:223.604550pt;}
._e{margin-left:-28.553745pt;}
._4{margin-left:-7.268741pt;}
._15{margin-left:-6.198357pt;}
._1d{margin-left:-5.008323pt;}
._1{margin-left:-4.098134pt;}
._3{margin-left:-2.371905pt;}
._7{margin-left:-1.363689pt;}
._8{width:1.629092pt;}
._5{width:2.907497pt;}
._2{width:4.098134pt;}
._d{width:14.706461pt;}
._19{width:16.173872pt;}
._f{width:17.377151pt;}
._6{width:19.374562pt;}
._16{width:20.291920pt;}
._a{width:21.804649pt;}
._1c{width:22.855779pt;}
._9{width:24.234735pt;}
._17{width:25.309112pt;}
._13{width:26.781186pt;}
._14{width:27.810932pt;}
._10{width:28.728291pt;}
._11{width:29.653525pt;}
._b{width:31.592754pt;}
._4f{width:34.001085pt;}
._18{width:35.423887pt;}
._1a{width:38.937490pt;}
._c{width:40.357494pt;}
._20{width:41.761029pt;}
._21{width:44.276401pt;}
._24{width:45.833759pt;}
._12{width:49.441035pt;}
._1b{width:51.697678pt;}
._23{width:52.699220pt;}
._22{width:55.506797pt;}
._0{width:64.644757pt;}
._1e{width:76.450973pt;}
._1f{width:78.531969pt;}
._41{width:86.283708pt;}
._40{width:99.016105pt;}
._4c{width:102.300439pt;}
._3b{width:106.401280pt;}
._33{width:125.577421pt;}
._2c{width:133.850419pt;}
._38{width:137.771725pt;}
._2e{width:141.645210pt;}
._3a{width:148.818330pt;}
._4b{width:152.850905pt;}
._4a{width:157.345824pt;}
._43{width:164.954527pt;}
._36{width:169.189990pt;}
._3d{width:170.653300pt;}
._31{width:176.028365pt;}
._26{width:178.132480pt;}
._39{width:201.516851pt;}
._48{width:202.770796pt;}
._28{width:206.824960pt;}
._2a{width:208.881254pt;}
._35{width:215.145779pt;}
._27{width:216.962970pt;}
._34{width:218.684518pt;}
._4d{width:223.882316pt;}
._2d{width:225.714176pt;}
._3f{width:227.782008pt;}
._46{width:231.678944pt;}
._2f{width:233.508966pt;}
._45{width:234.535193pt;}
._42{width:239.060002pt;}
._44{width:239.984521pt;}
._25{width:242.189238pt;}
._47{width:243.908882pt;}
._29{width:245.655450pt;}
._2b{width:247.663923pt;}
._4e{width:259.421208pt;}
._37{width:260.844824pt;}
._3c{width:267.448873pt;}
._32{width:269.135462pt;}
._49{width:274.444130pt;}
._30{width:297.971405pt;}
._3e{width:301.988352pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:75.590667pt;}
.y72{bottom:113.385333pt;}
.y71{bottom:131.452000pt;}
.y9b{bottom:141.548000pt;}
.y70{bottom:149.517333pt;}
.y9a{bottom:156.160000pt;}
.y6f{bottom:167.582667pt;}
.y99{bottom:170.772000pt;}
.y98{bottom:185.384000pt;}
.y6e{bottom:185.648000pt;}
.y97{bottom:199.996000pt;}
.y6d{bottom:203.713333pt;}
.y96{bottom:214.608000pt;}
.y6c{bottom:221.780000pt;}
.y95{bottom:229.220000pt;}
.yec{bottom:233.541333pt;}
.y6b{bottom:239.845333pt;}
.y94{bottom:243.832000pt;}
.y22{bottom:250.476000pt;}
.yeb{bottom:251.606667pt;}
.y6a{bottom:257.910667pt;}
.y93{bottom:258.444000pt;}
.y21{bottom:268.541333pt;}
.y92{bottom:273.056000pt;}
.yea{bottom:281.626667pt;}
.y20{bottom:286.606667pt;}
.y69{bottom:286.834667pt;}
.y91{bottom:287.666667pt;}
.ye9{bottom:299.693333pt;}
.y90{bottom:302.278667pt;}
.y1f{bottom:304.672000pt;}
.y68{bottom:315.758667pt;}
.y8f{bottom:316.890667pt;}
.ye8{bottom:329.713333pt;}
.y8e{bottom:331.502667pt;}
.y1e{bottom:340.802667pt;}
.y67{bottom:344.682667pt;}
.y8d{bottom:346.114667pt;}
.ye7{bottom:347.778667pt;}
.y1d{bottom:358.869333pt;}
.y8c{bottom:360.726667pt;}
.y4d{bottom:361.514667pt;}
.y66{bottom:373.606667pt;}
.y8b{bottom:375.338667pt;}
.y1c{bottom:376.934667pt;}
.ye6{bottom:377.800000pt;}
.y4c{bottom:379.581333pt;}
.y8a{bottom:389.950667pt;}
.y1b{bottom:395.000000pt;}
.ye5{bottom:395.865333pt;}
.y4b{bottom:397.646667pt;}
.y65{bottom:402.530667pt;}
.y89{bottom:411.865333pt;}
.ye4{bottom:413.930667pt;}
.y4a{bottom:415.712000pt;}
.y64{bottom:420.596000pt;}
.y1a{bottom:431.130667pt;}
.ye3{bottom:431.997333pt;}
.y49{bottom:433.777333pt;}
.y88{bottom:434.076000pt;}
.y63{bottom:438.661333pt;}
.yda{bottom:447.101333pt;}
.y19{bottom:449.197333pt;}
.y48{bottom:451.842667pt;}
.ydc{bottom:458.992000pt;}
.ydb{bottom:459.557333pt;}
.y62{bottom:463.373333pt;}
.ye2{bottom:464.466667pt;}
.yd9{bottom:465.166667pt;}
.y18{bottom:467.262667pt;}
.y47{bottom:469.909333pt;}
.y87{bottom:475.945333pt;}
.y61{bottom:481.440000pt;}
.yd8{bottom:483.232000pt;}
.y17{bottom:485.328000pt;}
.y86{bottom:494.010667pt;}
.y60{bottom:499.505333pt;}
.yd1{bottom:501.298667pt;}
.y46{bottom:502.378667pt;}
.y16{bottom:503.393333pt;}
.yd7{bottom:506.146667pt;}
.y85{bottom:512.077333pt;}
.yd3{bottom:513.269333pt;}
.yd4{bottom:513.673333pt;}
.y5f{bottom:517.570667pt;}
.yd0{bottom:519.364000pt;}
.yd{bottom:519.704000pt;}
.yd6{bottom:521.040000pt;}
.y15{bottom:521.458667pt;}
.yd2{bottom:528.164000pt;}
.y84{bottom:530.142667pt;}
.ye1{bottom:531.656000pt;}
.yd5{bottom:535.126667pt;}
.ycf{bottom:537.429333pt;}
.y14{bottom:539.525333pt;}
.y45{bottom:548.208000pt;}
.ye0{bottom:549.721333pt;}
.y5e{bottom:550.040000pt;}
.yc8{bottom:555.494667pt;}
.yc{bottom:556.034667pt;}
.y13{bottom:557.590667pt;}
.yce{bottom:560.342667pt;}
.y44{bottom:566.273333pt;}
.yca{bottom:567.466667pt;}
.ycb{bottom:568.366667pt;}
.yc7{bottom:573.560000pt;}
.ycd{bottom:575.237333pt;}
.y12{bottom:575.656000pt;}
.ydf{bottom:579.436000pt;}
.yb{bottom:579.945333pt;}
.yc9{bottom:582.360000pt;}
.y43{bottom:584.338667pt;}
.ycc{bottom:589.322667pt;}
.yc6{bottom:591.625333pt;}
.y42{bottom:602.404000pt;}
.y11{bottom:608.125333pt;}
.yc2{bottom:609.692000pt;}
.y5d{bottom:613.728000pt;}
.y41{bottom:620.470667pt;}
.yc4{bottom:621.662667pt;}
.yc5{bottom:622.564000pt;}
.yc1{bottom:627.757333pt;}
.ya{bottom:627.765333pt;}
.y5c{bottom:631.794667pt;}
.y83{bottom:633.828000pt;}
.yc3{bottom:636.557333pt;}
.y40{bottom:638.536000pt;}
.yc0{bottom:645.822667pt;}
.y5b{bottom:649.860000pt;}
.y9{bottom:651.676000pt;}
.y82{bottom:651.894667pt;}
.y3f{bottom:656.601333pt;}
.ybb{bottom:663.888000pt;}
.y5a{bottom:667.925333pt;}
.ybf{bottom:669.140000pt;}
.y3e{bottom:674.666667pt;}
.y10{bottom:675.314667pt;}
.ybc{bottom:676.264000pt;}
.yba{bottom:681.953333pt;}
.ybe{bottom:683.226667pt;}
.y59{bottom:685.990667pt;}
.y81{bottom:686.693333pt;}
.y3d{bottom:692.732000pt;}
.yf{bottom:693.380000pt;}
.y8{bottom:694.484000pt;}
.ybd{bottom:697.312000pt;}
.yb9{bottom:700.020000pt;}
.y58{bottom:704.056000pt;}
.y80{bottom:706.442667pt;}
.y3c{bottom:710.798667pt;}
.ye{bottom:711.446667pt;}
.yb6{bottom:718.085333pt;}
.y7{bottom:718.394667pt;}
.y57{bottom:722.122667pt;}
.y3b{bottom:728.864000pt;}
.y7f{bottom:729.182667pt;}
.yb8{bottom:729.976000pt;}
.yb7{bottom:730.541333pt;}
.yb5{bottom:736.150667pt;}
.yde{bottom:736.972000pt;}
.y56{bottom:740.188000pt;}
.y3a{bottom:746.929333pt;}
.y7e{bottom:749.064000pt;}
.yb4{bottom:754.216000pt;}
.y6{bottom:764.122667pt;}
.y39{bottom:764.994667pt;}
.y7d{bottom:767.630667pt;}
.y55{bottom:769.112000pt;}
.yaf{bottom:772.281333pt;}
.yb3{bottom:777.129333pt;}
.y38{bottom:783.060000pt;}
.yb0{bottom:784.657333pt;}
.y7c{bottom:787.832000pt;}
.yae{bottom:790.346667pt;}
.yb2{bottom:792.024000pt;}
.y7b{bottom:794.654667pt;}
.y54{bottom:798.036000pt;}
.y37{bottom:801.126667pt;}
.y5{bottom:803.973333pt;}
.yb1{bottom:806.109333pt;}
.yad{bottom:808.413333pt;}
.y7a{bottom:818.561333pt;}
.y36{bottom:819.192000pt;}
.y2b{bottom:823.405333pt;}
.yaa{bottom:826.478667pt;}
.y53{bottom:826.960000pt;}
.y35{bottom:837.257333pt;}
.yac{bottom:838.369333pt;}
.yab{bottom:838.934667pt;}
.y79{bottom:842.474667pt;}
.y4{bottom:843.824000pt;}
.ya9{bottom:844.544000pt;}
.y34{bottom:855.322667pt;}
.y52{bottom:855.884000pt;}
.y2a{bottom:858.205333pt;}
.y78{bottom:862.362667pt;}
.ya8{bottom:862.609333pt;}
.y33{bottom:873.388000pt;}
.y29{bottom:877.953333pt;}
.ya3{bottom:880.674667pt;}
.y77{bottom:880.930667pt;}
.y3{bottom:883.674667pt;}
.y51{bottom:884.808000pt;}
.ya7{bottom:885.522667pt;}
.y32{bottom:891.454667pt;}
.ya4{bottom:893.414667pt;}
.ydd{bottom:894.508000pt;}
.y28{bottom:897.702667pt;}
.ya2{bottom:898.740000pt;}
.ya6{bottom:900.417333pt;}
.y76{bottom:901.132000pt;}
.y50{bottom:902.873333pt;}
.y75{bottom:907.954667pt;}
.y31{bottom:909.520000pt;}
.ya5{bottom:914.502667pt;}
.ya1{bottom:916.806667pt;}
.y27{bottom:917.450667pt;}
.y4f{bottom:920.938667pt;}
.y2{bottom:923.525333pt;}
.y30{bottom:927.585333pt;}
.y74{bottom:931.860000pt;}
.y26{bottom:937.198667pt;}
.y2f{bottom:945.650667pt;}
.ya0{bottom:945.710667pt;}
.y9f{bottom:951.208000pt;}
.y73{bottom:955.766667pt;}
.y25{bottom:956.946667pt;}
.y1{bottom:963.376000pt;}
.y2e{bottom:963.716000pt;}
.y24{bottom:979.672000pt;}
.y2d{bottom:981.782667pt;}
.y9e{bottom:984.868000pt;}
.y2c{bottom:999.848000pt;}
.y9d{bottom:1002.934667pt;}
.y9c{bottom:1021.000000pt;}
.y23{bottom:1032.317333pt;}
.h8{height:26.609507pt;}
.ha{height:33.713664pt;}
.h15{height:39.850400pt;}
.h9{height:40.378215pt;}
.h6{height:43.636400pt;}
.h3{height:53.559147pt;}
.h5{height:53.865199pt;}
.h4{height:54.630330pt;}
.h7{height:54.783356pt;}
.hc{height:65.625733pt;}
.hd{height:75.769733pt;}
.hb{height:76.447067pt;}
.h10{height:76.575067pt;}
.h11{height:76.895067pt;}
.he{height:76.900400pt;}
.h2{height:94.653673pt;}
.h14{height:99.609733pt;}
.h12{height:100.948400pt;}
.hf{height:100.953733pt;}
.h13{height:103.583067pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:119.056000pt;}
.x3b{left:126.604000pt;}
.x3c{left:127.560000pt;}
.x4{left:132.430667pt;}
.xf{left:133.601333pt;}
.x20{left:134.890667pt;}
.x7{left:136.073333pt;}
.x33{left:137.989333pt;}
.x3{left:140.473333pt;}
.x3d{left:141.682667pt;}
.x32{left:145.504000pt;}
.x26{left:146.656000pt;}
.x2d{left:148.596000pt;}
.x37{left:150.616000pt;}
.x2f{left:152.333333pt;}
.x24{left:153.484000pt;}
.x31{left:155.969333pt;}
.x27{left:157.585333pt;}
.x35{left:161.929333pt;}
.x34{left:163.141333pt;}
.x38{left:165.766667pt;}
.x28{left:170.918667pt;}
.x23{left:175.217333pt;}
.x16{left:179.216000pt;}
.xe{left:181.117333pt;}
.x2{left:184.754667pt;}
.x1{left:196.069333pt;}
.x15{left:205.944000pt;}
.x8{left:219.960000pt;}
.x9{left:226.860000pt;}
.x18{left:232.670667pt;}
.x39{left:236.152000pt;}
.x30{left:246.293333pt;}
.x21{left:251.886667pt;}
.x29{left:258.434667pt;}
.x22{left:262.482667pt;}
.xa{left:273.028000pt;}
.x14{left:278.488000pt;}
.xb{left:279.478667pt;}
.x17{left:305.214667pt;}
.xc{left:319.462667pt;}
.x5{left:330.462667pt;}
.x25{left:344.657333pt;}
.x6{left:378.673333pt;}
.x13{left:393.213333pt;}
.x1e{left:407.964000pt;}
.x12{left:410.253333pt;}
.x19{left:416.345333pt;}
.x10{left:467.224000pt;}
.x1f{left:470.025333pt;}
.x1a{left:474.969333pt;}
.x36{left:491.508000pt;}
.x3a{left:495.589333pt;}
.x2e{left:497.406667pt;}
.x1b{left:502.540000pt;}
.x11{left:504.054667pt;}
.x1d{left:519.477333pt;}
.x1c{left:547.049333pt;}
.x2b{left:580.661333pt;}
.x2a{left:588.377333pt;}
.x2c{left:590.418667pt;}
}


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