/*****************************************************************
Mark up your table like this: <table class="hovertable">
Mark up your first row HEADER like this: <tr class="head">
*******************************************************************/

.makefly {
	display: none;
	width: auto;
	float: right;
}


.hovertable{
	border-collapse: collapse; //get rid of cellpadding and cellspacing
}

.hovertable tr:hover {
 	background-color: #eaf8fc;/*#f5f5f5FFF3DD*/
	cursor:pointer;
}

.hovertable tr:hover  .makefly {
	display: inline;
}

			
.hovertable td {
 	padding:3px 20px 3px 0;
}	
//added this to style the row headers - and also so the regular hover doesn't work on them!
.hovertable tr.head:hover { 
 	background-color: #ffffff;
 	cursor:auto;
 	font-weight:bold
}		
.hovertable tr.head { 
 	background-color: #ffffff;
 	cursor:auto;
 	font-weight:bold
}
//end - added this to style the row headers - and also so the regular hover doesn't work on them!



