﻿
/* define height and width of scrollable area. Add 16px to width for scrollbar          */
div.tableContainer {
	clear: both;
	overflow: auto;
	width: 756px;
	width: auto;
}

/* Reset overflow value to hidden for all non-IE browsers. */
html>body div.tableContainer {
	overflow: hidden;
	width: 256px;
	width: auto;
}

/* define width of table. IE browsers only                 */
div.tableContainer table {
	float: left;
	width: 240px;
	width: auto;
}

/* define width of table. Add 16px to width for scrollbar.           */
/* All other non-IE browsers.                                        */
html>body div.tableContainer table {
	width: 256px;
	width: auto;
}

/* set table header to a fixed position. WinIE 6.x only                                       */
/* In WinIE 6.x, any element with a position property set to relative and is a child of       */
/* an element that has an overflow property set, the relative value translates into fixed.    */
/* Ex: parent element DIV with a class of tableContainer has an overflow property set to auto */
table.fixedHeader thead tr{
	position: relative;
}
table.fixedHeader tfoot tr 
{
	position:relative;
}
table.fixedHeader tfoot table tr
{
	position:static;
}

/* set THEAD element to have block level attributes. All other non-IE browsers            */
/* this enables overflow to work on TBODY element. All other non-IE, non-Mozilla browsers */
html>body table.fixedHeader thead tr {
	adisplay: block;
}

/* make the TH elements pretty */
table.fixedHeader thead th {
	padding: 4px 3px;
	text-align: left;
	width:auto;
}

/* define the table content to be scrollable                                              */
/* set TBODY element to have block level attributes. All other non-IE browsers            */
/* this enables overflow to work on TBODY element. All other non-IE, non-Mozilla browsers */
/* induced side effect is that child TDs no longer accept width: auto                     */
html>body table.scrollContent tbody {
	adisplay: block;
	overflow: auto;
	overflow-x:hidden;
	width: 100%;
}
html>body table.scrollContent tfoot {
	adisplay:block;
	width:100%;
}

/* make TD elements pretty. Provide alternating classes for striping the table */
/* http://www.alistapart.com/articles/zebratables/                             */
table.scrollContent tbody td, table.scrollContent tbody tr.normalRow td {
	background: #FFF;
	border-bottom: none;
	border-left: none;
	border-right: 1px solid #CCC;
	border-top: 1px solid #DDD;
	padding: 2px 3px 3px 4px;
}

table.scrollContent tbody tr.alternateRow td {
	background: #EEE;
	border-bottom: none;
	border-left: none;
	border-right: 1px solid #CCC;
	border-top: 1px solid #DDD;
	padding: 2px 3px 3px 4px
}

/*done*/
