
.scrollView table {
	width: 99%;		/*100% of container produces horiz. scroll in Mozilla*/
}

/*
 * Specific Firefox. Only Modern browser are able to interpret > . IE is not a modern browser
 */
.scrollView table>tbody {
	overflow: auto;
	height: 100%;
	overflow-x: hidden;
}

/*
 * Traget is IE5+ only. Only IE is able to interpret this kind of horrible expression Script
 * ----------
 * FOR HEADER
 */
.scrollView thead tr {
	position:relative;
	top: expression(offsetParent.scrollTop);
}


/*
 * FF scroll hide last column.
 * prevent this case
 */
.scrollView td:last-child {
	padding-right: 20px;
}
