<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

/**************************************************************

	Sortable Table
	v 1.4

**************************************************************/

table {
	border: 0px solid #ccc;
	width: 100%;
}

th {
	background-color: #eee;
	background: #eee url(Images/icon-table-sort.png) no-repeat 2px 8px;
	padding: 4px 4px 4px 14px;
}

tr {
	background-color: #eee;
	padding: 4px;
}

tr.altRow {
	background-color: #FFFCF2;
}

td {
	padding: 0 2px;
}

.rightAlign {
	text-align: right;
}



.sortedASC {
	background: url(Images/icon-table-sort-asc.png) no-repeat 2px 4px #eee;
}

.sortedDESC {
	background: url(Images/icon-table-sort-desc.png) no-repeat 2px 10px #eee;
}

.tableHeaderOver {
	cursor: pointer;
	color: #354158;
}


/*tr.selected {
	background-color: gold;
	color: #fff;
}*/

tr.over {
	background-color: #fffcd6;
	color: #000;
	cursor: pointer;
}

tr.hide {
	display: none;
}

/***************************/
.tableFilter {
	border: 1px solid #ccc;
	padding: 2px;
	margin: 5px 0 10px 0;
}

.tableFilter input {
	border: 1px solid #ccc;
}

.tableFilter select {
	border: 1px solid #ccc;
}


/*************************************************************/
</pre></body></html>