table {
    color: black;
    background: #fff;
    border: 1px solid #b4b4b4;
    font: bold 17px helvetica;
    padding: 0;
    margin-top:10px;
    width: 100%;
    -webkit-border-radius: 8px;
    border-collapse: collapse;
}

table thead tr th {
	
	 padding: 10px 10px 10px 10px;
	 border-bottom: 1px solid #b4b4b4;
	 border-right: 1px solid #b4b4b4;
	 background-color: #CCCCCC;
}

table thead tr th:last-child {
    
    border-right: none;
}

table tbody tr th {
	
	padding: 10px 10px 10px 10px;
}
     
table tbody tr td {
    color: #666;
    border-bottom: 1px solid #b4b4b4;
    border-right: 1px solid #b4b4b4;
    padding: 10px 10px 10px 10px;
    background-image: -webkit-linear-gradient(top, #fdfdfd, #eee);
}
         
table tbody tr td:last-child {
    border-right: none;
}

table tbody tr:last-child td {
    border-bottom: none;
}