﻿/* CSS Document */

/* This makes the scrolling table work */

div.scrollTableContainer {
	height: 140px;	
    overflow: auto;
	margin: 15px 0 0 0;
	position: relative;
}

/* Modern browsers accept this (not IE) and we are targetting firefox */
html>/**/body div.scrollTableContainer table>tbody	{  
    overflow: auto; 
    height: 105px;
    overflow-x: hidden;
}

/*prevent Mozilla scrollbar from hiding cell content*/
div.grid td:last-child {padding-right: 20px;}

/* Locks table header */
table.grid th {
	position:relative;
	/*IE5+ only*/
	top: expression(this.parentNode.parentNode.parentNode.parentNode.scrollTop-2);
}