@charset "utf-8";
/* CSS Document */

#top_nav a:link {     /* unvisited link */
	color: #FFFFFF;
	text-decoration: underline;
}
#top_nav a:visited {  /* visited link */
	color: #FFFFFF;
	text-decoration: underline;
}
#top_nav a:hover {   /* mouse over link */
	color: #11cd2d;
	text-decoration: none;
}
#top_nav a:active {   /* selected link */
	color: #03f4ff;
	text-decoration: none;
}

body a:visited {  /* visited link */
	color: green;
	text-decoration: underline;
}
body a:hover {   /* mouse over link */
	color: green;
	text-decoration: none;
}
body a:active {   /* selected link */
	color: #FF0000;
	text-decoration: none;
}
