/* $Id: messages.css,v 1.3 2009/08/12 08:37:42 johnalbin Exp $ */

/**
 * @file
 * Message Styling
 *
 * Sensible styling for Drupal's error/warning/status messages.
 */


div.messages,
div.status,
div.warning,
div.error /* Important messages (status, warning, and error) for the user */ {
  min-height: 21px;
  width: 380px;
  margin: 0 auto 10px auto;
  border: 1px solid #ff7;
  padding: 10px 5px 5px 5px; /* LTR */
  color: #000;
  background-color: #fff;
}

div.status /* Normal priority messages */ {
}

.page-confirmation .status
{
	display: none !important;
}

div.warning /* Medium priority messages */ {
  border-color: #FE545B;
}

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

div.error /* High priority messages. See also the .error declaration in pages.css. */ {
  /* border: 1px solid #d77; */ /* Drupal core uses: 1px solid #d77 */
  border-color: #c00;
}

div.error,
tr.error {
  color: #FE545B; /* Drupal core uses #200 */
  background-color: #fff;
}

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