/*
 * MESSAGES STYLE
 *
 * Add sensible messages styling.
 */


div.messages, /* Important messages (status, warning, and error) for the user */
div.status,
div.warning,
div.error
{
	min-height: 21px;
	margin: 1em;
	border: 2px solid #ff7;
	padding: 5px 5px 5px 35px;
	color: #000;
}

div.status /* Normal priority messages */
{
	color: #33a333;
	border-color: #66ee66;
	background: #ddffdd url(../img/messages-status.png) no-repeat 5px 5px;
}

div.warning /* Medium priority messages */
{
	border-color: #fc0;
	background: #aee7a7 url(../img/messages-warning.png) no-repeat 5px 5px;
}

div.warning,
tr.warning
{
	color: #220; /* Drupal core uses #220 */
	background-color: #ffc;
}

div.error /* High priority messages. See also the .error declaration below. */
{
	color: #a30000;
	border-color: #ee6666;
	background: #ffdddd url(../img/messages-error.png) no-repeat 5px 5px;
}

div.error,
tr.error
{
	color: #a30000;
	background-color: #fee;
}

div.messages ul
{
	margin-top: 0;
	margin-bottom: 0;
}
