﻿/*
Style sheet for sortable tables
Works with jquery.tablesorter.js
*/
table.tablesorter {
	background-color: #FFF;
	margin:10px 0pt 10px;
	text-align: left;
	border-spacing:0px 0px;
	border: 1px solid #D8D8D8;
}
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
	background-color: #FFCC33;
	border: 1px solid #AAA;
	padding: 4px;
}
table.tablesorter thead tr .header {
	background-image: url(bg.gif);
	background-repeat: no-repeat;
	background-position: center right;
	cursor: pointer;
	border-color: #DDD;
}
table.tablesorter tbody td {
	color: #3D3D3D;
	padding: 4px;
	background-color: #FFF;
	vertical-align: top;
}
table.tablesorter tbody tr.odd td {
	background-color: #FFFFCC;
}
table.tablesorter thead tr .headerSortUp {
	background-image: url(asc.gif);
}
table.tablesorter thead tr .headerSortDown {
	background-image: url(desc.gif);
}
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
	color: #DF0101;
}
