/* $Id: messages.css,v 1.1.2.2 2009/02/13 07:46:04 johnalbin Exp $ */

/*
 * 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: 0 1em 5px 1em;
    border: 2px solid #ff7;
    padding: 5px 5px 5px 35px;
    color: #000;
    background-color: #ffc;
    background-image: url(images/messages-status.png);
    background-repeat: no-repeat;
    background-position: 5px 5px;
  }

  div.status /* Normal priority messages */
  {
  }

  div.warning /* Medium priority messages */
  {
    border-color: #fc0;
    background-image: url(images/messages-warning.png);
  }

  div.warning,
  tr.warning
  {
    color: #000; /* Drupal core uses #220 */
    background-color: #ffc;
  }

  div.error /* High priority messages. See also the .error declaration below. */
  {
    /* border: 1px solid #d77; */ /* Drupal core uses: 1px solid #d77 */
    border-color: #c00;
    background-image: url(images/messages-error.png);
  }

  div.error,
  tr.error
  {
    color: #900; /* Drupal core uses #200 */
    background-color: #fee;
  }

  div.messages ul
  {
    margin-top: 0;
    margin-bottom: 0;
  }

/* messages */

div.messages, 
div.status, 
div.warning, 
div.error,
div.help {
  background-color: #fff;
  border: 2px solid #851B82;
  color: #e21000;
  margin: 5px 0 5px;
  border-width: 0;
  border-style:solid;
  border-color: #e21000;
  -moz-border-radius-bottomleft:6px;
  -moz-border-radius-bottomright:6px;
  -moz-border-radius-topleft:6px;
  -moz-border-radius-topright:6px;
  background-position:10px 13px;
  background-repeat:no-repeat;
  padding:11px 13px 13px 44px;
  border:1px solid #E21000;
}

div.messages a, 
div.status a, 
div.warning a, 
div.error a {
  font-weight:normal;
  color: #505050;
  text-decoration:underline;
}

div.status {
  background-color:yellow;
}
div.error {
  background-color:pink;
}
div.help {
  background-color:#83e877;
  border: 1px solid #005d04;
  padding-left:13px;
  color: #005d04;
  font-size:1.1em;
} 
div.help p {
  margin:0;
  font-weight: bold;
  font-family: Georgia, "Times New Roman", "Bitstream Ver
a Serif", serif; 
}
div.help p a {
  color: #000;
}

