/*
	The following table cell classes are used to set mainly the colors. 
	No widths should be stored here. 
	Widths should go in the fontLarge, fontMedium & fontSmall CSS files.
	The reason for this is those CSS files control the user-selected font size. 
	Setting widths here will mess up the column spacing.
*/
td.colA{
	/* This sets default "Column A" background color. */
	background-color:#eee9d1;
}
td.colB{
	/* This sets "Column B" background color. Should be a darker color than "Column A". */
	background-color:#e8e1bf;
}
td.indentSubHeading{
	/* Add this class wherever you need to indent a cell/column. */
	padding-left:15px;	
}
td.indentDoubleSubHeading{
	/* Add this class wherever you need to further indent the indentSubHeading cell/column. */
	padding-left:30px;	
}
td.rowHeader1{
	/* Should be A LOT darker color than "Column A" & "Column B" and look good with white text. */
	background-color:#c1a762;
	color:#FFFFFF;
}
td.simpleHeaderA{
	font-size:12px;
	font-weight:bold;
	border-bottom:2px double #000000;
	background-color:#FFFFFF;
}
td.tinyHeaderA{
	/* Used to head columns such as td.threeColumns_Child. About 25pixels in width. */
	/* LIGHTER color than tinyHeaderB */
	background-color:#d3b873;
	color:#FFFFFF;
	font-size:11px;
	font-weight:bold;
}
td.tinyHeaderB{
	/* Used to head columns such as td.threeColumns_Child. About 25pixels in width. */
	background-color:#c1a762;
	color:#FFFFFF;
	font-size:11px;
	font-weight:bold;
}
td.rowFooter1{
	/* Should be A LITTLE BIT darker color than "Column A" & "Column B" and look good with black text. */
	background-color:#ded4a3;
}

