@charset "utf-8";
/* CSS Document */


/* ------------------
 styling for the tables 
   ------------------   */


#box-table-a
{
	font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
	font-size: 12px;
	margin: 5px;
	width: 99%;
	text-align: left;
	border-collapse: collapse;
}
#box-table-a th
{
	font-size: 13px;
	font-weight: normal;
	padding: 8px;
	background: #094A9A;
	border-top: 4px solid blue;
	border-bottom: 1px solid #fff;
	color: #ffffff;

}
#box-table-a td
{
	padding: 8px;
	background: #ebf7ff; 
	border-bottom: 1px solid blue;
	color: #549FC9;
	border-top: 1px solid transparent;
}
#box-table-a tr:hover td
{
	background: #BFE5FF;
	color: #0066B3;
}



