div#tbl-container {
		height: 135px;
		overflow: auto;
		scrollbar-base-color:#9696A9;
}

tbl {
		table-layout: fixed;
		border-collapse: collapse;
		background-color: WhiteSmoke;
}

div#tbl-container tbl th {
		width: 100px;
}

thead th, thead th.locked	{
		height:18px;
		font-family:verdana;
		font-size: 11px;
		font-weight: bold;
		text-align: center;
		background-color: #B06A00;
		color: black;
		border-right: 1px solid silver;
		border-bottom: 1px solid silver;
		position:relative;
		cursor: default; 
}
	
thead th {
		top: expression(document.getElementById("tbl-container").scrollTop-2); /* IE5+ only */
		z-index: 20;
}

thead th.locked {z-index: 30;}

td.locked,  th.locked{
		background-color: #ffeaff;
		font-weight: bold;
		border-right: 1px solid silver;
		left: expression(parentNode.parentNode.parentNode.parentNode.scrollLeft); /* IE5+ only */
		position: relative;
		z-index: 10;
}

