/* CSS Document */
<style type="text/css">
<!--
/* Terence Ordona, portal[AT]imaputz[DOT]com         */
/* http://creativecommons.org/licenses/by-sa/2.0/    */

/* define height and width of scrollable area. Add 16px to width for scrollbar          */
div.tableContainer {
	clear: both;
	border: 1px solid #963;
	height: 250px;
	overflow: auto;
	width: 616px
}
/* Reset overflow value to hidden for all non-IE browsers. */
html>body div.tableContainer {
	overflow: hidden;
	width: 616px
}
/* define width of table. IE browsers only                 */
div.tableContainer table {
	float: left;
	width: 600px
}
/* define width of table. Add 16px to width for scrollbar.           */
/* All other non-IE browsers.                                        */
html>body div.tableContainer table {
	width: 616px
}
/* 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.fixedHeader 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.fixedHeader tr {
	display: block
}
/* make the TH elements pretty */
thead.fixedHeader th {
	background: #000000;
	border: 0px;
	padding: 2px;
	spacing: 0px;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: .8em;
	line-height: 1.1em;
	font-weight: bold;
	color: #FFFFFF
}
/* make the A elements pretty. makes for nice clickable headers                */
thead.fixedHeader a, thead.fixedHeader a:link, thead.fixedHeader 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.fixedHeader 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.scrollContent {
	display: block;
	height: 250px;
	overflow: auto;
	width: 100%
}
/* make TD elements pretty. Provide alternating classes for striping the table */
/* http://www.alistapart.com/articles/zebratables/                             */
tbody.scrollContent td, tbody.scrollContent tr.normalRow td {
	background: #FFFFFF;
	border: none;
	padding: 2px;
	spacing: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: .7em;
	line-height: .9em;
}
tbody.scrollContent td, tbody.scrollContent tr.normalRow2 td {
	background: #CFCFCF;
	border: none;
	padding: 2px;
	spacing: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: .7em;
	line-height: .9em;
}
tbody.scrollContent tr.dateRow td {
	background: #0000CC;
	border: none;
	padding: 2px;
	spacing: 0px;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: .7em;
	line-height: .9em;
	font-weight: bold;
	color: #FFFFFF
}
tbody.scrollContent tr.divRow td {
	background: #CC0000;
	border: none;
	padding: 2px;
	spacing: 0px;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: .7em;
	line-height: .9em;
	font-weight: bold;
	color: #FFFFFF
}
tbody.scrollContent td, tbody.scrollContent tr.yellowbg td {
	background: Yellow;
	border: none;
	padding: 2px;
	spacing: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: .7em;
	line-height: .9em;
}
tbody.scrollContent a, tbody.scrollContent a:link, tbody.scrollContent a:visited {
	font-weight: bold;
	text-decoration: none;
	color: #003399 
}
tbody.scrollContent a:hover {
	font-weight: bold;
	text-decoration: none;
	color: #CC0000 
}
/* 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.fixedHeader th {
	width: 70px
}
html>body thead.fixedHeader th + th {
	width: 330px
}
html>body thead.fixedHeader th + th + th {
	width: 216px
}
/* 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.scrollContent td {
	width: 70px
}
html>body tbody.scrollContent td + td {
	width: 330px
}

html>body tbody.scrollContent td + td + td {
	width: 180px
}
-->
</style>

