/* data tables */
/* odd table rows 1,3,5,7,... */
table tr.odd {
    background-color: #E5E5E5;
    text-align: left;
}

/* even table rows 2,4,6,8,... */
table tr.even {
    background-color: #efefef;
    text-align: left;
}

/* hovered table rows */
table tr.odd:hover,
table tr.even:hover,
table tr.hover {
    background-color: #FFDCB8;
}