#notices {
    margin: 10px auto;
    width: 600px;
    list-style: none;
}

#notices:hover {
    opacity: 1.0;
}

#notices li {
    margin: 10px 0;
    font-size: 16px;
    text-align: left;
    padding: 10px;
    -moz-box-shadow: 0 0 15px #888;
    border:1px solid #888;
    color: #444;
    text-shadow: 0px 1px 0 #fff;
    opacity: 0.8;
    list-style: none;
}

#notices li:hover {
    opacity: 1.0;
}

#notices li.info {
    background: #D5FFC6;
}

#notices li.success {
    background: #D5FFC6;
}

#notices li.warning {
    background: #F5F5B5;
}

#notices li.error {
    background: #FFE1DB;
}

