﻿

@media print
{
	table.printTable
	{
		clear:both;
	}
	table.printTable thead
	{
		display: table-header-group;
	}
	table.printTable tfoot
	{
		display: table-footer-group;
	}
	table.printTable thead tr th
	{
		border-bottom: solid 1px black;
	}
	table.printTable tfoot tr td
	{
		border-top: solid 1px black;
	}
	.noPrint
	{
		display: none;
	}
}
@media screen
{
	table.printTable thead
	{
		display: none;
	}
	table.printTable tfoot
	{
		display: none;
	}
}
