/* $Id: messages.css,v 1.1.2.2 2009/02/13 07:46:04 johnalbin Exp $ */

/*
 * MESSAGES STYLE
 *
 * Add sensible messages styling.
 */


  div.messages, /* Important messages (status, warning, and error) for the user */
  div.warning,
  div.error
  {
    min-height: 21px;
    margin: 0 1em 5px 1em;
    border: 2px solid #ff7;
    padding: 5px 5px 5px 35px;
    color: #000;
    background-color: #ffc;
    background-image: url(images/messages-status.png);
    background-repeat: no-repeat;
    background-position: 5px 5px;
  }

  div.status /* Normal priority messages */
  {
  	background-color:#EDEEE8;
	background-image:url(images/successmessage.png);
	background-position:0 0;
	background-repeat:no-repeat;
	border:medium none;
	color:#93AB50;
	font-size:1.2em;
	font-weight:bold;
	margin:0px 0px 10px 0px;
	height:62px;
	padding:12px 5px 5px 63px;
  }

  div.warning /* Medium priority messages */
  {
    border-color: #fc0;
    background-image: url(images/messages-warning.png);
  }

  div.warning,
  tr.warning
  {
    color: #000; /* Drupal core uses #220 */
    background-color: #ffc;
  }

  div.error /* High priority messages. See also the .error declaration below. */
  {
    /* border: 1px solid #d77; */ /* Drupal core uses: 1px solid #d77 */
	background:url(images/errormessage.png) no-repeat;
	border:0px;
  }

  div.error,
  tr.error
  {
	background-color:#EDEEE8;
	color:#D23C00;
	font-size:12px;
	font-weight:bold;
	height:62px;
	padding:15px 0 0 61px;
	margin:0px 0px 10px 0px;
  }

  div.messages ul
  {
	margin:0px;
	padding:0px;
  }
  
  div.error ul
  {
  	color:#D23C00;
  }
  
  div.status ul
  {
  	color:#93AB50;
  }
  
  div.messages ul li
  {
  	font-weight:bold;
	font-size:12px;
	margin:0px 0 0 20px;
	line-height:15px;
  }
  
  #popups div.messages ul
  {
  	padding:6px 0px 10px 0px;
  }
