div#tbl-container {
width: 100px;
height: 252px;
overflow: auto;
}

table#tbl {
table-layout: fixed;
border-collapse: collapse;
background-color: WhiteSmoke;
border:1px solid black;
padding:2px;
border-spacing:0px;
}

div#tbl-container tbl th {
width: 1200px;
}

thead th, thead th.locked	{
font-size: 12px;
font-weight: bold;
text-align: center;
background-color: black;
color: #FFCC00;
text-decoration:none;
border-right: 1px solid black;
position:relative;
cursor: default; 
}
	
thead th 
{
top: expression(document.getElementById("tbl-container").scrollTop-2); /* IE5+ only */
z-index: 20;
}

tbody tr
{
 font-family:Arial, Helvetica, sans-serif;
 font-size:10px;
 color:black;
}
 
 


