/*setting the rule for the body tag   */


body
{
	line-height: 1.6em;
}

/* Setting the rules for the table so it highlights*/
#box-table-a th
{
	font-size: 13px;
	font-weight: normal;
	padding: 8px;
	background: black;

	border-bottom: 1px solid #fff;
	color: #C0C0C0;
}

/* setting the rule for the table so it highlighs*/
#box-table-a td
{
	padding: 8px;
	background: #C0C0C0; 
	border-bottom: 1px solid #fff;
	color: black;
	border-top: 1px solid transparent;
}

/* changes hte background color when you hover over it*/
#box-table-a tr:hover td
{
	background: #d0dafd;
	color: #339;
}

/*rule for h1 selector*/

h1 { color:#C0C0C0}






