/**
 * @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 */ {
  border: 1px solid #9DBC89;
  padding: 15px 15px 15px 45px; /* LTR */
  color: #333333;
  background: #E3ECDC url(images/message_ok.png) no-repeat 15px 15px;
  margin:16px 32px;
}
.front #status-messages{
  margin-top: 85px;
  position: absolute;
  width: 100%;
  z-index: 99;
}
/*
.front div.status {
  margin: 0 auto;
  width: 1180px;
}
*/


div.status {
  background:transparent;
  border:1px solid #000;
}

/*

div.warning {
  border-color: #fc0;
  background-image: url(../images/messages-warning.png);
}

div.warning,
tr.warning {
  color: #000;
  background-color: #ffc;
}

*/

div.error {
  border-color: #ED5565;
  color:#C94135;
  background:#F5DDDB url(images/message_error.png) no-repeat 15px 20px;
  padding-left:30px;
}

div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}
