/*---------- CSS-Elements ----------*/

body {
	font-family: Arial, Verdana, Helvetica;
}

a {
	color: blue;
	font-weight: normal;
}

a:visited {
	color: blue;
	font-weight: normal;
}

a:active {
	color: red;
	font-weight: normal;
}

a:hover {
	color: red;
	font-weight: normal;
}




/*------------ Classes -------------*/

.tableHead {
	background-color: navy;
	color: white;
	text-align: left;
}

.tableRowA {
	background-color: #cccccc;
	color: black;
	text-align: left;
}
.tableRowB {
	background-color: #eeeeee;
	color: black;
	text-align: left;
}

