﻿
/*Scroll Table with Fixed Headers*/
.FixedHeaders
{
	position: relative;
	width: 100%;
	overflow: auto;
	text-align: left;
}

.FixedHeaders > table
{
	width: 96%;
	width: expression(this.offsetParent.clientWidth);
}

/*Expressions are IE specific*/
.FixedHeaders > table > thead > tr
{
	position: relative;
	top: expression(this.offsetParent.scrollTop);
}

.FixedHeaders > table > tbody
{
	overflow-x: hidden;
}

.FixedFooters
{
	padding-bottom: 1.5em;
}

/*Expressions are IE specific*/
.FixedFooters > table > tfoot > tr
{
	text-align: center;
	position: absolute;
	top: expression(this.offsetParent.clientHeight-this.clientHeight + this.offsetParent.scrollTop);
}