/* odd items 1,3,5,7,... */
.odd {
	background-color: white;
}

/* even items 2,4,6,8,... */
.even {
	background-color: #F0F1F3;
}

/* hovered items */
.odd:hover,
.even:hover,
.hover {
	background-color: #D3D8DD;
}



body.loginform div.container {
    text-align: left;
    width: 30em;
    margin: 0 auto;
}



table tr.odd th,
table tr.odd {
	background-color: white;
}

/* even table rows 2,4,6,8,... */
table tr.even th,
table tr.even {
    background-color: #F0F1F3;
}



/* hovered table rows */
table tr.odd:hover,
table tr.even:hover,
table tr.odd:hover th,
table tr.even:hover th,
table tr.hover th,
table tr.hover {
	background-color: #D3D8DD;
}


