@media screen
{
	table {
		/*width: 80%;*/
		margin: 1em auto;
		border-collapse: collapse;
	}

	thead th,
	thead td,
	tfoot th {
		padding: 0.5em;
		text-align: left;
		border: 1px solid black;
		background:ButtonFace;
	}

	tfoot td {
		border-top: 1px solid black;
	}

	tbody td {
		padding: 0.5em;
		border-left: 1px solid black;
		border-right: 1px solid black;
	}

	tbody tr.odd {
		background-color: #DDF;
	}

	td.numeric,
	th.numeric {
		text-align: right;
	}
}

@media print
{
	table {
		/*width: 80%;*/
		margin: 1em auto;
		border-collapse: collapse;
	}

	thead th,
	thead td,
	tfoot th {
		padding: 0.5em;
		text-align: left;
		border: 1px solid black;
		background:ButtonFace;
	}

	tfoot td {
		border-top: 1px solid black;
	}

	tbody td {
		padding-left: 0.5em;
		padding-right: 0.5em;
		padding-top: 0.1em;
		padding-bottom: 0.1em;
		border-left: 1px solid gainsboro;
		border-right: 1px solid gainsboro;
		font-size: 9pt;
	}

	tbody tr.odd {
		background-color: white; /*#DDF;*/
	}

	td.numeric,
	th.numeric {
		text-align: right;
	}
}
