/** 

lradatagrid css. 

Apply this to a div surrounding an LRA table. Set the div class to lradatagrid.

Use td class="alt" to get gray Zebra effect on table rows. 

**/ 

.datagrid table {
	border-collapse: collapse;
	text-align: left;
	width: 100%;
}

.datagrid {
	font: normal 12px/150% Verdana, Arial, Helvetica, sans-serif;
	background: #fff;
	overflow: hidden;
	border: 1px solid #000000;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.datagrid table td,.datagrid table th {
	padding: 3px 10px;
}

.datagrid table thead th {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #B5C19D
		), color-stop(1, #B5C19D));
	background: -moz-linear-gradient(center top, #B5C19D 5%, #B5C19D 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#B5C19D',
		endColorstr='#B5C19D');
	background-color: #B5C19D;
	color: #000000;
	font-size: 12px;
	font-weight: bold;
	border-left: 1px solid #000000;
}

.datagrid table thead th:first-child {
	border: none;
}

.datagrid table tbody td {
	color: #000000;
	border-left: 1px solid #000000;
	font-size: 12px;
	font-weight: normal;
}

.datagrid table tbody .alt td {
	background: #EAEAEA;
	color: #000000;
}

.datagrid table tbody td:first-child {
	border-left: none;
}

.datagrid table tbody tr:last-child td {
	border-bottom: none;
}

.datagrid table tfoot td div {
	border-top: 1px solid #000000;
	background: #EAEAEA;
}

.datagrid table tfoot td {
	padding: 0;
	font-size: 12px
}

.datagrid table tfoot td div {
	padding: 2px;
}