/* CSS Document */

/* Begin notification */
.notification_message {
	background-color: #fffbc9;
	color: #7b4b09;
	background-image: url(../img/dialog-information.png);
	border: 1px solid #F0DCA1;
}
/* end notification */

/* Begin warning */
.warning_message {
	background-color: #ff9;
	color: #533a15;
	background-image: url(../img/dialog-warning.png);
	border: 1px solid #FACD00;
}
/* end warning */

/* Begin error */
.error_message {
	background-color: #ffe3e0;
	color: #e31b0c;
	background-image: url(../img/dialog-error.png);
	border: 1px solid #dc6e66;
}
/* end error */

/* Begin success */
.success_message {
	background-color: #CDEB8B;
	color: #006E2E;
	background-image: url(../img/dialog-success.png);
	border: 1px solid #006E2E;
}
/* end success */

.notification_message, .warning_message, .error_message, .success_message {
	background-repeat: no-repeat;
	background-position: 8px 8px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	-moz-border-radius: 8px;
	border-radius: 8px;
	overflow: auto;
	padding-top: 10px;
	padding-left: 32px;
	padding-right: 8px;
	margin: 2px;
}

.notification_message ul, .warning_message ul, .error_message ul, .success_message ul {
	list-style-type: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	padding: 0;
	margin-left: 5px;
	margin-top: 5px;
}
.notification_message li, .warning_message li, .error_message li, .success_message li {
	background-image: url(../img/arrow.gif);
	background-repeat: no-repeat;
	background-position: 0 0.5em;
	padding-left: .9em;
	margin: .5em 0;
}