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

	Sortable Table
	v 1.4

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

table {
	border: 1px dotted #333;
	width: 100%;
	font-size: 0.9em;
}

th {
	padding: 4px 4px 4px 14px;
	background-image: url(images/icon-table-sort.png);
	background-repeat: no-repeat;
	background-position: 2px 8px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #F00;
}

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

tr.altRow {
}

td {
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
}

.rightAlign {
	text-align: right;
}



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

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

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


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

tr.over {
	background-color: #F00;
	color: #fff;
	cursor: pointer;
}

tr.hide {
	display: none;
}
td.hide , th.hide{
	display: none;
}

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

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

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


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