/* Message Box CSS - Any class listed here is valid in the 3rd param of the message() function in the scripts */
table.success {
	border-width: 1px;
	border-spacing: 2px;
	border-style: solid;
	border-color: gray;
	border-collapse: separate;
	background-color: #66ee66;
}
table.success td {
	border-width: 1px;
	padding: 1px;
	border-style: none;
	border-color: gray;
	background-color: #66ee66;
}

table.failure {
	border-width: 1px;
	border-spacing: 2px;
	border-style: solid;
	border-color: gray;
	border-collapse: separate;
	background-color: #ee6666;
}
table.failure td {
	border-width: 1px;
	padding: 1px;
	border-style: none;
	border-color: gray;
	background-color: #ee6666;
}

table.warning {
	border-width: 1px;
	border-spacing: 2px;
	border-style: solid;
	border-color: gray;
	border-collapse: separate;
	background-color: #eeee66;
}
table.warning td {
	border-width: 1px;
	padding: 1px;
	border-style: none;
	border-color: gray;
	background-color: #eeee66;
}

table.blue {
	border-width: 1px;
	border-spacing: 2px;
	border-style: solid;
	border-color: gray;
	border-collapse: separate;
	background-color: #66bbee;
}
table.blue td {
	border-width: 1px;
	padding: 1px;
	border-style: none;
	border-color: gray;
	background-color: #66bbee;
}

