/* -- 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: #000000;
}


/*	=============================================== */
/*	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: #000000;
	height: 33px;
	border-bottom-width:2px;
    border-bottom-color:#000000;
    border-bottom-style:solid;
    border-top-width:2px;
    border-top-color:#000000;
    border-top-style:solid;

}
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 elements handled here (alt rows only)  */

tr.dgalt {
	background-color: #CCCCCC;
	border-bottom-width:1px;
    border-bottom-color:#000000;
    border-bottom-style:solid;
}


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

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