﻿div.queryTag {
	/* background-color:green; */
	width: 0px;	
	height: 0px;
	overflow: auto;
	}
	
#resultsTbl{
	border-top: 0px;
	margin: 0px;
	}
	
#resultsTbl>tbody	{  /* child selector syntax which IE6 and older do not support*/
	overflow: auto; 
	overflow-x: hidden;
	}
	
#resultsHead td	{
	position:relative; 
	border-top: 0px;
	margin-top: 0px;
	top: expression(document.getElementById("queryTag").scrollTop -3); /*IE5+ only*/
	}

#resultsTbl td:last-child {padding-right: 20px;} /*prevent Mozilla scrollbar from hiding cell content*/
