.vse-notification-box{
    position:fixed;
    right:0;
    bottom:0;
    z-index:9999;
}
.vse-notification {
    padding:10px;
    min-width: 200px;
    max-width: 300px;
    display: none;
    margin:10px 2px;
}
.vse-notification:first-child{
    margin-top:0px;
}

.vse-notification .close-button{
    margin-top:2px;
    display: block;
    width: 9px;
    height: 9px;
    float: right;
    text-decoration: none;
    background-image: url('/common-static/img/close-green.png');
    cursor: pointer;
}
.vse-notification .message{
    margin-top: 5px;
}

/*обычное сообщение*/
.vse-notification.notification{
    background: #F5F5EA;
    border:1px solid #AAA;
    box-shadow: 0px 0px 5px #AAA;
}
.vse-notification.notification .title{
    font-weight: bold;
    color:#749F79;
}
/* Ошибка */
.vse-notification.error{
    background: #FF7F7F;
    border:1px solid #ff3d3d;
    box-shadow: 0px 0px 5px #FF7F7F;
    color:white;
}
.vse-notification.error .title{
    font-weight: bold;
    color:black;
}
.vse-notification.error .close-button{
    background-image: url('/common-static/img/slider.png');
    background-position: -84px 0px;
}