/**
 * Error, warning and information messages to the user, in response to some server-side action.
 */
.message
{
  position:relative;
  left:25%;
  right:25%;
  width:50%;
  text-align: center;
  font-weight: bold;
  padding: 1em;
  border-style: solid;
  color: #000066;
  border-color: #000066;
}

.error
{
  color:#ff0000;
  border-color:#ff0000;
}

p.header-message
{
  color: blue;
  text-align: left;
  font-weight:bold;
}

p.validation-message
{
  color: red;
  text-align: center;
  font-weight:bold;
}

input.validation-message,
textarea.validation-message,
select.validation-message
{
  background-color: orange;
  color: black;
}
