/* CSS Document */

.nav {
	text-decoration: none;
}

a.nav {
	text-decoration: none;
}

a.nav:visited {
	text-color: black;
}

a.nav:hover {
  	color: red;
	text-decoration: underline;
}

a.nav:visited:hover {
  	color: red;
	text-decoration: underline;
}

a {
  	color: blue;
	text-decoration: none;
}

a:visited { 
 	color: darkblue;
	text-decoration: none;
	}

a:hover {
	text-decoration: underline;
}

