/*		Table-list.css
 *	Table, row and cell styles for tables with class 'list'.
 */

/* Table style */
table.list {
	color:				#000;
}

/* Links in table */
table.list a {
	color:				#678;
}
table.list a:hover {
	color:				#89A;
}

/* Single-Cell styles */
table.list td {
	/* For future use, or custom-theme */
}
/* Single-cell hover */
table.list td:hover {
	/* For future use, or custom-theme */
}

/* Full row styles */
table.list tr.head td {
	padding:			2px;
	
	background:			#345;
	
	font-weight:		bold;
	color:				#FFF;
}
/* All cells in 'odd' row */
table.list tr.odd td {
	background:			#FFF;
}
/* All cells in 'even' row */
table.list tr.even td {
	background:			#EEEFFF;
}
/* All cells in 'selected' row */
table.list tr.selected td {
	background:			#DFA;
}
/* Full row hover, odd, even and selected */
table.list tr.odd:hover td, table.list tr.even:hover td, table.list tr.selected:hover td {
	background:			#FDA;
}

table.list tr.info td {
	vertical-align:		top !important;
	padding-left:		10px;
}

table.discreet tr.head td {
	background:			none;
	
	color:				#000;
	
	padding-left:		10px
}
table.discreet tr.info td {
	padding-left:		20px;
}