/* $Id: messages.css,v 1.3 2009/08/12 08:37:42 johnalbin Exp $ */

/**
 * @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 */ {
	min-height: 21px;
	margin: 1em 0;
	border: 1px solid #FCC026;
	padding: 0.75em 1.5em; /* LTR */
	color: #604400;
	background-color: #fceec1;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-family: "Gill Sans", "Gill Sans MT", Calibri, "Open Sans Condensed";
	font-size: 15px;
	line-height: 21px;
}

div.status {
	background: #d8ffd1; /* Old browsers */
	background: -moz-linear-gradient(top,  #d8ffd1 0%, #8cce7d 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d8ffd1), color-stop(100%,#8cce7d)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #d8ffd1 0%,#8cce7d 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #d8ffd1 0%,#8cce7d 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #d8ffd1 0%,#8cce7d 100%); /* IE10+ */
	background: linear-gradient(top,  #d8ffd1 0%,#8cce7d 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d8ffd1', endColorstr='#8cce7d',GradientType=0 ); /* IE6-9 */
	
	border-color: #58834F;
	color: #263922;
}

div.warning,
tr.warning {
	border-color: #FFE01E;
	color: #564941; /* Drupal core uses #220 */
	
	background: #fefcea; /* Old browsers */
	background: -moz-linear-gradient(top,  #fefcea 0%, #fff682 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefcea), color-stop(100%,#fff682)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #fefcea 0%,#fff682 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #fefcea 0%,#fff682 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #fefcea 0%,#fff682 100%); /* IE10+ */
	background: linear-gradient(top,  #fefcea 0%,#fff682 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefcea', endColorstr='#fff682',GradientType=0 ); /* IE6-9 */
	
	
}

div.error /* High priority messages. See also the .error declaration in pages.css. */ {
  /* border: 1px solid #d77; */ /* Drupal core uses: 1px solid #d77 */

	background: #fce0e0; /* Old browsers */
	background: -moz-linear-gradient(top,  #fce0e0 1%, #fcb5b5 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#fce0e0), color-stop(100%,#fcb5b5)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #fce0e0 1%,#fcb5b5 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #fce0e0 1%,#fcb5b5 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #fce0e0 1%,#fcb5b5 100%); /* IE10+ */
	background: linear-gradient(top,  #fce0e0 1%,#fcb5b5 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fce0e0', endColorstr='#fcb5b5',GradientType=0 ); /* IE6-9 */
	

  border-color: #c00;
}

div.error,
tr.error {
  color: #900; /* Drupal core uses #200 */
  background-color: #fee;
}

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