/*
COPYRIGHT 2005 FELIPE M. L. GASPER
ALL RIGHTS RESERVED
*/

/* standard supertable.js stylesheet */

table.sortable thead th {
	background-color: buttonface;
}
table.sortable thead th.sortable {
	border-style: solid solid solid solid;
	border-width: 1px 1px 1px 1px;
	border-color: buttonface buttonface buttonface buttonface;
	cursor: pointer;
}
table.sortable thead th.sortable:hover,
table.sortable thead th.IEhover {
	border-color: buttonhighlight buttonshadow buttonshadow buttonhighlight;
}
table.sortable thead th.sortable:active {
	border-color: buttonshadow buttonhighlight buttonhighlight buttonshadow;
}
table.sortable thead th.sortedAsc:after {
	content: ' \2191';
}
table.sortable thead th.sortedDesc:after {
	content: ' \2193';
}
table.sorting {
	cursor: wait;
}

table.striped tr.odd td,
tbody.striped tr.odd td {
	background-color: #f2f2f2;
}

/*	NOW TO ACCOMODATE THE NEW, LESS DOM-INTENSIVE SUPERTABLE CODE
	ALAS, THIS COMES AT THE COST OF MORE COMPLICATED CSS
tr.selectable {
	cursor: pointer;
}
tr.selectable:hover td {
	background-color: #c6f1ff !important;
}
*/
tr.selectable,
tbody.rowsSelectable tr:not(.notSelectable),
table.rowsSelectable tbody:not(rowsNotSelectable) tr:not(.notSelectable) {
	cursor: pointer;
}

table tbody tr.selectable:hover td,
table tbody.rowsSelectable tr:not(.notSelectable):hover td,
table.rowsSelectable tbody:not(.rowsNotSelectable) tr:not(.notSelectable):hover td {
	background-color: #c6f1ff
}

table tr.selectable.dragOver td,
table tbody.rowsSelectable tr.dragOver:not(.notSelectable) td,
table.rowsSelectable tbody:not(.rowsNotSelectable) tr.dragOver:not(.notSelectable) td {
	background-color: #b1dced
}


table tbody tr.IEhover td {
	background-color: #c6f1ff
}
table tbody tr.selected td {
	background-color: #9dc8dc !important;
}
