@charset "utf-8";
/* CSS Document */
/* unvisited link */
a:link {
	color: black;
	text-decoration: none;
}

/* visited link */
a:visited {
  color: black;
  text-decoration: none;
}

/* mouse over link */
a:hover {
	color: black;
	text-decoration: none;
	font-weight: bolder;
}

/* selected link */
a:active {
  color: blue;
  text-decoration: none;
}
