/*
    Document   : notification.css
    Created on : 20.Oca.2011, 15:21:48
    Author     : Ali OYGUR
    Description: Uyarı / Bildirim mesajlarında kullanılmak üzere yazıldı.
*/

.notification {
    font: normal 12px arial;
    color: #000;
    text-align: left;
    margin: 5px 0;
    padding: 15px 5px 15px 50px;
}

.notification.loading{
    margin: 40px 0;
    background: transparent url('./loading.gif') no-repeat center center;
}
.notification.error{
    background: #FFB0B0 url('./warning.png') no-repeat 4px center;
}
.notification.warning{
    background: #FAFACA url('./warning.png') no-repeat 4px center;
}
.notification.info{
    background: aliceblue url('./info.png') no-repeat 4px center;
}
.notification.success{
    background: #A9FFA9 url('./accept.png') no-repeat 4px center;
}
.notification.secure{
    background: #FAFACA url('./security.png') no-repeat 4px center;
}

