/*
This piece of software and all its components are licensed to
Diamond Cube (PTY) Ltd. 
*/
/* 
    Created on : 16-Apr-2014, 14:23:17
    Author     : bogosi.gabonnwe
*/

.info, .success, .warning, .error, .validation {
border: 1px solid;
margin: 0 auto;
padding:15px 10px 15px 70px;
background-repeat: no-repeat;
background-position: 10px center;
width: 400px;
}

.info ul, .success ul, .warning ul, .error ul, .validation ul {
    list-style-type: disc;
}

.info {
color: #00529B;
background-color: #BDE5F8;
background-image: url('images/info.gif');
}
.success {
color: #4F8A10;
background-color: #DFF2BF;
background-image:url('images/ok.gif');
}
.warning {
color: #9F6000;
background-color: #FEEFB3;
background-image: url('images/warning.gif');
}
.error {
color: #D8000C;
background-color: #FFBABA;
background-image: url('images/error.gif');
}

.validation {
color: #D63301;
background-color: #FFCCBA;
background-image: url('images/error.gif');
}

/* highlight control in error*/
.errorHighlight {
    border: 1px #D8000C solid;
}