/* ------------------
 styling for the tables 
   ------------------   */

#table
{
	font: 12px arial;
	background: #fff;
	margin: 15px auto 0px auto;
	width: 500px;
	border-collapse: collapse;
	text-align: left;
}
#table th
{
	font-size: 14px;
	font-weight: normal;
	color: #009900;
	padding: 10px 8px;
	border-bottom: 2px solid #009900;
}
#table td
{
	border-bottom: 1px solid #ccc;
	color: #000;
	padding: 6px 8px;
}
#table tbody tr:hover td
{
	color: #009900;
}

