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

	Sortable Table
	v 1.4

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

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

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

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

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

td {
	padding: 0 2px;
}

.rightAlign {
	text-align: right;
}
.leftAlign {
	text-align: left;
}




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

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

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


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

tr.over {
	background-color: #354158;
	color: #fff;
	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;
}


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