/* unvisited link */
a:link {
	color: white;
	text-decoration: none; 
}
/* visited link */
a:visited {
	color: white;
	text-decoration: none; 
}
/* mouse over link */
a:hover {
	color: white;
	text-decoration: none; 
}
/* selected link */
a:active {
	color: white;
	text-decoration: none; 
}
/* a red line to divide the title bar and content */
hr.topRedLine {
  border-top: 10px solid red;
  margin: 0px 0px 0px 0px;
}