@charset "UTF-8";
/* CSS Document */
body {
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin-top: 0px;
	margin-left: 0px;
	text-align: left;
}

body, table {
	/* Why do tables use larger font otherwise? */
	font-size: 14px;
	line-height: 25px;
	color:#000;
}

/* unvisited link */
a:link {
  color: red;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: red;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: red;
  text-decoration: underline;
}

/* selected link */
a:active {
  color: red;
  text-decoration: underline;
}