/* define height and width of scrollable area. Add 16px to width for scrollbar          */
div.tableContainer {
	clear: both;
	border: 1px solid;
	height: 285px;
	overflow: auto;
	width: 556px
}

/* Reset overflow value to hidden for all non-IE browsers. */
html>body div.tableContainer {
	overflow: hidden;
	width: 556px
}

/* define width of table. IE browsers only                 */
div.tableContainer table {
	float: left;
	width: 540px
}

/* define width of table. Add 16px to width for scrollbar.           */
/* All other non-IE browsers.                                        */
html>body div.tableContainer table {
	width: 556px
}

/* 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 */
thead.fixedHeaderDetails tr, thead.fixedHeaderMatters tr {
	position: relative
}

/* 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 thead.fixedHeaderDetails tr, html>body thead.fixedHeaderMatters tr {
	display: block
}

/* make the TH elements pretty */
thead.fixedHeaderDetails th, thead.fixedHeaderMatters th {
	background: #7697B9;
	border-left: 1px solid;
	border-right: 1px solid;
	border-top: 1px solid;
	font-weight: normal;
	padding: 4px 3px;
	text-align: left;
	color: #FFFFFF;
}

/* make the A elements pretty. makes for nice clickable headers                */
thead.fixedHeaderDetails a, thead.fixedHeaderDetails a:link, thead.fixedHeaderDetails a:visited,
thead.fixedHeaderMatters a, thead.fixedHeaderMatters a:link, thead.fixedHeaderMatters a:visited {
	color: #FFF;
	display: block;
	text-decoration: none;
	width: 100%
}

/* make the A elements pretty. makes for nice clickable headers                */
/* WARNING: swapping the background on hover may cause problems in WinIE 6.x   */
thead.fixedHeaderDetails a:hover, thead.fixedHeaderMatters a:hover {
	color: #FFF;
	display: block;
	text-decoration: underline;
	width: 100%
}

/* 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 tbody.scrollContentDetails, html>body tbody.scrollContentMatters {
	display: block;
	height: 240px;
	overflow: auto;
	width: 100%
}

/* make TD elements pretty. Provide alternating classes for striping the table */
/* http://www.alistapart.com/articles/zebratables/                             */
tbody.scrollContentDetails td, tbody.scrollContentDetails tr.normalRow td,
tbody.scrollContentMatters td, tbody.scrollContentMatters 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
}

tbody.scrollContentDetails tr.alternateRow td, tbody.scrollContentMatters 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
}

/* define width of TH elements: 1st, 2nd, and 3rd respectively.          */
/* Add 16px to last TH for scrollbar padding. All other non-IE browsers. */
/* http://www.w3.org/TR/REC-CSS2/selector.html#adjacent-selectors        */
html>body thead.fixedHeaderDetails th {
	width: 54px
}

html>body thead.fixedHeaderDetails th + th {
	width: 241px
}

html>body thead.fixedHeaderDetails th + th + th {
	width: 250px
}

/* define width of TD elements: 1st, 2nd, and 3rd respectively.          */
/* All other non-IE browsers.                                            */
/* http://www.w3.org/TR/REC-CSS2/selector.html#adjacent-selectors        */
html>body tbody.scrollContentDetails td {
	width: 56px
}

html>body tbody.scrollContentDetails td + td {
	width: 250px
}

html>body tbody.scrollContentDetails td + td + td {
	width: 250px
}

/* define width of TH elements: 1st, 2nd, and 3rd respectively.          */
/* Add 16px to last TH for scrollbar padding. All other non-IE browsers. */
/* http://www.w3.org/TR/REC-CSS2/selector.html#adjacent-selectors        */
html>body thead.fixedHeaderMatters tr.spanned th {
	width: 600px
}

html>body thead.fixedHeaderMatters th {
	width: 53px
}

html>body thead.fixedHeaderMatters th + th {
	width: 53px
}

html>body thead.fixedHeaderMatters th + th + th {
	width: 300px
}

html>body thead.fixedHeaderMatters th + th + th + th {
	width: 117px
}

/* define width of TD elements: 1st, 2nd, and 3rd respectively.          */
/* All other non-IE browsers.                                            */
/* http://www.w3.org/TR/REC-CSS2/selector.html#adjacent-selectors        */
html>body tbody.scrollContentMatters td {
	width: 53px
}

html>body tbody.scrollContentMatters td + td {
	width: 53px
}

html>body tbody.scrollContentMatters td + td + td {
	width: 300px
}

html>body tbody.scrollContentMatters td + td + td + td {
	width: 100px
}


