﻿.stickyHeaderTable {
  position: relative;
}
.stickyHeaderTable table {
  border-collapse: collapse;
  border: 1px solid #665f54;
}
.stickyHeaderTable table thead th {
  border-bottom: 1px solid #665f54;
}
.stickyHeaderTable .stickyHeader {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  position: absolute;
  top: 0;
  left: auto;
  right: auto;
  margin: 0;
  overflow: hidden;
  border-top: none;
  background: #fff;
}
.stickyHeaderTable .stickyHeader thead th {
  border-bottom: none;
}
.stickyHeaderTable .stickyHeader.fixedTop {
  display: block;
  position: fixed;
  z-index: 6;
}
.stickyHeaderTable .stickyHeader.dockedBot {
  position: absolute;
  top: auto !important;
  bottom: 0;
  z-index: 6;
}
@media print {
  .stickyHeaderTable .stickyHeader {
    display: none !important;
  }
}