/**
 * @file
 * Message Styling
 */

div.messages,
div.status,
div.warning,
div.error {
  min-height: 21px;
  margin: 10px;
  border: 2px solid #909;
  padding: 5px 10px;
  color: #606;
  background-color: #fef;
  background-repeat: no-repeat;
  background-position: 5px 5px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webket-border-radius: 5px;
}

div.status {
}

div.warning {
  border-color: #fc0;
  background-image: url(../images/messages-warning.png);
  padding: 5px 10px 5px 35px;
}

div.warning,
tr.warning {
  color: #d70;
  background-color: #ffc;
}

div.error {
  border-color: #c00;
  background-image: url(../images/messages-error.png);
  padding: 5px 10px 5px 35px;
}

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

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