.datagrid table {
border-collapse: collapse;
text-align: left;
width: 100%;
}
.datagrid {
font: normal 12px/100% Geneva, Arial, Helvetica, sans-serif;
background: #f6fff5;
overflow: hidden;
border: 4px solid #0a5000;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
border-radius: 9px;
box-shadow: 5px 5px 8px #111;
}
.datagrid table td, .datagrid table th { padding: 6px 6px; }
.datagrid table thead th {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #28cf10), color-stop(1, #275420) );
background:-moz-linear-gradient( center top, #49a83b 5%, #094200 90% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#28cf10', endColorstr='#275420');
background-color:#36752D;
color: #fff;
font-size: 20px;
text-align: center;
font-weight: normal;
padding: 10px 10px;
border-left: 1px solid #139800;
}
.datagrid table thead th:first-child { border: none; }
.datagrid table tbody td {
color: #000;
border-left: 1px solid #55a749;
font-size: 15px;
border-bottom: 1px solid #55a749;
font-weight: normal;
}
.datagrid table tbody td:first-child { border-left: none; }
.datagrid table tbody tr:last-child td { border-bottom: none; }
tr:nth-child(2n+1) { background-color: #e0ffdd; }