.alert-message {
    width:100%;
    padding: 10px 15px;
    margin-top: 1em;
    border-radius: 0%;
    font-size: 14px;
    color: #444;
    background-color: #fcf8e3;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);
            box-shadow: inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);
}

.alert-message-warn {
    color: #8a6d3b;
    border-color: #f5e79e;
    background-color: #fcf8e3;
    background-image: -webkit-gradient(linear,left top, left bottom,color-stop(0, #fcf8e3),to(#f8efc0));
    background-image: linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
}

.alert-message-fail {
    color: #a94442;
    border-color: #dca7a7;
    background-color: #f2dede;
    background-image: -webkit-gradient(linear,left top, left bottom,color-stop(0, #f2dede),to(#e7c3c3));
    background-image: linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
}

.alert-message-success {
    color: #3c763d;
    border-color: #b2dba1;
    background-color: #dff0d8;
    background-image: -webkit-gradient(linear,left top, left bottom,color-stop(0, #dff0d8),to(#c8e5bc));
    background-image: linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
}