.fixed-table-container {
  height: 250px;
  border: 2px solid black;
  margin: 10px auto;
  background-color: white;
  /* above is decorative or flexible */
  position: relative;
  /* could be absolute or relative */
  padding-top: 30px;
  /* height of header */
}
.fixed-table-container .cTitel {
  display: inline;
}
.fixed-table-container.white {
  border: none;
  padding-top: 0;
  height: auto !important;
}
.fixed-table-container.white .th-inner {
  position: relative;
  text-align: center;
  color: #00678d;
}
.fixed-table-container.white td {
  text-align: center;
}
.fixed-table-container.zebra {
  background-color: #bfd7e4;
}
.fixed-table-container-inner {
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
}
.header-zebra {
  background-color: #bfd7e4;
  height: 32px;
  /* height of header */
  position: absolute;
  border-bottom: 2px solid black;
  top: 0;
  right: 0;
  left: 0;
}
.header-white {
  background-color: #FFF;
  height: 32px;
  /* height of header */
  position: absolute;
  border-bottom: 1px solid black;
  top: 0;
  right: 0;
  left: 0;
}
.header-background {
  background-color: #baf39d;
  height: 30px;
  /* height of header */
  position: absolute;
  border-bottom: 2px solid black;
  top: 0;
  right: 0;
  left: 0;
}
.table-row-white {
  border-bottom: 1px solid black;
}
table {
  background-color: white;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 0.8rem;
  line-height: 1.6rem;
}
.th-inner {
  position: absolute;
  top: 0;
  line-height: 30px;
  /* height of header */
  text-align: left;
  border-left: 1px solid black;
  border-bottom: 1px solid black;
  padding-left: 5px;
  margin-left: -5px;
}
.first .th-inner, .white .th-inner {
  border-left: none;
  padding-left: 6px;
}
/* for tableSorter headers */
.fixed-table-container.sort-decoration {
  overflow-x: hidden;
  min-width: 530px;
  /* enough width to show arrows */
}
.fixed-table-container.thin.sort-decoration {
  overflow-x: hidden;
  min-width: 330px;
  /* enough width to show arrows */
}
.sort-decoration .th-inner {
  width: 100%;
}
.header .th-inner.white {
  background-color: white;
}
.header .th-inner.zebra {
  background-color: #bfd7e4;
}
.headerSortUp .th-inner, .headerSortDown .th-inner {
  background-color: white;
}
tr.odd {
  background-color: #bfd7e4;
}
tr.even {
  background-color: #ddeaf1;
}
span.sortArrow {
  background: url(../images/sortupdown.png) 0 4px no-repeat transparent;
  padding: 1px 10px;
  line-height: 30px;
}
.headerSortUp span.sortArrow {
  background: url(../images/sortup.png) 0 7px no-repeat transparent;
}
.headerSortDown span.sortArrow {
  background: url(../images/sortdown.png) 0 7px no-repeat transparent;
}
