@charset "utf-8";
/* CSS Document */

/* 
 ******************************************************************************************************************************************************
 ******************************************************************************************************************************************************
 * matrix.css contains style rules for any simple table used to display data in a row by row format, where rows alternate colors to increase readability.
 * Styles for a distinct black header row are also defined as an additional option.
 ******************************************************************************************************************************************************
 ******************************************************************************************************************************************************
 */

div.matrix
{
	margin-bottom: 20px;
}

div.matrix table
{
	*width: 580px;
	min-width: 580px;
}

div.matrix th
{
	border: solid 1px #FFFFFF;
	padding: 6px;
}
 
div.matrix tr.heading
{
	background: #000000;
	color: #FFFFFF;
}

/* This is the selector for any row that needs to have a dark background.
*/
div.matrix tr.dark
{
	background: #E3E3E3;
}

/* This is the selector for any row that needs to have a light background.
*/
div.matrix tr.light
{
	background: #EEEEEE;
}

div.matrix td
{
	padding: 4px 4px;
	border: solid 1px #FFFFFF;
}

div.matrix td.label
{
	text-align: right;
	vertical-align: top;
	padding: 6px;
}

div.matrix td.input
{
	text-align: left;
	vertical-align: top;
	padding: 6px;
}