On my page i have a link using the css code below, everything works except once i've clicked on a link the hover no longer works on that link, is there something wrong with the :visited css code. How do i get the hover working when the page has been visited.

Code:
a.SmallTextLink:link {
	font-family: "Franklin Gothic Medium";
	font-size: 12px;
	font-style: italic;
	font-weight: normal;
	color: #6e6e6e;
	text-decoration: none;
}
a.SmallTextLink:hover {
	font-family: "Franklin Gothic Medium";
	font-size: 12px;
	font-style: italic;
	font-weight: normal;
	color: #f67929;
}
a.SmallTextLink:visited {
	font-family: "Franklin Gothic Medium";
	font-size: 12px;
	font-style: italic;
	font-weight: normal;
	color: #6e6e6e;
	text-decoration: none;
	}
a.SmallTextLink:active {
	font-family: "Franklin Gothic Medium";
	font-size: 12px;
	font-style: italic;
	font-weight: normal;
	color: #f67929;
thanks in advance