/* Sets the style for unvisited links. */
a,  a:link {
	color: #000;
	background-color:transparent;
	text-decoration: none;
}

/* Sets the style for links on mouseover. */
a:hover {
	color: #000;
	background-color:transparent;
	text-decoration: none;
}

/* Sets the style for a link that has focus. */
a:focus {
	color: #000;
	background-color:transparent;
}

/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #000;
	background-color:transparent;
}