/* unvisited link */
a:link
{
  color: #000000;
  text-decoration: none;
}

/* visited link */
a:visited
{
  color: #000000;
  text-decoration: none;
}

/* mouse over link */
a:hover
{
  color: #F92428;
  text-decoration: none;
}

/* selected link */
a:active
{
  color: blue;
  text-decoration: none;
}