﻿/* table style */
.datagrid
{
	font-family:Verdana;
	font-size:10px;
	width:740px;
	border:solid 0px #ad9e87;
}

/* common cell styles */
.datagrid th, .datagrid td
{
	cursor:default;
	height:20px;
}

/* header cell style */
.datagrid th
{

	border-bottom-style:solid;
	border-bottom-width:2px;
	border-bottom-color:#ad9e87;
    background:#e1d6c7;
    color:#59483f;	
    font-weight:bold;
    text-align:center;    
}  

/* cell styles */
.datagrid td
{
    color:#000;
	padding:2px 4px;	
	border-bottom-style:solid;
	border-bottom-width:1px;	
    border-bottom-color:#f2e8da;	

}

.datagrid A  {
		color : #000000;
		text-decoration : none;
	}
.datagrid 	A:Hover {
		color : #ec0b4b;
	}
.datagrid 	A:Visited {
		color : #000000;
}
/* mouseover row style */

.datagrid tr:hover{ background-color:#f2e8da; }

