/*
 * print style sheet
 */
div.tableContainer {
   overflow: visible;
}
div.tableContainer table > tbody {
   overflow: visible;
}
div.tableContainer table thead td {
   height: 14pt;
} /*adds control for test purposes*/
div.tableContainer table thead td {
   font-size: 11pt;
}
div.tableContainer table tfoot td {
   text-align: center;
   font-size: 9pt;
   border-bottom: solid 1px slategray;
}
div.tableContainer table thead {
   display: table-header-group;
}
div.tableContainer table tfoot {
   display: table-footer-group;
}
div.tableContainer table thead th,
div.tableContainer table thead td {
   position: static;
}
div.tableContainer table thead tr {
   position: static;
} /*prevent problem if print after scrolling table*/
div.tableContainer table tfoot tr {
   position: static;
}


