




td.live
{
	color:Green;
}
td.past
{
	color:Black;
}

td.future
{
	color:Red;
}

table.rightResults
{
	font-size:smaller;
}

table.scrollTable
{
	font-size:smaller;
}
/* define height and width of scrollable area. Add 16px to width for scrollbar          */
div.tableContainer2 {
	clear: both;
	/*height: 265px;*/
	height: 316px;
	overflow: auto;
	width: 425px;	
	display:inline;
}


/* define width of table. IE browsers only                 */
div.tableContainer2 table {
	float: left;
	width: 680px;
}

/* define width of table. Add 16px to width for scrollbar.           */
/* All other non-IE browsers.                                        */
html>body div.tableContainer2 table {
	width: 700px;
}


/* define height and width of scrollable area. Add 16px to width for scrollbar          */
div.tableContainer {
	clear: both;
	/*height: 265px;*/
	height: 344px;
	overflow: auto;
	width: 425px;	
	display:inline;
}


/* define width of table. IE browsers only                 */
div.tableContainer table {
	float: left;
	width: 680px;
}

/* define width of table. Add 16px to width for scrollbar.           */
/* All other non-IE browsers.                                        */
html>body div.tableContainer table {
	width: 700px;
}
/* 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 
{
	font-size:small;
	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;
	position:relative;	
}

/* make the TH elements pretty */
thead.fixedHeader th 
{	
	
	background: "#9EBAC5";
	font-weight: normal;
	padding: 4px 3px;
	text-align: left;
	color:White;
}


/* 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: 100px;
	overflow: auto;
	width: 100%;
}

tr.RowType1 {
	background: #FFF;
	border-bottom: none;
	border-left: none;
	border-right: 1px solid #bb97bb;
	border-top: 1px solid #b47fb5;	
	padding: 2px 3px 3px 4px;
}

tr.RowType2 {
	background: #EEE;
	border-bottom: none;
	border-left: none;
	border-right: 1px solid #bb97bb;
	border-top: 1px solid #b47fb5;	
	padding: 2px 3px 3px 4px;
}

tr.RowTypeOver {
	background: #9EBAC5;
	border-bottom: none;
	border-left: none;
	border-right: 1px solid #bb97bb;
	border-top: 1px solid #b47fb5;	
	padding: 2px 3px 3px 4px;
}
