

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

	Sortable Table
	v 1.4

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

table.sortable {
	border: 1px solid #ccc;
	width: 100%;
	border-collapse:collapse;
	text-align:left;
}

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

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

table.sortable tr.altRow {
	background-color: #fff;
}

table.sortable td {
	padding: 2px;
	line-height: 20px;
	text-align:left;
}
table.sortable tr:hover {
	background-color: #004EAA;
	color: #ffffff;
	}
	
	
table.sortable td a {
/*	color: #000;*/
	text-decoration: none;
}

table.sortable .rightAlign {
	text-align: right;
}



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

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

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


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

table.sortable tr.over {
	background-color: #354158;
	color: #fff;
	cursor: pointer;
}

table.sortable tr.hide {
	display: none;
}

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

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

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


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

