/* $Id: messages.css,v 1.1 2009/09/05 10:36:22 Inder Singh Exp $ 
Last Modified:- Inder Singh 2009/09/05 
*/
/*
* MESSAGES STYLE
*                                                                               
* Add sensible messages styling.
*/
/* Important messages (status, warning, and error) for the user */
div.messages,div.status,div.warning,div.error {
    background-color:#FFFFCC;
    background-image:url(../images/messages-status.png);
    background-position:5px 5px;
    background-repeat:no-repeat;
    border:2px solid #FFFF77;
    color:#000000;
    margin:0 1em 5px;
    min-height:21px;
    padding:5px 5px 5px 35px;
}   
div.status /* Normal priority messages */{
}

div.warning /* Medium priority messages */{
    border-color: #fc0;
    background-image: url(../images/messages-warning.png);
}
div.warning,tr.warning,body.section-admin tr.warning{
    color: #555; /* Drupal core uses #220 */
    background-color: #ffc;
}
div.error /* High priority messages. See also the .error declaration below. */{
    border-color: #555;
    background-image: url(../images/messages-error.png);
}
div.error,tr.error,body.section-admin tr.error{
    color: #555; /* Drupal core uses #200 */
    background-color: #22CEE2;
}
div.messages ul{
    margin-top: 0;
    margin-bottom: 0;
}

