div.warning-message, div.information-message {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #FF9F7A;
    background-color: #FFF4DA;
    padding: 1em 1em 1em 1em;
    margin-bottom: 1em;
    display: flex;
}

div.successinformation-message {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #54A154;
    background-color: #F0FEF0;
    padding: 1em 1em 1em 1em;
    margin-bottom: 1em;
    display: flex;
}

div.information-message h2, div.warning-message h2 {
    text-decoration: none;
    color: #AA5500;
    margin: 0 0 0.5em;
}

div.successinformation-message h2 {
    text-decoration: none;
    color: #175117;
    margin: 0 0 0.5em;
}

div.successinformation-message .successinformation-icon,
div.successinformation-message .successinformation-icon-body,
div.information-message .information-icon,
div.information-message .information-icon-body,
div.warning-message .warning-icon,
div.warning-message .warning-icon-body,
div.error-message .error-icon,
div.error-message .error-icon-body {
    float: left;
    margin-left: 10px;
    margin-right: 10px;
}


div.successinformation-message .successinformation-icon-body,
div.information-message .information-icon-body,
div.warning-message .warning-icon-body,
div.error-message .error-icon-body {
    /*** How should we remove this hardcoded value ***/
    max-width: 508px;
}

div.warning-message .warning-icon {
    background-image: url("../images/warning_message.png");
    background-repeat: no-repeat;
    background-position: top;
    min-height: 64px;
    min-width: 64px;
}


div.information-message .information-icon {
    background-image: url("../images/information_message.png");
    background-repeat: no-repeat;
    background-position: top;
    min-height: 64px;
    min-width: 64px;
}

div.successinformation-message .successinformation-icon {
    background-image: url("../images/success_information_message.png");
    background-repeat: no-repeat;
    background-position: top;
    min-height: 64px;
    min-width: 64px;
}

div.successinformation-message h3 {
    text-decoration: none;
    font-size: 100%;
    color: #175117;
    margin: 0.5em 0 0.5em;
}

div.information-message h3, div.warning-message h3 {
    text-decoration: none;
    font-size: 100%;
    color: #AA5500;
    margin: 0.5em 0 0.5em;
}

div.successinformation-message li, div.successinformation-message p {
    color: #175117;
    margin-top: 0;
    margin-bottom: 0;
}

div.information-message li, div.information-message p, div.warning-message p {
    color: #AA5500;
    margin-top: 0;
    margin-bottom: 0;
}

div.successinformation-message .clear, div.information-message .clear, div.warning-message .clear, div.error-message .clear {
    clear: both;
}

.validationMessageLabel img {
    vertical-align: sub;
    margin-right: 0.3ex;
}

div.error-message {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #EEBBBB;
    background-color: #FFF2F0;
    padding: 1em 1em 1em 1em;
    margin-bottom: 1em;
    display: flex;
}

div.error-message h2 {
    text-decoration: none;
    color: #880000;
    margin: 0 0 0.5em;
}

div.error-message .error-icon {
    background-image: url("../images/warning_message.png");
    background-repeat: no-repeat;
    background-position: top;
    min-height: 64px;
    min-width: 64px;
}

div.error-message p {
    color: #880000;
    margin-top: 0;
    margin-bottom: 0;
}