
/* 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_1bb15cff66f5.woff")format("woff");}.ff1{font-family:ff1;line-height:1.056000;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_5e7309544b23.woff")format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_ad59102a008d.woff")format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_858bea2e46d3.woff")format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_d1af244ab7e7.woff")format("woff");}.ff5{font-family:ff5;line-height:1.056000;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_54f74527d08c.woff")format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_053761cd1f7f.woff")format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_ad59102a008d.woff")format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_c4cb5f5ced20.woff")format("woff");}.ff9{font-family:ff9;line-height:1.120605;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_59c12ebf4013.woff")format("woff");}.ffa{font-family:ffa;line-height:0.882324;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_4f3e60bace06.woff")format("woff");}.ffb{font-family:ffb;line-height:0.959000;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_b1cff5c8c4e4.woff")format("woff");}.ffc{font-family:ffc;line-height:0.895996;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_bf691de5e74a.woff")format("woff");}.ffd{font-family:ffd;line-height:0.708008;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_52183f2573cd.woff")format("woff");}.ffe{font-family:ffe;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2b{letter-spacing:-0.723600px;}
.ls1f{letter-spacing:-0.358560px;}
.ls2a{letter-spacing:-0.337680px;}
.lsa{letter-spacing:-0.298800px;}
.ls13{letter-spacing:-0.289440px;}
.ls8{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.241200px;}
.ls14{letter-spacing:-0.239040px;}
.lse{letter-spacing:-0.192960px;}
.lsb{letter-spacing:-0.179280px;}
.lsc{letter-spacing:-0.119520px;}
.ls28{letter-spacing:-0.096480px;}
.ls9{letter-spacing:-0.059760px;}
.ls2d{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.048240px;}
.ls2{letter-spacing:0.059760px;}
.ls24{letter-spacing:0.096480px;}
.ls5{letter-spacing:0.119520px;}
.ls25{letter-spacing:0.144720px;}
.ls16{letter-spacing:0.179280px;}
.ls0{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.239040px;}
.ls29{letter-spacing:0.241200px;}
.ls1c{letter-spacing:0.289440px;}
.ls12{letter-spacing:0.298800px;}
.ls15{letter-spacing:0.418320px;}
.ls11{letter-spacing:0.537840px;}
.ls2c{letter-spacing:0.756000px;}
.lsf{letter-spacing:0.836640px;}
.ls1a{letter-spacing:2.988000px;}
.ls1b{letter-spacing:7.290720px;}
.ls21{letter-spacing:8.007840px;}
.ls20{letter-spacing:11.653200px;}
.ls1d{letter-spacing:15.238800px;}
.ls17{letter-spacing:17.928000px;}
.ls4{letter-spacing:17.987760px;}
.ls3{letter-spacing:18.047520px;}
.ls18{letter-spacing:18.645120px;}
.ls22{letter-spacing:46.194480px;}
.ls10{letter-spacing:48.883680px;}
.ls27{letter-spacing:57.453840px;}
.ls1{letter-spacing:63.504000px;}
.ls19{letter-spacing:64.002960px;}
.ls26{letter-spacing:121.516560px;}
.ls23{letter-spacing:850.434480px;}
.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;}
}
.ws33{word-spacing:-59.760000px;}
.ws73{word-spacing:-54.000000px;}
.ws0{word-spacing:-20.808000px;}
.ws32{word-spacing:-18.764640px;}
.ws31{word-spacing:-18.704880px;}
.ws5b{word-spacing:-18.525600px;}
.ws30{word-spacing:-18.465840px;}
.ws1{word-spacing:-17.569440px;}
.ws2{word-spacing:-17.449920px;}
.ws3{word-spacing:-17.390160px;}
.ws53{word-spacing:-15.388560px;}
.ws6{word-spacing:-14.857920px;}
.ws1f{word-spacing:-13.983840px;}
.ws1d{word-spacing:-13.864320px;}
.ws21{word-spacing:-13.744800px;}
.ws1e{word-spacing:-13.685040px;}
.ws20{word-spacing:-13.505760px;}
.ws4{word-spacing:-13.386240px;}
.ws22{word-spacing:-13.326480px;}
.ws5{word-spacing:-13.266720px;}
.ws64{word-spacing:-13.206960px;}
.ws66{word-spacing:-12.848400px;}
.ws67{word-spacing:-12.669120px;}
.ws65{word-spacing:-12.609360px;}
.ws75{word-spacing:-12.204000px;}
.ws74{word-spacing:-12.186000px;}
.ws6d{word-spacing:-11.046960px;}
.ws6c{word-spacing:-10.998720px;}
.ws69{word-spacing:-10.950480px;}
.ws68{word-spacing:-10.757520px;}
.ws6b{word-spacing:-10.661040px;}
.ws6a{word-spacing:-10.612800px;}
.ws6e{word-spacing:-10.226880px;}
.ws5a{word-spacing:-0.836640px;}
.ws45{word-spacing:-0.537840px;}
.ws39{word-spacing:-0.418320px;}
.ws71{word-spacing:-0.385920px;}
.ws2b{word-spacing:-0.298800px;}
.ws7{word-spacing:-0.192960px;}
.ws5c{word-spacing:-0.179280px;}
.ws9{word-spacing:-0.119520px;}
.ws18{word-spacing:-0.059760px;}
.ws70{word-spacing:-0.048240px;}
.ws8{word-spacing:0.000000px;}
.ws36{word-spacing:0.059760px;}
.wsa{word-spacing:0.072000px;}
.ws6f{word-spacing:0.096480px;}
.ws38{word-spacing:0.119520px;}
.ws23{word-spacing:0.144720px;}
.wsc{word-spacing:0.179280px;}
.ws72{word-spacing:0.192960px;}
.ws27{word-spacing:0.239040px;}
.ws1c{word-spacing:0.241200px;}
.ws46{word-spacing:0.289440px;}
.ws17{word-spacing:0.298800px;}
.ws2c{word-spacing:0.358560px;}
.ws11{word-spacing:0.418320px;}
.ws4a{word-spacing:0.657360px;}
.ws28{word-spacing:1.015920px;}
.ws37{word-spacing:1.075680px;}
.ws2a{word-spacing:1.135440px;}
.ws3a{word-spacing:1.733040px;}
.ws41{word-spacing:1.852560px;}
.ws14{word-spacing:2.450160px;}
.ws42{word-spacing:2.569680px;}
.ws3c{word-spacing:2.868480px;}
.ws3e{word-spacing:3.167280px;}
.ws43{word-spacing:3.227040px;}
.ws3d{word-spacing:3.286800px;}
.ws4f{word-spacing:3.705120px;}
.ws48{word-spacing:3.884400px;}
.ws4e{word-spacing:4.003920px;}
.ws59{word-spacing:4.302720px;}
.ws5e{word-spacing:4.422240px;}
.ws2d{word-spacing:4.482000px;}
.ws29{word-spacing:4.601520px;}
.ws10{word-spacing:4.721040px;}
.ws4b{word-spacing:5.318640px;}
.ws56{word-spacing:5.736960px;}
.ws19{word-spacing:6.035760px;}
.ws25{word-spacing:6.155280px;}
.ws1b{word-spacing:6.454080px;}
.ws1a{word-spacing:6.752880px;}
.ws4d{word-spacing:6.812640px;}
.ws4c{word-spacing:6.872400px;}
.ws52{word-spacing:7.470000px;}
.ws2f{word-spacing:7.589520px;}
.ws58{word-spacing:8.246880px;}
.ws54{word-spacing:8.306640px;}
.ws5f{word-spacing:8.366400px;}
.ws44{word-spacing:8.784720px;}
.wsf{word-spacing:8.964000px;}
.ws49{word-spacing:9.023760px;}
.ws13{word-spacing:9.083520px;}
.ws5d{word-spacing:9.681120px;}
.wsb{word-spacing:9.800640px;}
.ws3b{word-spacing:10.218960px;}
.wsd{word-spacing:10.398240px;}
.ws26{word-spacing:10.517760px;}
.ws47{word-spacing:11.115360px;}
.ws63{word-spacing:11.234880px;}
.ws35{word-spacing:11.832480px;}
.ws3f{word-spacing:11.952000px;}
.ws2e{word-spacing:12.549600px;}
.ws40{word-spacing:12.609360px;}
.ws24{word-spacing:12.669120px;}
.ws51{word-spacing:13.266720px;}
.ws61{word-spacing:13.386240px;}
.ws50{word-spacing:13.983840px;}
.ws57{word-spacing:14.700960px;}
.ws34{word-spacing:15.418080px;}
.ws15{word-spacing:16.254720px;}
.ws16{word-spacing:16.971840px;}
.ws12{word-spacing:17.688960px;}
.ws55{word-spacing:19.063440px;}
.ws60{word-spacing:24.919920px;}
.wse{word-spacing:31.254480px;}
.ws62{word-spacing:45.656640px;}
._0{margin-left:-1.302480px;}
._1{width:1.296000px;}
._4{width:3.582000px;}
._3{width:6.503040px;}
._2{width:9.987840px;}
._6{width:117.036720px;}
._5{width:850.444560px;}
.fc2{color:rgb(40,40,40);}
.fc1{color:rgb(0,0,0);}
.fc0{color:transparent;}
.fs3{font-size:18.000000px;}
.fs4{font-size:23.760000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:47.880000px;}
.y7e{bottom:80.793000px;}
.yba{bottom:81.900000px;}
.y1a{bottom:93.959460px;}
.yb9{bottom:96.300000px;}
.y55{bottom:97.346340px;}
.y7d{bottom:102.754800px;}
.yb2{bottom:105.833160px;}
.y19{bottom:108.540000px;}
.yb8{bottom:109.080000px;}
.y89{bottom:110.333160px;}
.y39{bottom:111.016440px;}
.yb7{bottom:113.758560px;}
.y54{bottom:119.128860px;}
.y9e{bottom:121.311000px;}
.y18{bottom:121.320000px;}
.y7c{bottom:125.075160px;}
.ya8{bottom:125.635320px;}
.y17{bottom:125.820000px;}
.yb1{bottom:127.794960px;}
.y88{bottom:132.294960px;}
.y38{bottom:132.798960px;}
.y53{bottom:141.090660px;}
.ya7{bottom:147.417840px;}
.y9d{bottom:147.769740px;}
.yb0{bottom:149.577480px;}
.y69{bottom:150.637320px;}
.y87{bottom:154.077480px;}
.y37{bottom:154.760760px;}
.y7b{bottom:162.156240px;}
.y52{bottom:162.873180px;}
.ya6{bottom:169.379640px;}
.y9c{bottom:169.552260px;}
.yaf{bottom:171.360000px;}
.y68{bottom:172.419840px;}
.y86{bottom:175.860000px;}
.y36{bottom:176.543280px;}
.y51{bottom:184.655700px;}
.y7a{bottom:188.435700px;}
.yae{bottom:188.820360px;}
.y9b{bottom:191.514060px;}
.ya5{bottom:191.700000px;}
.y85{bottom:193.320360px;}
.y67{bottom:194.202360px;}
.y35{bottom:202.822740px;}
.yad{bottom:203.220000px;}
.y50{bottom:206.617500px;}
.y84{bottom:207.720000px;}
.y79{bottom:210.218220px;}
.y66{bottom:215.984880px;}
.yac{bottom:216.000000px;}
.y9a{bottom:217.972800px;}
.y83{bottom:220.500000px;}
.y34{bottom:224.784540px;}
.y82{bottom:225.000000px;}
.y78{bottom:232.180020px;}
.y4f{bottom:232.896960px;}
.ya4{bottom:236.340360px;}
.y65{bottom:238.484520px;}
.y99{bottom:244.610820px;}
.y33{bottom:246.567060px;}
.ya3{bottom:250.740000px;}
.y77{bottom:253.962540px;}
.y4e{bottom:254.679480px;}
.ya2{bottom:263.520000px;}
.ya1{bottom:268.020000px;}
.y98{bottom:271.069560px;}
.y32{bottom:272.846520px;}
.y64{bottom:275.565600px;}
.y76{bottom:275.745060px;}
.y4d{bottom:276.641280px;}
.y16{bottom:283.657860px;}
.y97{bottom:293.031360px;}
.y31{bottom:294.808320px;}
.y75{bottom:297.706860px;}
.y4c{bottom:298.423800px;}
.y63{bottom:301.845060px;}
.y15{bottom:305.440380px;}
.y96{bottom:314.813880px;}
.y30{bottom:316.590840px;}
.y74{bottom:319.489380px;}
.y4b{bottom:320.385600px;}
.y62{bottom:323.627580px;}
.y14{bottom:327.222900px;}
.y95{bottom:341.093340px;}
.y73{bottom:341.271900px;}
.y2f{bottom:342.870300px;}
.y4a{bottom:346.844340px;}
.y13{bottom:349.722540px;}
.y61{bottom:350.086320px;}
.y94{bottom:363.055140px;}
.y72{bottom:363.233700px;}
.y2e{bottom:364.832100px;}
.y49{bottom:368.626860px;}
.y60{bottom:371.868840px;}
.y8f{bottom:382.117680px;}
.y93{bottom:384.837660px;}
.y2d{bottom:386.614620px;}
.y71{bottom:389.513160px;}
.y48{bottom:390.588660px;}
.y5f{bottom:393.651360px;}
.yd3{bottom:397.661040px;}
.y12{bottom:398.680920px;}
.y92{bottom:407.158020px;}
.y2c{bottom:408.397140px;}
.y70{bottom:411.295680px;}
.yd2{bottom:414.038520px;}
.yb6{bottom:415.439460px;}
.y5e{bottom:415.613160px;}
.y47{bottom:417.047400px;}
.y11{bottom:420.463440px;}
.y91{bottom:425.340000px;}
.yb5{bottom:430.020000px;}
.yd1{bottom:430.054200px;}
.y2b{bottom:430.179660px;}
.y6f{bottom:433.257480px;}
.y46{bottom:439.009200px;}
.y5d{bottom:442.251180px;}
.y10{bottom:442.425240px;}
.yb4{bottom:443.160000px;}
.yd0{bottom:446.250780px;}
.yb3{bottom:449.100000px;}
.y2a{bottom:452.141460px;}
.y6e{bottom:455.040000px;}
.y90{bottom:457.919820px;}
.ycf{bottom:462.447360px;}
.yf{bottom:464.207760px;}
.y45{bottom:465.467940px;}
.y5c{bottom:468.709920px;}
.y6d{bottom:472.319460px;}
.y29{bottom:473.923980px;}
.yce{bottom:478.643940px;}
.y6c{bottom:486.900000px;}
.y44{bottom:487.250460px;}
.ye{bottom:490.487220px;}
.y5b{bottom:490.492440px;}
.ycd{bottom:494.840520px;}
.y28{bottom:495.706500px;}
.y6b{bottom:499.680000px;}
.y6a{bottom:504.360000px;}
.y43{bottom:509.212260px;}
.ycc{bottom:511.037100px;}
.yd{bottom:512.449020px;}
.y5a{bottom:512.454240px;}
.y27{bottom:517.668300px;}
.ycb{bottom:527.233680px;}
.y42{bottom:530.994780px;}
.yc{bottom:534.231540px;}
.y59{bottom:538.912980px;}
.y8e{bottom:539.450820px;}
.yca{bottom:543.430260px;}
.y26{bottom:543.947760px;}
.y41{bottom:557.632800px;}
.yc9{bottom:559.626840px;}
.yb{bottom:560.511000px;}
.y58{bottom:560.874780px;}
.y25{bottom:565.730280px;}
.yc8{bottom:575.823420px;}
.y40{bottom:579.415320px;}
.ya{bottom:582.472800px;}
.y57{bottom:582.657300px;}
.y24{bottom:587.692080px;}
.yc7{bottom:592.020000px;}
.y81{bottom:592.189020px;}
.yab{bottom:596.685960px;}
.y3f{bottom:601.197840px;}
.y9{bottom:604.255320px;}
.yc6{bottom:609.120000px;}
.y56{bottom:609.295320px;}
.y23{bottom:609.474600px;}
.y80{bottom:613.971540px;}
.yaa{bottom:618.468480px;}
.ydd{bottom:622.770000px;}
.y3e{bottom:623.159640px;}
.y8{bottom:626.037840px;}
.yc5{bottom:628.380000px;}
.y8d{bottom:631.257120px;}
.y22{bottom:635.754060px;}
.ya9{bottom:640.251000px;}
.ydc{bottom:642.030000px;}
.yc4{bottom:643.146840px;}
.y3d{bottom:644.942160px;}
.y7{bottom:647.999640px;}
.y8c{bottom:653.218920px;}
.y21{bottom:657.715860px;}
.ydb{bottom:658.590000px;}
.yc3{bottom:659.343420px;}
.ya0{bottom:662.212800px;}
.y3c{bottom:666.724680px;}
.y6{bottom:670.320000px;}
.yda{bottom:674.970000px;}
.yc2{bottom:675.540000px;}
.y20{bottom:679.498380px;}
.y9f{bottom:683.995320px;}
.y3b{bottom:689.224320px;}
.yd9{bottom:691.530000px;}
.yc1{bottom:692.640000px;}
.y7f{bottom:701.280900px;}
.y1f{bottom:705.777840px;}
.yd8{bottom:707.910000px;}
.yc0{bottom:712.450260px;}
.y5{bottom:716.220000px;}
.y3a{bottom:722.346300px;}
.y8b{bottom:723.242700px;}
.yd7{bottom:724.470000px;}
.y1e{bottom:727.739640px;}
.ybf{bottom:728.646840px;}
.y4{bottom:738.000000px;}
.yd6{bottom:740.850000px;}
.ybe{bottom:744.843420px;}
.y8a{bottom:745.025220px;}
.y1d{bottom:749.522160px;}
.yd5{bottom:757.410000px;}
.ybd{bottom:761.040000px;}
.y1c{bottom:771.304680px;}
.yd4{bottom:773.970000px;}
.ybc{bottom:778.140000px;}
.y1b{bottom:793.266480px;}
.ybb{bottom:796.140000px;}
.y3{bottom:796.320000px;}
.y1{bottom:830.160000px;}
.h6{height:16.453125px;}
.ha{height:21.718125px;}
.hc{height:33.366240px;}
.h1{height:38.543760px;}
.he{height:38.759766px;}
.hb{height:42.668640px;}
.h5{height:44.094375px;}
.h4{height:45.695391px;}
.hf{height:47.545312px;}
.h2{height:47.748240px;}
.hd{height:49.992188px;}
.h9{height:54.624375px;}
.h3{height:55.054688px;}
.h0{height:892.500000px;}
.h7{height:892.980000px;}
.h8{height:893.250000px;}
.w0{width:628.999500px;}
.w1{width:629.250000px;}
.w3{width:629.280000px;}
.w2{width:629.460000px;}
.x0{left:0.000000px;}
.x6{left:74.340000px;}
.x7{left:101.321640px;}
.x3{left:106.380000px;}
.xa{left:111.786300px;}
.xb{left:116.814420px;}
.x8{left:133.365960px;}
.x4{left:138.780000px;}
.x1{left:327.240000px;}
.x9{left:526.500000px;}
.x2{left:540.720000px;}
.xc{left:557.100000px;}
.x5{left:558.540000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2b{letter-spacing:-0.643200pt;}
.ls1f{letter-spacing:-0.318720pt;}
.ls2a{letter-spacing:-0.300160pt;}
.lsa{letter-spacing:-0.265600pt;}
.ls13{letter-spacing:-0.257280pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.214400pt;}
.ls14{letter-spacing:-0.212480pt;}
.lse{letter-spacing:-0.171520pt;}
.lsb{letter-spacing:-0.159360pt;}
.lsc{letter-spacing:-0.106240pt;}
.ls28{letter-spacing:-0.085760pt;}
.ls9{letter-spacing:-0.053120pt;}
.ls2d{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.042880pt;}
.ls2{letter-spacing:0.053120pt;}
.ls24{letter-spacing:0.085760pt;}
.ls5{letter-spacing:0.106240pt;}
.ls25{letter-spacing:0.128640pt;}
.ls16{letter-spacing:0.159360pt;}
.ls0{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.212480pt;}
.ls29{letter-spacing:0.214400pt;}
.ls1c{letter-spacing:0.257280pt;}
.ls12{letter-spacing:0.265600pt;}
.ls15{letter-spacing:0.371840pt;}
.ls11{letter-spacing:0.478080pt;}
.ls2c{letter-spacing:0.672000pt;}
.lsf{letter-spacing:0.743680pt;}
.ls1a{letter-spacing:2.656000pt;}
.ls1b{letter-spacing:6.480640pt;}
.ls21{letter-spacing:7.118080pt;}
.ls20{letter-spacing:10.358400pt;}
.ls1d{letter-spacing:13.545600pt;}
.ls17{letter-spacing:15.936000pt;}
.ls4{letter-spacing:15.989120pt;}
.ls3{letter-spacing:16.042240pt;}
.ls18{letter-spacing:16.573440pt;}
.ls22{letter-spacing:41.061760pt;}
.ls10{letter-spacing:43.452160pt;}
.ls27{letter-spacing:51.070080pt;}
.ls1{letter-spacing:56.448000pt;}
.ls19{letter-spacing:56.891520pt;}
.ls26{letter-spacing:108.014720pt;}
.ls23{letter-spacing:755.941760pt;}
.ws33{word-spacing:-53.120000pt;}
.ws73{word-spacing:-48.000000pt;}
.ws0{word-spacing:-18.496000pt;}
.ws32{word-spacing:-16.679680pt;}
.ws31{word-spacing:-16.626560pt;}
.ws5b{word-spacing:-16.467200pt;}
.ws30{word-spacing:-16.414080pt;}
.ws1{word-spacing:-15.617280pt;}
.ws2{word-spacing:-15.511040pt;}
.ws3{word-spacing:-15.457920pt;}
.ws53{word-spacing:-13.678720pt;}
.ws6{word-spacing:-13.207040pt;}
.ws1f{word-spacing:-12.430080pt;}
.ws1d{word-spacing:-12.323840pt;}
.ws21{word-spacing:-12.217600pt;}
.ws1e{word-spacing:-12.164480pt;}
.ws20{word-spacing:-12.005120pt;}
.ws4{word-spacing:-11.898880pt;}
.ws22{word-spacing:-11.845760pt;}
.ws5{word-spacing:-11.792640pt;}
.ws64{word-spacing:-11.739520pt;}
.ws66{word-spacing:-11.420800pt;}
.ws67{word-spacing:-11.261440pt;}
.ws65{word-spacing:-11.208320pt;}
.ws75{word-spacing:-10.848000pt;}
.ws74{word-spacing:-10.832000pt;}
.ws6d{word-spacing:-9.819520pt;}
.ws6c{word-spacing:-9.776640pt;}
.ws69{word-spacing:-9.733760pt;}
.ws68{word-spacing:-9.562240pt;}
.ws6b{word-spacing:-9.476480pt;}
.ws6a{word-spacing:-9.433600pt;}
.ws6e{word-spacing:-9.090560pt;}
.ws5a{word-spacing:-0.743680pt;}
.ws45{word-spacing:-0.478080pt;}
.ws39{word-spacing:-0.371840pt;}
.ws71{word-spacing:-0.343040pt;}
.ws2b{word-spacing:-0.265600pt;}
.ws7{word-spacing:-0.171520pt;}
.ws5c{word-spacing:-0.159360pt;}
.ws9{word-spacing:-0.106240pt;}
.ws18{word-spacing:-0.053120pt;}
.ws70{word-spacing:-0.042880pt;}
.ws8{word-spacing:0.000000pt;}
.ws36{word-spacing:0.053120pt;}
.wsa{word-spacing:0.064000pt;}
.ws6f{word-spacing:0.085760pt;}
.ws38{word-spacing:0.106240pt;}
.ws23{word-spacing:0.128640pt;}
.wsc{word-spacing:0.159360pt;}
.ws72{word-spacing:0.171520pt;}
.ws27{word-spacing:0.212480pt;}
.ws1c{word-spacing:0.214400pt;}
.ws46{word-spacing:0.257280pt;}
.ws17{word-spacing:0.265600pt;}
.ws2c{word-spacing:0.318720pt;}
.ws11{word-spacing:0.371840pt;}
.ws4a{word-spacing:0.584320pt;}
.ws28{word-spacing:0.903040pt;}
.ws37{word-spacing:0.956160pt;}
.ws2a{word-spacing:1.009280pt;}
.ws3a{word-spacing:1.540480pt;}
.ws41{word-spacing:1.646720pt;}
.ws14{word-spacing:2.177920pt;}
.ws42{word-spacing:2.284160pt;}
.ws3c{word-spacing:2.549760pt;}
.ws3e{word-spacing:2.815360pt;}
.ws43{word-spacing:2.868480pt;}
.ws3d{word-spacing:2.921600pt;}
.ws4f{word-spacing:3.293440pt;}
.ws48{word-spacing:3.452800pt;}
.ws4e{word-spacing:3.559040pt;}
.ws59{word-spacing:3.824640pt;}
.ws5e{word-spacing:3.930880pt;}
.ws2d{word-spacing:3.984000pt;}
.ws29{word-spacing:4.090240pt;}
.ws10{word-spacing:4.196480pt;}
.ws4b{word-spacing:4.727680pt;}
.ws56{word-spacing:5.099520pt;}
.ws19{word-spacing:5.365120pt;}
.ws25{word-spacing:5.471360pt;}
.ws1b{word-spacing:5.736960pt;}
.ws1a{word-spacing:6.002560pt;}
.ws4d{word-spacing:6.055680pt;}
.ws4c{word-spacing:6.108800pt;}
.ws52{word-spacing:6.640000pt;}
.ws2f{word-spacing:6.746240pt;}
.ws58{word-spacing:7.330560pt;}
.ws54{word-spacing:7.383680pt;}
.ws5f{word-spacing:7.436800pt;}
.ws44{word-spacing:7.808640pt;}
.wsf{word-spacing:7.968000pt;}
.ws49{word-spacing:8.021120pt;}
.ws13{word-spacing:8.074240pt;}
.ws5d{word-spacing:8.605440pt;}
.wsb{word-spacing:8.711680pt;}
.ws3b{word-spacing:9.083520pt;}
.wsd{word-spacing:9.242880pt;}
.ws26{word-spacing:9.349120pt;}
.ws47{word-spacing:9.880320pt;}
.ws63{word-spacing:9.986560pt;}
.ws35{word-spacing:10.517760pt;}
.ws3f{word-spacing:10.624000pt;}
.ws2e{word-spacing:11.155200pt;}
.ws40{word-spacing:11.208320pt;}
.ws24{word-spacing:11.261440pt;}
.ws51{word-spacing:11.792640pt;}
.ws61{word-spacing:11.898880pt;}
.ws50{word-spacing:12.430080pt;}
.ws57{word-spacing:13.067520pt;}
.ws34{word-spacing:13.704960pt;}
.ws15{word-spacing:14.448640pt;}
.ws16{word-spacing:15.086080pt;}
.ws12{word-spacing:15.723520pt;}
.ws55{word-spacing:16.945280pt;}
.ws60{word-spacing:22.151040pt;}
.wse{word-spacing:27.781760pt;}
.ws62{word-spacing:40.583680pt;}
._0{margin-left:-1.157760pt;}
._1{width:1.152000pt;}
._4{width:3.184000pt;}
._3{width:5.780480pt;}
._2{width:8.878080pt;}
._6{width:104.032640pt;}
._5{width:755.950720pt;}
.fs3{font-size:16.000000pt;}
.fs4{font-size:21.120000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:42.560000pt;}
.y7e{bottom:71.816000pt;}
.yba{bottom:72.800000pt;}
.y1a{bottom:83.519520pt;}
.yb9{bottom:85.600000pt;}
.y55{bottom:86.530080pt;}
.y7d{bottom:91.337600pt;}
.yb2{bottom:94.073920pt;}
.y19{bottom:96.480000pt;}
.yb8{bottom:96.960000pt;}
.y89{bottom:98.073920pt;}
.y39{bottom:98.681280pt;}
.yb7{bottom:101.118720pt;}
.y54{bottom:105.892320pt;}
.y9e{bottom:107.832000pt;}
.y18{bottom:107.840000pt;}
.y7c{bottom:111.177920pt;}
.ya8{bottom:111.675840pt;}
.y17{bottom:111.840000pt;}
.yb1{bottom:113.595520pt;}
.y88{bottom:117.595520pt;}
.y38{bottom:118.043520pt;}
.y53{bottom:125.413920pt;}
.ya7{bottom:131.038080pt;}
.y9d{bottom:131.350880pt;}
.yb0{bottom:132.957760pt;}
.y69{bottom:133.899840pt;}
.y87{bottom:136.957760pt;}
.y37{bottom:137.565120pt;}
.y7b{bottom:144.138880pt;}
.y52{bottom:144.776160pt;}
.ya6{bottom:150.559680pt;}
.y9c{bottom:150.713120pt;}
.yaf{bottom:152.320000pt;}
.y68{bottom:153.262080pt;}
.y86{bottom:156.320000pt;}
.y36{bottom:156.927360pt;}
.y51{bottom:164.138400pt;}
.y7a{bottom:167.498400pt;}
.yae{bottom:167.840320pt;}
.y9b{bottom:170.234720pt;}
.ya5{bottom:170.400000pt;}
.y85{bottom:171.840320pt;}
.y67{bottom:172.624320pt;}
.y35{bottom:180.286880pt;}
.yad{bottom:180.640000pt;}
.y50{bottom:183.660000pt;}
.y84{bottom:184.640000pt;}
.y79{bottom:186.860640pt;}
.y66{bottom:191.986560pt;}
.yac{bottom:192.000000pt;}
.y9a{bottom:193.753600pt;}
.y83{bottom:196.000000pt;}
.y34{bottom:199.808480pt;}
.y82{bottom:200.000000pt;}
.y78{bottom:206.382240pt;}
.y4f{bottom:207.019520pt;}
.ya4{bottom:210.080320pt;}
.y65{bottom:211.986240pt;}
.y99{bottom:217.431840pt;}
.y33{bottom:219.170720pt;}
.ya3{bottom:222.880000pt;}
.y77{bottom:225.744480pt;}
.y4e{bottom:226.381760pt;}
.ya2{bottom:234.240000pt;}
.ya1{bottom:238.240000pt;}
.y98{bottom:240.950720pt;}
.y32{bottom:242.530240pt;}
.y64{bottom:244.947200pt;}
.y76{bottom:245.106720pt;}
.y4d{bottom:245.903360pt;}
.y16{bottom:252.140320pt;}
.y97{bottom:260.472320pt;}
.y31{bottom:262.051840pt;}
.y75{bottom:264.628320pt;}
.y4c{bottom:265.265600pt;}
.y63{bottom:268.306720pt;}
.y15{bottom:271.502560pt;}
.y96{bottom:279.834560pt;}
.y30{bottom:281.414080pt;}
.y74{bottom:283.990560pt;}
.y4b{bottom:284.787200pt;}
.y62{bottom:287.668960pt;}
.y14{bottom:290.864800pt;}
.y95{bottom:303.194080pt;}
.y73{bottom:303.352800pt;}
.y2f{bottom:304.773600pt;}
.y4a{bottom:308.306080pt;}
.y13{bottom:310.864480pt;}
.y61{bottom:311.187840pt;}
.y94{bottom:322.715680pt;}
.y72{bottom:322.874400pt;}
.y2e{bottom:324.295200pt;}
.y49{bottom:327.668320pt;}
.y60{bottom:330.550080pt;}
.y8f{bottom:339.660160pt;}
.y93{bottom:342.077920pt;}
.y2d{bottom:343.657440pt;}
.y71{bottom:346.233920pt;}
.y48{bottom:347.189920pt;}
.y5f{bottom:349.912320pt;}
.yd3{bottom:353.476480pt;}
.y12{bottom:354.383040pt;}
.y92{bottom:361.918240pt;}
.y2c{bottom:363.019680pt;}
.y70{bottom:365.596160pt;}
.yd2{bottom:368.034240pt;}
.yb6{bottom:369.279520pt;}
.y5e{bottom:369.433920pt;}
.y47{bottom:370.708800pt;}
.y11{bottom:373.745280pt;}
.y91{bottom:378.080000pt;}
.yb5{bottom:382.240000pt;}
.yd1{bottom:382.270400pt;}
.y2b{bottom:382.381920pt;}
.y6f{bottom:385.117760pt;}
.y46{bottom:390.230400pt;}
.y5d{bottom:393.112160pt;}
.y10{bottom:393.266880pt;}
.yb4{bottom:393.920000pt;}
.yd0{bottom:396.667360pt;}
.yb3{bottom:399.200000pt;}
.y2a{bottom:401.903520pt;}
.y6e{bottom:404.480000pt;}
.y90{bottom:407.039840pt;}
.ycf{bottom:411.064320pt;}
.yf{bottom:412.629120pt;}
.y45{bottom:413.749280pt;}
.y5c{bottom:416.631040pt;}
.y6d{bottom:419.839520pt;}
.y29{bottom:421.265760pt;}
.yce{bottom:425.461280pt;}
.y6c{bottom:432.800000pt;}
.y44{bottom:433.111520pt;}
.ye{bottom:435.988640pt;}
.y5b{bottom:435.993280pt;}
.ycd{bottom:439.858240pt;}
.y28{bottom:440.628000pt;}
.y6b{bottom:444.160000pt;}
.y6a{bottom:448.320000pt;}
.y43{bottom:452.633120pt;}
.ycc{bottom:454.255200pt;}
.yd{bottom:455.510240pt;}
.y5a{bottom:455.514880pt;}
.y27{bottom:460.149600pt;}
.ycb{bottom:468.652160pt;}
.y42{bottom:471.995360pt;}
.yc{bottom:474.872480pt;}
.y59{bottom:479.033760pt;}
.y8e{bottom:479.511840pt;}
.yca{bottom:483.049120pt;}
.y26{bottom:483.509120pt;}
.y41{bottom:495.673600pt;}
.yc9{bottom:497.446080pt;}
.yb{bottom:498.232000pt;}
.y58{bottom:498.555360pt;}
.y25{bottom:502.871360pt;}
.yc8{bottom:511.843040pt;}
.y40{bottom:515.035840pt;}
.ya{bottom:517.753600pt;}
.y57{bottom:517.917600pt;}
.y24{bottom:522.392960pt;}
.yc7{bottom:526.240000pt;}
.y81{bottom:526.390240pt;}
.yab{bottom:530.387520pt;}
.y3f{bottom:534.398080pt;}
.y9{bottom:537.115840pt;}
.yc6{bottom:541.440000pt;}
.y56{bottom:541.595840pt;}
.y23{bottom:541.755200pt;}
.y80{bottom:545.752480pt;}
.yaa{bottom:549.749760pt;}
.ydd{bottom:553.573333pt;}
.y3e{bottom:553.919680pt;}
.y8{bottom:556.478080pt;}
.yc5{bottom:558.560000pt;}
.y8d{bottom:561.117440pt;}
.y22{bottom:565.114720pt;}
.ya9{bottom:569.112000pt;}
.ydc{bottom:570.693333pt;}
.yc4{bottom:571.686080pt;}
.y3d{bottom:573.281920pt;}
.y7{bottom:575.999680pt;}
.y8c{bottom:580.639040pt;}
.y21{bottom:584.636320pt;}
.ydb{bottom:585.413333pt;}
.yc3{bottom:586.083040pt;}
.ya0{bottom:588.633600pt;}
.y3c{bottom:592.644160pt;}
.y6{bottom:595.840000pt;}
.yda{bottom:599.973333pt;}
.yc2{bottom:600.480000pt;}
.y20{bottom:603.998560pt;}
.y9f{bottom:607.995840pt;}
.y3b{bottom:612.643840pt;}
.yd9{bottom:614.693333pt;}
.yc1{bottom:615.680000pt;}
.y7f{bottom:623.360800pt;}
.y1f{bottom:627.358080pt;}
.yd8{bottom:629.253333pt;}
.yc0{bottom:633.289120pt;}
.y5{bottom:636.640000pt;}
.y3a{bottom:642.085600pt;}
.y8b{bottom:642.882400pt;}
.yd7{bottom:643.973333pt;}
.y1e{bottom:646.879680pt;}
.ybf{bottom:647.686080pt;}
.y4{bottom:656.000000pt;}
.yd6{bottom:658.533333pt;}
.ybe{bottom:662.083040pt;}
.y8a{bottom:662.244640pt;}
.y1d{bottom:666.241920pt;}
.yd5{bottom:673.253333pt;}
.ybd{bottom:676.480000pt;}
.y1c{bottom:685.604160pt;}
.yd4{bottom:687.973333pt;}
.ybc{bottom:691.680000pt;}
.y1b{bottom:705.125760pt;}
.ybb{bottom:707.680000pt;}
.y3{bottom:707.840000pt;}
.y1{bottom:737.920000pt;}
.h6{height:14.625000pt;}
.ha{height:19.305000pt;}
.hc{height:29.658880pt;}
.h1{height:34.261120pt;}
.he{height:34.453125pt;}
.hb{height:37.927680pt;}
.h5{height:39.195000pt;}
.h4{height:40.618125pt;}
.hf{height:42.262500pt;}
.h2{height:42.442880pt;}
.hd{height:44.437500pt;}
.h9{height:48.555000pt;}
.h3{height:48.937500pt;}
.h0{height:793.333333pt;}
.h7{height:793.760000pt;}
.h8{height:794.000000pt;}
.w0{width:559.110667pt;}
.w1{width:559.333333pt;}
.w3{width:559.360000pt;}
.w2{width:559.520000pt;}
.x0{left:0.000000pt;}
.x6{left:66.080000pt;}
.x7{left:90.063680pt;}
.x3{left:94.560000pt;}
.xa{left:99.365600pt;}
.xb{left:103.835040pt;}
.x8{left:118.547520pt;}
.x4{left:123.360000pt;}
.x1{left:290.880000pt;}
.x9{left:468.000000pt;}
.x2{left:480.640000pt;}
.xc{left:495.200000pt;}
.x5{left:496.480000pt;}
}


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