/* external style sheet styles.css */

/* redefined styles */

A:link {
  text-decoration: none; 
  color: blue;
} 
A:visited {
  text-decoration: none; 
  color: red;
}
A:active {
  text-decoration: none; 
  color: red;
} 
A:hover {
  text-decoration: underline;
}
BODY {
  background-color: #ebebd5;
  font-family: helvetica, arial, "Times New Roman";
  color: black
} 
TD {
  color: black;
}

/* new defined styles */

.INFO {
  color: white;
  font-size: smaller;
}

td.notes {
	border-bottom: 1 solid;
	border-left: 1 solid;
	border-right: 1 solid;
	border-top: 1 solid;
	background: #A0ADBA;
	border: thin solid Black;
}
/* end of file */
