/*Ported From http://www.imaputz.com/cssStuff/bigFourVersion.html#*/
/* define height and width of scrollable area. Add 16px to width for scrollbar          */
div.scrollableTable {
	position: relative;
	display: block;
	clear: both;
	border: 1px solid #999999;
	overflow: auto;
}

/* Reset overflow value to hidden for all non-IE browsers. */
html>body div.scrollableTable {
	overflow: visible;
}

/* define width of table. IE browsers only                 */
div.scrollableTable table, div.scrollableTable thead, div.scrollableTable tbody, div.scrollableTable tfoot {
	position: relative;
	display: block;
}

/* define width of table. Add 16px to width for scrollbar.           */
/* All other non-IE browsers.                                        */
html>body div.scrollableTable table {
	display: block;
}

/* 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 scrollableTable has an overflow property set to auto */
div.scrollableTable thead tr, div.scrollableTable tfoot 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 div.scrollableTable thead tr, html>body div.scrollableTable tfoot tr {
	display: block;
}

/* make the TH elements pretty */
div.scrollableTable thead th {

}

/* make the A elements pretty. makes for nice clickable headers                */
div.scrollableTable thead a, div.scrollableTable thead a:link, div.scrollableTable thead 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   */
div.scrollableTable thead 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 div.scrollableTable tbody {
	display: block;
	max-height:	300px;
	min-height: 100px;
	overflow: auto;
	overflow-y: scroll;
	width: 100%
}


div.scrollableTable tbody tr.odd {
	background-color: #F6F6F6;
}

div.scrollableTable tbody tr.even {
	background-color: #E0E0E0;
}