@charset "utf-8";
/* CSS Document */

/* unvisited link */
a:link {
    text-decoration: none;
}
/* visited link */
a:visited {
  color:#00F;
  text-decoration: none;
}
/* mouse over link */
a:hover {
	color:#F60;
	text-decoration: none;
    
}
/* selected link */
a:active {
	color:#F00;
	text-decoration: none;
   
} 