/* This is the style for the informational messages presented to the user */

div#error, div#message, div#notice, div#warning {
    background-color: #ffffcc;
    border: 1px solid #000000;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    margin: 10px auto;
    padding: 3px;
    padding-left: 25px;
    text-align: left;
    vertical-align: bottom;
}

div#notice{
	background: #ffffcc url(../images/iconInformation.gif) center left no-repeat;
	background-position: 5px;
}

div#warning{
	border: 2px solid red;
	background: #ffffcc url(../images/iconWarning.gif) center left no-repeat;
	background-position: 5px;
	font-weight: bold;:;
}

div.warning {
  border: 2px solid red;
  padding-left: 5px;
  background-color: transparent;
}

/* use a different color for the errors */
div#error {
	border: 2px solid red;
}

img.validationWarning, div.errors img.icon, div.messages img.icon {
    border: 0;
    width: 14px;
    height: 13px;
    vertical-align: top;
}

div#message a {
    background: transparent;
    color: #0000FF;
}

div#message a:visited {
    background: transparent;
    color: #0000FF;
}

div#message a:hover {
    background: transparent;
    color: #008000;
}

div#message a:active {
    text-decoration: underline overline;
}

div#message img.icon {
    vertical-align: middle;
}

span.fieldError {
    color: red;
    font-size: .95em;
    font-weight: bold;
}

/* **************************************************
 * 		Validation error messages
 * **************************************************/
.fieldWithErrors {
  padding: 2px;
  background-color: red;
  display: table;
}

#errorExplanation {
  width: 400px;
  border: 2px solid 'red';
  padding: 7px;
  padding-bottom: 12px;
  margin-bottom: 20px;
  background-color: #ffffcc;
}

div.warning #errorExplanation {
  margin-bottom: 0;
}

#errorExplanation h2 {
	background: #ffffcc url(../images/iconWarning.gif) center left no-repeat;
	background-position: 5px;
  text-align: left;
  font-weight: bold;
  padding: 5px 5px 5px 25px;
  font-size: 12px;
  margin: -7px;
  background-color: #c00;
  color: #fff;
}

#errorExplanation p {
  color: #333;
  margin-bottom: 0;
  padding: 5px;
}

#errorExplanation ul li {
  font-size: 12px;
  list-style: square;
}

