/**
 * style for MessageBox(information/warning/error/announce) 
 */
div.MessageBox {
    font-weight: bold;
    padding: 0.5em 0em 0.5em 0em;
}
div.MessageBox .Information,
div.MessageBox .Announcement,
div.MessageBox .Warning,
div.MessageBox .Error {
    padding: 0.5em 1em 1em 3.5em;
    background-position: 0.7em 0.5em !important;
    background-repeat: no-repeat;
    -moz-border-radius: 0.5em;
}
div.MessageBox .Information {
    background-image: url(../img/information.gif);
    background-color: #E9F6FF;
    border: solid 1px #667E98;
}
div.MessageBox .Announcement {
    background-image: url(../img/Announcement.gif);
    background-color: #E9F6FF;
    border: solid 1px #667E98;
}
div.MessageBox .Warning {
    background-image: url(../img/warning24.gif);	
    background-color: #FDFFE9;
    border: solid 1px #FF960A;
}
div.MessageBox .Error {
    background-image: url(../img/critical24.gif);	
    background-color: #F7EDEC;
    border: solid 1px #BC3D44;
}
/* End style for MessageBox(information/warning/error/announce) */