/* -- DATAGRID CSS -- */

/*	=============================================== */
/*	General table stuff for datagrid css class */

table.datagrid {   
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	text-align: left;
	border-collapse: collapse;
}

table.datagrid a {
	text-decoration: none;
	color: #666;
}
table.datagrid a:hover {
	text-decoration: underline;
	color: #666;
}

/*	=============================================== */
/*	Time to deal with Table Caption and Header Row  */

caption.datagrid {
	height: 45px;
	line-height: 44px;
	color: #000000;
	font-weight: bold;
	text-align: center;
	width: 100%;
	margin: 0;
	padding: 0;
}
thead.datagrid th {
	font-size: 105%;
	color: #ffffff;
	background-color: #222628;
	height: 33px;
}
thead.datagrid th:hover {
	/* background-color: nothing changes right now */
	
}


/*	=============================================== */
/*	TR elements handled here (main rows only)  */

tr.datagrid {
	vertical-align: top;
}
tr.datagrid,th.datagrid,td.datagrid {
	padding: .75em;
}
tr.datagrid:hover {
	background-color: #b3b3b3;
	color: white;
}
tr.datagrid:hover a {
	text-decoration: underline;
	color: white;
	background-color: #b3b3b3;
}


/*	=============================================== */
/*	TR elements handled here (alt rows only)  */

tr.dgalt {
	background-color: #fee95d;
	vertical-align: top;
}
tr.dgalt,th.dgalt,td.dgalt {
	padding: .75em;
}
tr.dgalt:hover {
	background-color: #b3b3b3;
	color: white;
}
tr.dgalt:hover a {
	text-decoration: underline;
	color: white;
	background-color: #b3b3b3;
}


/*	=============================================== */
/*	table foot elements handled here  */

tfoot.datagrid tr {
	/* background-color: nothing set at this time */
}
tfoot.datagrid td, tfoot.datagrid th{
	color: #000;
	border: 0px;
}
