/*
 * These Styles are for the rowAttributes tags on the CSA Manage Summary page.
 *
 * SIR 8900, 02/04/2009, Shawn Zeng - highlight (color) CSA summary record for different status.
 * Rows that were added should be highlighted green and have a status of "Added"
 * Rows that were modified should be highlighted blue and have a status of "Modified"
 * Rows that were removed should be highlighted yellow and have a status of "Removed"
 * Rows that were not changed at all are not highlighted, and have a status of "Active"
 * SEE - com.usps.fast.common.model.Spacer
 */

/*
 * The Added status.
 */
.csaGreen td {
	border-top: 1px solid #CCCCCC;
	border-bottem: 1px solid #CCCCCC;
	background-color: #33CC33;
	padding-top: 10px;
	padding-bottom: 10px;
}

/*
 * The Modified status.
 */
.csaBlue td {
	border-top: 1px solid #CCCCCC;
	border-bottem: 1px solid #CCCCCC;
	background-color: #3399FF;
	padding-top: 10px;
	padding-bottom: 10px;
}

/*
 * The Removed status.
 */
.csaYellow td {
	border-top: 1px solid #CCCCCC;
	border-bottem: 1px solid #CCCCCC;
	background-color: #FFFF00;
	padding-top: 10px;
	padding-bottom: 10px;
}


/*
 * The the default for all cells - Active.
 */
.default td {
	border-top: 1px solid #CCCCCC;
	border-bottem: 1px solid #CCCCCC;
	padding-top: 10px;
	padding-bottom: 10px;
}
