

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

	Sortable Table
	v 1.4

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

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

th {
	background-color: #eee;
	color: #333;
	background: #eee url(images/icon-table-sort.png) no-repeat 4px 6px;
	padding: 4px 4px 4px 15px;
}

.sortableTable input {
 border:0;
 background: transparent;
 cursor: pointer;
}

.sortableTable tr {
	background-color: #fff;
	padding: 4px;
}

.sortableTable tr.altRow {
	background-color: #e5f5d5;
}

.sortableTable td {
 padding: 4px;
}

.rightAlign {
	text-align: right;
}

.centerAlign {
	text-align: center;
}

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

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

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

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

.sortableTable tfoot tr {
 background: #eee;
 font-size: 11px;
 color: #444;
 font-weight: normal;
 font-family: Arial, sans-serif;
}

.sortableTable tr.over {
	background-color: #bf9;
	color: #222;
	cursor: pointer;
}

.sortableTable tr.hide {
	display: none;
}

/***************************/
.tableFilter {
	padding: 2px;
	margin: 5px 0 10px 0;
}

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

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


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