/* Table Row for Directory total */
tr.Dtotal
{
	background-color: #E9E5D9;
	color:Blue;
}

/* Drectory item row is inverse colour */
tr.Ditem
{
	background-color: #E9E5D9;
}

/* Alternating file item rows */
tr.odd
{
	background-color: #FFFEF9;
}
tr.even
{
	background-color: #F7F7EF;
}

thead
{
	/* With a light grey background to compliment the main table colouring */
	background-color:silver;
}

/*** Emphasis ***/

/* Directory total row, Size cell */
tr.Dtotal td.Size
{
	font-weight:bold;
}

/* Directory item row, DName cell */
tr.Ditem td.DName
{
	font-weight:bold;
}

/* High sized row, Size column */
tr.Hi td.Size
{
	color:red;
}

/* Un-expanded row, Display Name column */
tr.NotExp td.DName
{
	text-decoration: line-through;
}

