table {  
    color: #333;
}

td, th {  
    border: 1px solid transparent; /* No more visible border */
 padding-top:5px;
 padding-right:10px;
 padding-bottom:5px;
 padding-left:10px;

}

th {  
    background: #DFDFDF;  /* Darken header a bit */
    font-weight: bold;
}

td {  
    background: #FAFAFA;
}

/* Cells in even rows (2,4,6...) are one color */        
tr:nth-child(even) td { background: #F1F1F1; }   

/* Cells in odd rows (1,3,5...) are another (excludes header cells)  */        
tr:nth-child(odd) td { background: #FEFEFE; }  



