
/* 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_bad805c47d2e.woff")format("woff");}.ff1{font-family:ff1;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:ff2;src:url("fonts/font_0001_dcefeaab1576.woff")format("woff");}.ff2{font-family:ff2;line-height:0.965820;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_f27da8b47343.woff")format("woff");}.ff3{font-family:ff3;line-height:0.706543;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_c34b95649cc9.woff")format("woff");}.ff4{font-family:ff4;line-height:0.927734;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_29900df0b524.woff")format("woff");}.ff5{font-family:ff5;line-height:0.917969;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_7588ae0d4be1.woff")format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_59af34167941.woff")format("woff");}.ff7{font-family:ff7;line-height:0.933594;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_8086bfd4935c.woff")format("woff");}.ff8{font-family:ff8;line-height:0.706543;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_31bd04e357eb.woff")format("woff");}.ff9{font-family:ff9;line-height:0.706543;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_e0e89076debf.woff")format("woff");}.ffa{font-family:ffa;line-height:0.706543;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_1b0b19e0b851.woff")format("woff");}.ffb{font-family:ffb;line-height:0.706543;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_9103ae645f58.woff")format("woff");}.ffc{font-family:ffc;line-height:0.706543;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_19520edc26b6.woff")format("woff");}.ffd{font-family:ffd;line-height:0.706543;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_43770454c912.woff")format("woff");}.ffe{font-family:ffe;line-height:0.706543;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_1e6839f8cc5f.woff")format("woff");}.fff{font-family:fff;line-height:0.706543;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:ff10;src:url("fonts/font_0015_dd870c8e66de.woff")format("woff");}.ff10{font-family:ff10;line-height:0.706543;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:ff11;src:url("fonts/font_0016_f27da8b47343.woff")format("woff");}.ff11{font-family:ff11;line-height:0.706543;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:ff12;src:url("fonts/font_0017_7ff480c69230.woff")format("woff");}.ff12{font-family:ff12;line-height:0.706543;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:ff13;src:url("fonts/font_0018_5aece4a99718.woff")format("woff");}.ff13{font-family:ff13;line-height:0.706543;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:ff14;src:url("fonts/font_0019_4c605a3bdc7e.woff")format("woff");}.ff14{font-family:ff14;line-height:0.881836;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:ff15;src:url("fonts/font_0020_53f442e5b589.woff")format("woff");}.ff15{font-family:ff15;line-height:0.706543;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:ff16;src:url("fonts/font_0021_d1f1b75c491d.woff")format("woff");}.ff16{font-family:ff16;line-height:0.910156;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:ff17;src:url("fonts/font_0022_b31eecd2b955.woff")format("woff");}.ff17{font-family:ff17;line-height:0.706543;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:ff18;src:url("fonts/font_0023_8f84749234c8.woff")format("woff");}.ff18{font-family:ff18;line-height:0.706543;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:ff19;src:url("fonts/font_0024_7216edbeadd3.woff")format("woff");}.ff19{font-family:ff19;line-height:0.706543;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:ff1a;src:url("fonts/font_0025_810026da3aed.woff")format("woff");}.ff1a{font-family:ff1a;line-height:0.706543;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:ff1b;src:url("fonts/font_0026_e24d2dc6fe21.woff")format("woff");}.ff1b{font-family:ff1b;line-height:0.706543;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:ff1c;src:url("fonts/font_0027_c061916ab56e.woff")format("woff");}.ff1c{font-family:ff1c;line-height:0.706543;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:ff1d;src:url("fonts/font_0028_7ff480c69230.woff")format("woff");}.ff1d{font-family:ff1d;line-height:0.706543;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:ff1e;src:url("fonts/font_0029_8086bfd4935c.woff")format("woff");}.ff1e{font-family:ff1e;line-height:0.706543;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:ff1f;src:url("fonts/font_0030_2d63832b47ec.woff")format("woff");}.ff1f{font-family:ff1f;line-height:0.706543;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:ff20;src:url("fonts/font_0031_7f32caae4485.woff")format("woff");}.ff20{font-family:ff20;line-height:0.706543;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:ff21;src:url("fonts/font_0032_8755221789ff.woff")format("woff");}.ff21{font-family:ff21;line-height:0.706543;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:ff22;src:url("fonts/font_0033_edc41e1874b1.woff")format("woff");}.ff22{font-family:ff22;line-height:0.706543;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:ff23;src:url("fonts/font_0034_f5931366ead1.woff")format("woff");}.ff23{font-family:ff23;line-height:0.706543;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:ff24;src:url("fonts/font_0035_1712a7710f2a.woff")format("woff");}.ff24{font-family:ff24;line-height:0.706543;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:ff25;src:url("fonts/font_0036_987eeb71c2ff.woff")format("woff");}.ff25{font-family:ff25;line-height:0.706543;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:ff26;src:url("fonts/font_0037_bba8dd08e402.woff")format("woff");}.ff26{font-family:ff26;line-height:0.666504;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:ff27;src:url("fonts/font_0038_c9949df1c263.woff")format("woff");}.ff27{font-family:ff27;line-height:0.706543;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:ff28;src:url("fonts/font_0039_5aece4a99718.woff")format("woff");}.ff28{font-family:ff28;line-height:0.706543;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:ff29;src:url("fonts/font_0040_2d63832b47ec.woff")format("woff");}.ff29{font-family:ff29;line-height:0.706543;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:-27.360000px;}
.v4{vertical-align:-18.720000px;}
.v2{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls33{letter-spacing:-0.129600px;}
.ls34{letter-spacing:-0.115200px;}
.ls37{letter-spacing:-0.072000px;}
.ls36{letter-spacing:-0.064800px;}
.ls38{letter-spacing:-0.057600px;}
.ls39{letter-spacing:-0.050400px;}
.ls8{letter-spacing:-0.036000px;}
.ls6{letter-spacing:-0.028800px;}
.ls4{letter-spacing:-0.021600px;}
.ls9{letter-spacing:-0.014400px;}
.ls5{letter-spacing:-0.007200px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.014400px;}
.ls2e{letter-spacing:0.015000px;}
.ls7{letter-spacing:0.021600px;}
.ls2{letter-spacing:0.028800px;}
.lsb{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.055680px;}
.ls21{letter-spacing:0.060600px;}
.ls1a{letter-spacing:0.123552px;}
.lsf{letter-spacing:0.168000px;}
.ls1d{letter-spacing:0.200736px;}
.ls15{letter-spacing:0.224352px;}
.lsc{letter-spacing:0.236160px;}
.ls28{letter-spacing:0.240000px;}
.ls2d{letter-spacing:0.252720px;}
.ls23{letter-spacing:0.253872px;}
.ls18{letter-spacing:0.289296px;}
.ls13{letter-spacing:0.295200px;}
.ls12{letter-spacing:0.318816px;}
.ls20{letter-spacing:0.330000px;}
.ls11{letter-spacing:0.330624px;}
.ls1c{letter-spacing:0.354240px;}
.ls16{letter-spacing:0.371952px;}
.ls31{letter-spacing:0.383760px;}
.ls1e{letter-spacing:0.395568px;}
.ls30{letter-spacing:0.478224px;}
.ls17{letter-spacing:0.484128px;}
.ls24{letter-spacing:0.490032px;}
.ls19{letter-spacing:0.495936px;}
.ls25{letter-spacing:0.507744px;}
.ls29{letter-spacing:0.513648px;}
.ls3{letter-spacing:0.516000px;}
.lsd{letter-spacing:0.543168px;}
.ls14{letter-spacing:0.554976px;}
.ls22{letter-spacing:0.578592px;}
.ls2a{letter-spacing:0.602208px;}
.lse{letter-spacing:0.608112px;}
.ls2f{letter-spacing:0.637632px;}
.ls27{letter-spacing:0.808848px;}
.ls2b{letter-spacing:1.224000px;}
.ls1b{letter-spacing:11.058000px;}
.lsa{letter-spacing:15.552000px;}
.ls32{letter-spacing:20.808000px;}
.ls35{letter-spacing:29.455200px;}
.ls2c{letter-spacing:59.866560px;}
.ls1f{letter-spacing:74.880000px;}
.ls26{letter-spacing:323.326656px;}
.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;}
}
.ws1{word-spacing:-37.297920px;}
.ws23{word-spacing:-36.781920px;}
.ws14{word-spacing:-18.036000px;}
.ws12{word-spacing:-18.014400px;}
.ws2b{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.985600px;}
.ws2a{word-spacing:-15.338592px;}
.ws1d{word-spacing:-12.003552px;}
.ws20{word-spacing:-11.880000px;}
.ws25{word-spacing:-0.867888px;}
.ws16{word-spacing:-0.667152px;}
.ws29{word-spacing:-0.661248px;}
.ws26{word-spacing:-0.637632px;}
.ws17{word-spacing:-0.614016px;}
.ws15{word-spacing:-0.602208px;}
.ws28{word-spacing:-0.572688px;}
.ws22{word-spacing:-0.566784px;}
.ws1c{word-spacing:-0.554976px;}
.ws21{word-spacing:-0.549072px;}
.ws19{word-spacing:-0.543168px;}
.ws1f{word-spacing:-0.454608px;}
.ws18{word-spacing:-0.430992px;}
.ws1b{word-spacing:-0.348336px;}
.ws1e{word-spacing:-0.259776px;}
.ws11{word-spacing:-0.100800px;}
.wsa{word-spacing:-0.093600px;}
.ws3{word-spacing:-0.086400px;}
.ws8{word-spacing:-0.072000px;}
.ws4{word-spacing:-0.064800px;}
.ws1a{word-spacing:-0.059040px;}
.ws2{word-spacing:-0.050400px;}
.ws0{word-spacing:0.000000px;}
.ws24{word-spacing:0.516000px;}
.ws7{word-spacing:10.296000px;}
.ws6{word-spacing:10.324800px;}
.wse{word-spacing:12.369600px;}
.wsf{word-spacing:12.384000px;}
.ws5{word-spacing:13.392000px;}
.wsb{word-spacing:15.364800px;}
.ws9{word-spacing:16.768800px;}
.ws10{word-spacing:27.921600px;}
.wsd{word-spacing:28.058400px;}
.wsc{word-spacing:31.507200px;}
.ws27{word-spacing:80.943840px;}
._0{margin-left:-1447.872000px;}
._5{margin-left:-1.008000px;}
._3{width:1.022400px;}
._2{width:2.520000px;}
._1{width:3.816000px;}
._4{width:5.004000px;}
._d{width:6.098400px;}
._12{width:7.308000px;}
._c{width:8.366400px;}
._9{width:9.532800px;}
._b{width:10.728000px;}
._6{width:11.880000px;}
._11{width:13.053600px;}
._8{width:14.112000px;}
._7{width:15.141600px;}
._17{width:16.444800px;}
._15{width:19.742400px;}
._16{width:20.757600px;}
._a{width:21.859200px;}
._f{width:23.493600px;}
._10{width:24.573600px;}
._14{width:26.244000px;}
._18{width:27.619200px;}
._1b{width:28.958400px;}
._e{width:30.852000px;}
._1d{width:32.119200px;}
._1c{width:33.242400px;}
._1e{width:34.480800px;}
._1a{width:35.661600px;}
._21{width:36.806400px;}
._19{width:39.074400px;}
._13{width:40.694400px;}
._23{width:42.235200px;}
._22{width:44.121600px;}
._26{width:45.748800px;}
._2a{width:47.952000px;}
._28{width:50.536800px;}
._29{width:52.632000px;}
._27{width:54.583200px;}
._25{width:70.084800px;}
._24{width:152.640000px;}
._20{width:835.975296px;}
._1f{width:1048.401216px;}
.fcb{color:rgb(255,255,0);}
.fca{color:rgb(0,0,109);}
.fc7{color:rgb(0,0,255);}
.fc5{color:rgb(155,187,89);}
.fc9{color:rgb(34,30,31);}
.fc8{color:rgb(102,102,102);}
.fc6{color:rgb(26,26,26);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(99,100,102);}
.fc0{color:rgb(86,87,89);}
.fs5{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:59.040000px;}
.fs6{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:21.259500px;}
.y10{bottom:80.574000px;}
.ycb{bottom:80.575500px;}
.y69{bottom:89.913090px;}
.y50{bottom:92.074500px;}
.yeb{bottom:92.075250px;}
.y85{bottom:92.076000px;}
.yb3{bottom:93.515250px;}
.ye8{bottom:94.235250px;}
.ya0{bottom:96.755250px;}
.y66{bottom:100.714500px;}
.yb1{bottom:102.514500px;}
.y4{bottom:103.411350px;}
.y68{bottom:107.197050px;}
.yca{bottom:109.719600px;}
.y9f{bottom:110.435250px;}
.y2e{bottom:111.514500px;}
.ya7{bottom:111.874500px;}
.y9e{bottom:115.474500px;}
.yc8{bottom:115.834500px;}
.y3{bottom:117.811350px;}
.yf5{bottom:117.994500px;}
.y10a{bottom:117.995250px;}
.y4f{bottom:123.034500px;}
.yea{bottom:123.035250px;}
.y84{bottom:123.036000px;}
.ye7{bottom:125.195250px;}
.y67{bottom:128.435250px;}
.y65{bottom:131.674500px;}
.y2{bottom:132.211350px;}
.yb0{bottom:133.834500px;}
.yc9{bottom:134.916000px;}
.y2d{bottom:142.474500px;}
.ya6{bottom:142.834500px;}
.y5{bottom:146.059350px;}
.y9d{bottom:146.434500px;}
.yc7{bottom:146.794500px;}
.yf4{bottom:149.314500px;}
.y109{bottom:149.316000px;}
.y4e{bottom:153.994500px;}
.y83{bottom:153.996000px;}
.ye6{bottom:156.156000px;}
.y64{bottom:162.634500px;}
.yaf{bottom:164.794500px;}
.y10c{bottom:167.314500px;}
.y2c{bottom:173.794500px;}
.y9c{bottom:177.394500px;}
.yc6{bottom:177.754500px;}
.yf3{bottom:180.274500px;}
.y4d{bottom:185.314500px;}
.y82{bottom:185.316000px;}
.ye5{bottom:187.474500px;}
.y63{bottom:193.594500px;}
.yae{bottom:195.754500px;}
.y10b{bottom:198.274500px;}
.y2b{bottom:204.754500px;}
.y9b{bottom:208.354500px;}
.y108{bottom:211.234500px;}
.y4c{bottom:216.274500px;}
.y81{bottom:216.276000px;}
.ye4{bottom:218.434500px;}
.y62{bottom:224.914500px;}
.yad{bottom:226.714500px;}
.yf2{bottom:229.234500px;}
.yb5{bottom:230.316300px;}
.y2a{bottom:235.714500px;}
.y9a{bottom:239.674500px;}
.yc5{bottom:240.034500px;}
.y107{bottom:242.194500px;}
.y4b{bottom:247.234500px;}
.y80{bottom:247.236000px;}
.yb4{bottom:247.954500px;}
.ye3{bottom:249.396000px;}
.y61{bottom:255.874500px;}
.yac{bottom:258.034500px;}
.yf1{bottom:260.194500px;}
.y9{bottom:262.435350px;}
.y29{bottom:266.674500px;}
.ya5{bottom:267.034500px;}
.y99{bottom:270.634500px;}
.y106{bottom:273.514500px;}
.y8{bottom:276.835350px;}
.y4a{bottom:278.194500px;}
.y7f{bottom:278.196000px;}
.ye2{bottom:280.354500px;}
.y60{bottom:286.834500px;}
.yab{bottom:288.994500px;}
.y7{bottom:291.235350px;}
.yf0{bottom:291.514500px;}
.y28{bottom:297.994500px;}
.y98{bottom:301.594500px;}
.yc4{bottom:301.954500px;}
.y105{bottom:304.474500px;}
.y49{bottom:309.514500px;}
.y7e{bottom:309.516000px;}
.ye1{bottom:311.674500px;}
.y5f{bottom:317.794500px;}
.y6{bottom:320.035350px;}
.yef{bottom:322.474500px;}
.y27{bottom:328.954500px;}
.y97{bottom:332.554500px;}
.yc3{bottom:332.914500px;}
.y104{bottom:335.434500px;}
.y48{bottom:340.474500px;}
.y7d{bottom:340.476000px;}
.ye0{bottom:342.634500px;}
.yaa{bottom:348.397380px;}
.y5e{bottom:349.114500px;}
.yee{bottom:353.434500px;}
.y26{bottom:359.914500px;}
.y96{bottom:363.874500px;}
.yc2{bottom:364.234500px;}
.y103{bottom:366.394500px;}
.y47{bottom:371.434500px;}
.y7c{bottom:371.436000px;}
.ydf{bottom:373.594500px;}
.y5d{bottom:380.074500px;}
.yed{bottom:384.394500px;}
.y25{bottom:390.874500px;}
.ya4{bottom:391.234500px;}
.y95{bottom:394.834500px;}
.yc1{bottom:395.194500px;}
.y102{bottom:397.714500px;}
.y46{bottom:402.394500px;}
.y7b{bottom:402.396000px;}
.yde{bottom:404.554500px;}
.y5c{bottom:411.034500px;}
.yec{bottom:415.714500px;}
.y24{bottom:422.194500px;}
.y94{bottom:425.794500px;}
.yc0{bottom:426.154500px;}
.y101{bottom:428.674500px;}
.y45{bottom:433.714500px;}
.y7a{bottom:433.716000px;}
.ydd{bottom:435.514500px;}
.y5b{bottom:441.994500px;}
.y23{bottom:453.154500px;}
.y93{bottom:456.754500px;}
.ybf{bottom:457.114500px;}
.y100{bottom:459.634500px;}
.y44{bottom:464.674500px;}
.y79{bottom:464.676000px;}
.ydc{bottom:466.834500px;}
.y5a{bottom:473.314500px;}
.y22{bottom:484.114500px;}
.y92{bottom:488.074500px;}
.ybe{bottom:488.434500px;}
.yff{bottom:490.594500px;}
.y43{bottom:495.634500px;}
.y78{bottom:495.636000px;}
.ydb{bottom:497.794500px;}
.y59{bottom:504.274500px;}
.ya3{bottom:515.434500px;}
.y91{bottom:519.034500px;}
.ybd{bottom:519.394500px;}
.y42{bottom:526.594500px;}
.y77{bottom:526.596000px;}
.y86{bottom:528.754500px;}
.y58{bottom:535.234500px;}
.yfe{bottom:539.916000px;}
.y21{bottom:546.394500px;}
.y90{bottom:549.994500px;}
.ybc{bottom:550.354500px;}
.y41{bottom:557.914500px;}
.y76{bottom:557.916000px;}
.yda{bottom:559.714500px;}
.y57{bottom:566.194500px;}
.yfd{bottom:570.876000px;}
.y20{bottom:578.074500px;}
.y8f{bottom:580.954500px;}
.ybb{bottom:581.314500px;}
.y40{bottom:588.874500px;}
.y75{bottom:588.876000px;}
.y56{bottom:597.514500px;}
.yfc{bottom:601.836000px;}
.ya2{bottom:608.314500px;}
.yd9{bottom:609.036000px;}
.y8e{bottom:612.274500px;}
.yba{bottom:612.634500px;}
.y3f{bottom:619.834500px;}
.y74{bottom:619.836000px;}
.y55{bottom:628.474500px;}
.yfb{bottom:632.796000px;}
.yd8{bottom:639.996000px;}
.y8d{bottom:643.234500px;}
.yb9{bottom:643.594500px;}
.y3e{bottom:650.794500px;}
.y73{bottom:650.796000px;}
.y54{bottom:659.434500px;}
.yfa{bottom:664.116000px;}
.yd7{bottom:670.956000px;}
.y1f{bottom:673.114500px;}
.y8c{bottom:674.554500px;}
.ya1{bottom:677.434500px;}
.y3d{bottom:682.114500px;}
.y72{bottom:682.116000px;}
.yb2{bottom:684.634500px;}
.yf9{bottom:695.076000px;}
.yd6{bottom:701.916000px;}
.y1e{bottom:704.794500px;}
.yb8{bottom:705.514500px;}
.y8b{bottom:706.594500px;}
.ya9{bottom:707.316300px;}
.y3c{bottom:713.074500px;}
.y71{bottom:713.076000px;}
.y53{bottom:721.714500px;}
.ya8{bottom:724.954500px;}
.yf8{bottom:726.036000px;}
.yd5{bottom:733.236000px;}
.y1d{bottom:736.474500px;}
.yb7{bottom:736.834500px;}
.y8a{bottom:738.994500px;}
.y3b{bottom:744.034500px;}
.y70{bottom:744.036000px;}
.yf7{bottom:756.996000px;}
.yd4{bottom:764.196000px;}
.y1{bottom:767.491050px;}
.y1c{bottom:768.154500px;}
.y89{bottom:771.394500px;}
.y3a{bottom:774.994500px;}
.y6f{bottom:774.996000px;}
.yf{bottom:784.040550px;}
.yf6{bottom:788.316000px;}
.y52{bottom:790.474500px;}
.yd3{bottom:795.156000px;}
.yb6{bottom:796.234500px;}
.y1b{bottom:799.834500px;}
.y88{bottom:803.794500px;}
.y39{bottom:806.314500px;}
.y51{bottom:806.316000px;}
.yd2{bottom:826.114500px;}
.y1a{bottom:831.514500px;}
.y87{bottom:836.194500px;}
.y38{bottom:837.274500px;}
.y6e{bottom:837.276000px;}
.yd1{bottom:857.434500px;}
.ye{bottom:862.391850px;}
.y19{bottom:863.194500px;}
.y37{bottom:868.234500px;}
.y6d{bottom:868.236000px;}
.y18{bottom:894.874500px;}
.y36{bottom:899.194500px;}
.y6c{bottom:899.196000px;}
.yd{bottom:905.591850px;}
.y17{bottom:926.194500px;}
.y35{bottom:930.514500px;}
.y6b{bottom:930.516000px;}
.yd0{bottom:940.234500px;}
.yc{bottom:948.791850px;}
.y16{bottom:957.874500px;}
.y34{bottom:961.474500px;}
.y6a{bottom:961.476000px;}
.ycf{bottom:971.554500px;}
.y15{bottom:989.554500px;}
.yb{bottom:991.991850px;}
.y33{bottom:992.434500px;}
.ye9{bottom:992.436000px;}
.yce{bottom:1002.514500px;}
.y14{bottom:1021.234500px;}
.y32{bottom:1023.394500px;}
.ycd{bottom:1033.474500px;}
.ya{bottom:1037.031000px;}
.y31{bottom:1054.714500px;}
.ycc{bottom:1064.794500px;}
.y13{bottom:1084.594500px;}
.y30{bottom:1085.674500px;}
.y12{bottom:1116.274500px;}
.y2f{bottom:1116.634500px;}
.hb{height:27.584297px;}
.he{height:27.907031px;}
.hd{height:27.977344px;}
.h10{height:33.714141px;}
.h1{height:36.703125px;}
.h5{height:41.887266px;}
.h11{height:42.377344px;}
.h8{height:48.796875px;}
.hf{height:49.992188px;}
.h7{height:51.082031px;}
.h9{height:51.679688px;}
.hc{height:51.685688px;}
.h2{height:55.054688px;}
.ha{height:67.228594px;}
.h3{height:110.109375px;}
.h6{height:1220.314500px;}
.h4{height:1262.835000px;}
.h0{height:1263.000000px;}
.w4{width:850.393500px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w2{width:892.914000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:21.259500px;}
.x1{left:64.701150px;}
.x5{left:87.813300px;}
.x8{left:114.120450px;}
.x7{left:140.238450px;}
.x2{left:205.824450px;}
.x6{left:260.595300px;}
.x9{left:434.179500px;}
.x3{left:438.139500px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v4{vertical-align:-16.640000pt;}
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls33{letter-spacing:-0.115200pt;}
.ls34{letter-spacing:-0.102400pt;}
.ls37{letter-spacing:-0.064000pt;}
.ls36{letter-spacing:-0.057600pt;}
.ls38{letter-spacing:-0.051200pt;}
.ls39{letter-spacing:-0.044800pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls6{letter-spacing:-0.025600pt;}
.ls4{letter-spacing:-0.019200pt;}
.ls9{letter-spacing:-0.012800pt;}
.ls5{letter-spacing:-0.006400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.012800pt;}
.ls2e{letter-spacing:0.013333pt;}
.ls7{letter-spacing:0.019200pt;}
.ls2{letter-spacing:0.025600pt;}
.lsb{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.049493pt;}
.ls21{letter-spacing:0.053867pt;}
.ls1a{letter-spacing:0.109824pt;}
.lsf{letter-spacing:0.149333pt;}
.ls1d{letter-spacing:0.178432pt;}
.ls15{letter-spacing:0.199424pt;}
.lsc{letter-spacing:0.209920pt;}
.ls28{letter-spacing:0.213333pt;}
.ls2d{letter-spacing:0.224640pt;}
.ls23{letter-spacing:0.225664pt;}
.ls18{letter-spacing:0.257152pt;}
.ls13{letter-spacing:0.262400pt;}
.ls12{letter-spacing:0.283392pt;}
.ls20{letter-spacing:0.293333pt;}
.ls11{letter-spacing:0.293888pt;}
.ls1c{letter-spacing:0.314880pt;}
.ls16{letter-spacing:0.330624pt;}
.ls31{letter-spacing:0.341120pt;}
.ls1e{letter-spacing:0.351616pt;}
.ls30{letter-spacing:0.425088pt;}
.ls17{letter-spacing:0.430336pt;}
.ls24{letter-spacing:0.435584pt;}
.ls19{letter-spacing:0.440832pt;}
.ls25{letter-spacing:0.451328pt;}
.ls29{letter-spacing:0.456576pt;}
.ls3{letter-spacing:0.458667pt;}
.lsd{letter-spacing:0.482816pt;}
.ls14{letter-spacing:0.493312pt;}
.ls22{letter-spacing:0.514304pt;}
.ls2a{letter-spacing:0.535296pt;}
.lse{letter-spacing:0.540544pt;}
.ls2f{letter-spacing:0.566784pt;}
.ls27{letter-spacing:0.718976pt;}
.ls2b{letter-spacing:1.088000pt;}
.ls1b{letter-spacing:9.829333pt;}
.lsa{letter-spacing:13.824000pt;}
.ls32{letter-spacing:18.496000pt;}
.ls35{letter-spacing:26.182400pt;}
.ls2c{letter-spacing:53.214720pt;}
.ls1f{letter-spacing:66.560000pt;}
.ls26{letter-spacing:287.401472pt;}
.ws1{word-spacing:-33.153707pt;}
.ws23{word-spacing:-32.695040pt;}
.ws14{word-spacing:-16.032000pt;}
.ws12{word-spacing:-16.012800pt;}
.ws2b{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.987200pt;}
.ws2a{word-spacing:-13.634304pt;}
.ws1d{word-spacing:-10.669824pt;}
.ws20{word-spacing:-10.560000pt;}
.ws25{word-spacing:-0.771456pt;}
.ws16{word-spacing:-0.593024pt;}
.ws29{word-spacing:-0.587776pt;}
.ws26{word-spacing:-0.566784pt;}
.ws17{word-spacing:-0.545792pt;}
.ws15{word-spacing:-0.535296pt;}
.ws28{word-spacing:-0.509056pt;}
.ws22{word-spacing:-0.503808pt;}
.ws1c{word-spacing:-0.493312pt;}
.ws21{word-spacing:-0.488064pt;}
.ws19{word-spacing:-0.482816pt;}
.ws1f{word-spacing:-0.404096pt;}
.ws18{word-spacing:-0.383104pt;}
.ws1b{word-spacing:-0.309632pt;}
.ws1e{word-spacing:-0.230912pt;}
.ws11{word-spacing:-0.089600pt;}
.wsa{word-spacing:-0.083200pt;}
.ws3{word-spacing:-0.076800pt;}
.ws8{word-spacing:-0.064000pt;}
.ws4{word-spacing:-0.057600pt;}
.ws1a{word-spacing:-0.052480pt;}
.ws2{word-spacing:-0.044800pt;}
.ws0{word-spacing:0.000000pt;}
.ws24{word-spacing:0.458667pt;}
.ws7{word-spacing:9.152000pt;}
.ws6{word-spacing:9.177600pt;}
.wse{word-spacing:10.995200pt;}
.wsf{word-spacing:11.008000pt;}
.ws5{word-spacing:11.904000pt;}
.wsb{word-spacing:13.657600pt;}
.ws9{word-spacing:14.905600pt;}
.ws10{word-spacing:24.819200pt;}
.wsd{word-spacing:24.940800pt;}
.wsc{word-spacing:28.006400pt;}
.ws27{word-spacing:71.950080pt;}
._0{margin-left:-1286.997333pt;}
._5{margin-left:-0.896000pt;}
._3{width:0.908800pt;}
._2{width:2.240000pt;}
._1{width:3.392000pt;}
._4{width:4.448000pt;}
._d{width:5.420800pt;}
._12{width:6.496000pt;}
._c{width:7.436800pt;}
._9{width:8.473600pt;}
._b{width:9.536000pt;}
._6{width:10.560000pt;}
._11{width:11.603200pt;}
._8{width:12.544000pt;}
._7{width:13.459200pt;}
._17{width:14.617600pt;}
._15{width:17.548800pt;}
._16{width:18.451200pt;}
._a{width:19.430400pt;}
._f{width:20.883200pt;}
._10{width:21.843200pt;}
._14{width:23.328000pt;}
._18{width:24.550400pt;}
._1b{width:25.740800pt;}
._e{width:27.424000pt;}
._1d{width:28.550400pt;}
._1c{width:29.548800pt;}
._1e{width:30.649600pt;}
._1a{width:31.699200pt;}
._21{width:32.716800pt;}
._19{width:34.732800pt;}
._13{width:36.172800pt;}
._23{width:37.542400pt;}
._22{width:39.219200pt;}
._26{width:40.665600pt;}
._2a{width:42.624000pt;}
._28{width:44.921600pt;}
._29{width:46.784000pt;}
._27{width:48.518400pt;}
._25{width:62.297600pt;}
._24{width:135.680000pt;}
._20{width:743.089152pt;}
._1f{width:931.912192pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:52.480000pt;}
.fs6{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:18.897333pt;}
.y10{bottom:71.621333pt;}
.ycb{bottom:71.622667pt;}
.y69{bottom:79.922747pt;}
.y50{bottom:81.844000pt;}
.yeb{bottom:81.844667pt;}
.y85{bottom:81.845333pt;}
.yb3{bottom:83.124667pt;}
.ye8{bottom:83.764667pt;}
.ya0{bottom:86.004667pt;}
.y66{bottom:89.524000pt;}
.yb1{bottom:91.124000pt;}
.y4{bottom:91.921200pt;}
.y68{bottom:95.286267pt;}
.yca{bottom:97.528533pt;}
.y9f{bottom:98.164667pt;}
.y2e{bottom:99.124000pt;}
.ya7{bottom:99.444000pt;}
.y9e{bottom:102.644000pt;}
.yc8{bottom:102.964000pt;}
.y3{bottom:104.721200pt;}
.yf5{bottom:104.884000pt;}
.y10a{bottom:104.884667pt;}
.y4f{bottom:109.364000pt;}
.yea{bottom:109.364667pt;}
.y84{bottom:109.365333pt;}
.ye7{bottom:111.284667pt;}
.y67{bottom:114.164667pt;}
.y65{bottom:117.044000pt;}
.y2{bottom:117.521200pt;}
.yb0{bottom:118.964000pt;}
.yc9{bottom:119.925333pt;}
.y2d{bottom:126.644000pt;}
.ya6{bottom:126.964000pt;}
.y5{bottom:129.830533pt;}
.y9d{bottom:130.164000pt;}
.yc7{bottom:130.484000pt;}
.yf4{bottom:132.724000pt;}
.y109{bottom:132.725333pt;}
.y4e{bottom:136.884000pt;}
.y83{bottom:136.885333pt;}
.ye6{bottom:138.805333pt;}
.y64{bottom:144.564000pt;}
.yaf{bottom:146.484000pt;}
.y10c{bottom:148.724000pt;}
.y2c{bottom:154.484000pt;}
.y9c{bottom:157.684000pt;}
.yc6{bottom:158.004000pt;}
.yf3{bottom:160.244000pt;}
.y4d{bottom:164.724000pt;}
.y82{bottom:164.725333pt;}
.ye5{bottom:166.644000pt;}
.y63{bottom:172.084000pt;}
.yae{bottom:174.004000pt;}
.y10b{bottom:176.244000pt;}
.y2b{bottom:182.004000pt;}
.y9b{bottom:185.204000pt;}
.y108{bottom:187.764000pt;}
.y4c{bottom:192.244000pt;}
.y81{bottom:192.245333pt;}
.ye4{bottom:194.164000pt;}
.y62{bottom:199.924000pt;}
.yad{bottom:201.524000pt;}
.yf2{bottom:203.764000pt;}
.yb5{bottom:204.725600pt;}
.y2a{bottom:209.524000pt;}
.y9a{bottom:213.044000pt;}
.yc5{bottom:213.364000pt;}
.y107{bottom:215.284000pt;}
.y4b{bottom:219.764000pt;}
.y80{bottom:219.765333pt;}
.yb4{bottom:220.404000pt;}
.ye3{bottom:221.685333pt;}
.y61{bottom:227.444000pt;}
.yac{bottom:229.364000pt;}
.yf1{bottom:231.284000pt;}
.y9{bottom:233.275867pt;}
.y29{bottom:237.044000pt;}
.ya5{bottom:237.364000pt;}
.y99{bottom:240.564000pt;}
.y106{bottom:243.124000pt;}
.y8{bottom:246.075867pt;}
.y4a{bottom:247.284000pt;}
.y7f{bottom:247.285333pt;}
.ye2{bottom:249.204000pt;}
.y60{bottom:254.964000pt;}
.yab{bottom:256.884000pt;}
.y7{bottom:258.875867pt;}
.yf0{bottom:259.124000pt;}
.y28{bottom:264.884000pt;}
.y98{bottom:268.084000pt;}
.yc4{bottom:268.404000pt;}
.y105{bottom:270.644000pt;}
.y49{bottom:275.124000pt;}
.y7e{bottom:275.125333pt;}
.ye1{bottom:277.044000pt;}
.y5f{bottom:282.484000pt;}
.y6{bottom:284.475867pt;}
.yef{bottom:286.644000pt;}
.y27{bottom:292.404000pt;}
.y97{bottom:295.604000pt;}
.yc3{bottom:295.924000pt;}
.y104{bottom:298.164000pt;}
.y48{bottom:302.644000pt;}
.y7d{bottom:302.645333pt;}
.ye0{bottom:304.564000pt;}
.yaa{bottom:309.686560pt;}
.y5e{bottom:310.324000pt;}
.yee{bottom:314.164000pt;}
.y26{bottom:319.924000pt;}
.y96{bottom:323.444000pt;}
.yc2{bottom:323.764000pt;}
.y103{bottom:325.684000pt;}
.y47{bottom:330.164000pt;}
.y7c{bottom:330.165333pt;}
.ydf{bottom:332.084000pt;}
.y5d{bottom:337.844000pt;}
.yed{bottom:341.684000pt;}
.y25{bottom:347.444000pt;}
.ya4{bottom:347.764000pt;}
.y95{bottom:350.964000pt;}
.yc1{bottom:351.284000pt;}
.y102{bottom:353.524000pt;}
.y46{bottom:357.684000pt;}
.y7b{bottom:357.685333pt;}
.yde{bottom:359.604000pt;}
.y5c{bottom:365.364000pt;}
.yec{bottom:369.524000pt;}
.y24{bottom:375.284000pt;}
.y94{bottom:378.484000pt;}
.yc0{bottom:378.804000pt;}
.y101{bottom:381.044000pt;}
.y45{bottom:385.524000pt;}
.y7a{bottom:385.525333pt;}
.ydd{bottom:387.124000pt;}
.y5b{bottom:392.884000pt;}
.y23{bottom:402.804000pt;}
.y93{bottom:406.004000pt;}
.ybf{bottom:406.324000pt;}
.y100{bottom:408.564000pt;}
.y44{bottom:413.044000pt;}
.y79{bottom:413.045333pt;}
.ydc{bottom:414.964000pt;}
.y5a{bottom:420.724000pt;}
.y22{bottom:430.324000pt;}
.y92{bottom:433.844000pt;}
.ybe{bottom:434.164000pt;}
.yff{bottom:436.084000pt;}
.y43{bottom:440.564000pt;}
.y78{bottom:440.565333pt;}
.ydb{bottom:442.484000pt;}
.y59{bottom:448.244000pt;}
.ya3{bottom:458.164000pt;}
.y91{bottom:461.364000pt;}
.ybd{bottom:461.684000pt;}
.y42{bottom:468.084000pt;}
.y77{bottom:468.085333pt;}
.y86{bottom:470.004000pt;}
.y58{bottom:475.764000pt;}
.yfe{bottom:479.925333pt;}
.y21{bottom:485.684000pt;}
.y90{bottom:488.884000pt;}
.ybc{bottom:489.204000pt;}
.y41{bottom:495.924000pt;}
.y76{bottom:495.925333pt;}
.yda{bottom:497.524000pt;}
.y57{bottom:503.284000pt;}
.yfd{bottom:507.445333pt;}
.y20{bottom:513.844000pt;}
.y8f{bottom:516.404000pt;}
.ybb{bottom:516.724000pt;}
.y40{bottom:523.444000pt;}
.y75{bottom:523.445333pt;}
.y56{bottom:531.124000pt;}
.yfc{bottom:534.965333pt;}
.ya2{bottom:540.724000pt;}
.yd9{bottom:541.365333pt;}
.y8e{bottom:544.244000pt;}
.yba{bottom:544.564000pt;}
.y3f{bottom:550.964000pt;}
.y74{bottom:550.965333pt;}
.y55{bottom:558.644000pt;}
.yfb{bottom:562.485333pt;}
.yd8{bottom:568.885333pt;}
.y8d{bottom:571.764000pt;}
.yb9{bottom:572.084000pt;}
.y3e{bottom:578.484000pt;}
.y73{bottom:578.485333pt;}
.y54{bottom:586.164000pt;}
.yfa{bottom:590.325333pt;}
.yd7{bottom:596.405333pt;}
.y1f{bottom:598.324000pt;}
.y8c{bottom:599.604000pt;}
.ya1{bottom:602.164000pt;}
.y3d{bottom:606.324000pt;}
.y72{bottom:606.325333pt;}
.yb2{bottom:608.564000pt;}
.yf9{bottom:617.845333pt;}
.yd6{bottom:623.925333pt;}
.y1e{bottom:626.484000pt;}
.yb8{bottom:627.124000pt;}
.y8b{bottom:628.084000pt;}
.ya9{bottom:628.725600pt;}
.y3c{bottom:633.844000pt;}
.y71{bottom:633.845333pt;}
.y53{bottom:641.524000pt;}
.ya8{bottom:644.404000pt;}
.yf8{bottom:645.365333pt;}
.yd5{bottom:651.765333pt;}
.y1d{bottom:654.644000pt;}
.yb7{bottom:654.964000pt;}
.y8a{bottom:656.884000pt;}
.y3b{bottom:661.364000pt;}
.y70{bottom:661.365333pt;}
.yf7{bottom:672.885333pt;}
.yd4{bottom:679.285333pt;}
.y1{bottom:682.214267pt;}
.y1c{bottom:682.804000pt;}
.y89{bottom:685.684000pt;}
.y3a{bottom:688.884000pt;}
.y6f{bottom:688.885333pt;}
.yf{bottom:696.924933pt;}
.yf6{bottom:700.725333pt;}
.y52{bottom:702.644000pt;}
.yd3{bottom:706.805333pt;}
.yb6{bottom:707.764000pt;}
.y1b{bottom:710.964000pt;}
.y88{bottom:714.484000pt;}
.y39{bottom:716.724000pt;}
.y51{bottom:716.725333pt;}
.yd2{bottom:734.324000pt;}
.y1a{bottom:739.124000pt;}
.y87{bottom:743.284000pt;}
.y38{bottom:744.244000pt;}
.y6e{bottom:744.245333pt;}
.yd1{bottom:762.164000pt;}
.ye{bottom:766.570533pt;}
.y19{bottom:767.284000pt;}
.y37{bottom:771.764000pt;}
.y6d{bottom:771.765333pt;}
.y18{bottom:795.444000pt;}
.y36{bottom:799.284000pt;}
.y6c{bottom:799.285333pt;}
.yd{bottom:804.970533pt;}
.y17{bottom:823.284000pt;}
.y35{bottom:827.124000pt;}
.y6b{bottom:827.125333pt;}
.yd0{bottom:835.764000pt;}
.yc{bottom:843.370533pt;}
.y16{bottom:851.444000pt;}
.y34{bottom:854.644000pt;}
.y6a{bottom:854.645333pt;}
.ycf{bottom:863.604000pt;}
.y15{bottom:879.604000pt;}
.yb{bottom:881.770533pt;}
.y33{bottom:882.164000pt;}
.ye9{bottom:882.165333pt;}
.yce{bottom:891.124000pt;}
.y14{bottom:907.764000pt;}
.y32{bottom:909.684000pt;}
.ycd{bottom:918.644000pt;}
.ya{bottom:921.805333pt;}
.y31{bottom:937.524000pt;}
.ycc{bottom:946.484000pt;}
.y13{bottom:964.084000pt;}
.y30{bottom:965.044000pt;}
.y12{bottom:992.244000pt;}
.y2f{bottom:992.564000pt;}
.hb{height:24.519375pt;}
.he{height:24.806250pt;}
.hd{height:24.868750pt;}
.h10{height:29.968125pt;}
.h1{height:32.625000pt;}
.h5{height:37.233125pt;}
.h11{height:37.668750pt;}
.h8{height:43.375000pt;}
.hf{height:44.437500pt;}
.h7{height:45.406250pt;}
.h9{height:45.937500pt;}
.hc{height:45.942833pt;}
.h2{height:48.937500pt;}
.ha{height:59.758750pt;}
.h3{height:97.875000pt;}
.h6{height:1084.724000pt;}
.h4{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w4{width:755.905333pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w2{width:793.701333pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:18.897333pt;}
.x1{left:57.512133pt;}
.x5{left:78.056267pt;}
.x8{left:101.440400pt;}
.x7{left:124.656400pt;}
.x2{left:182.955067pt;}
.x6{left:231.640267pt;}
.x9{left:385.937333pt;}
.x3{left:389.457333pt;}
}


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