.alert {
    background: none repeat scroll 0 0 #EEEEEE;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 -1px 0 rgba(255, 255, 255, 0.2) inset;
    font-family: Helvetica,Arial,"Times New Roman",Times,serif;
    font-size: 15px;
    font-style: normal;
    margin: 12px 0 20px;
    padding: 15px 10px 15px 55px;
    position: relative;
    width: auto;
}

.alert.alert-success {
    background: url(img/ok.png) no-repeat scroll 8px 9px, -moz-linear-gradient(center top , #CDEB8E 0px, #A5C956 100%) repeat scroll 0 0 transparent;
    border: 1px solid #87AE33;
    color: #3F4B25;
    text-shadow: 1px 1px 1px #D5EAA8;
}

.alert.alert-info {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: url(img/info.png) no-repeat scroll 8px 8px, -moz-linear-gradient(center top , #C7E3F9 0px, #AECEE8 100%) repeat scroll 0 0 transparent;
    border-color: #70A2C9 #5F9BC9;
    border-image: none;
    border-style: solid;
    border-width: 1px;
    color: #2E6093;
    text-shadow: 1px 1px 1px #E2F6FA;
}

.alert.alert-warning, .alert.alert-error {
    background: url(img/warning.png) no-repeat scroll 8px 8px, -moz-linear-gradient(center top , #FFEDC1 0px, #FCDE8D 100%) repeat scroll 0 0 transparent;
    border: 1px solid #EA9936;
    color: #FF4500;
    text-shadow: 1px 1px 1px #FFEDC1;
}

.alert .close {
    display: none;
    border: 0;
    cursor: pointer;
    height: 14px;
    position: absolute;
    right: 0;
    top: 0;
    width: 14px;
}

.alert:hover .close {display: block}