.notiPanel
{
    position:fixed;
    top:0px;
    margin:0px auto;
    min-height:100px;
    height:auto;
    width:400px;
    z-index:10001;
}

.noti-error
{
    background-color:red;
    font-weight:bold;
    color:rgb(255, 255, 255);
    border:1px solid rgb(203, 14, 0);
}
.noti-warning
{
    background-color:rgb(255, 234, 168);
    border:1px solid rgb(255, 194, 55);
    color:rgb(130, 98, 0);
}
.noti-information
{
    background-color:rgb(144, 238, 144);
    border:1px solid rgb(80, 194, 78);
    color:rgb(0, 100, 0);
}

.msg {
    overflow: hidden;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAoCAYAAAAPOoFWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNq81tsOgjAMANB2ov7/7ypaN7IlIwi9rGuT8QSc9EIDAsAznxvY4pXPKr05RUE5MEVB+TyWfCEl9LZApYopCmo9C4FKSMtYoI8Bwv79aQJU4l6hXXCZrQbokJEksxHo9KMOgc6w1atHXM8K9DVC7FQnJ0i8iK3QooGgbnyKgMDygBWyYFZoqx4qS27KqLZJjA1D0jK6QJcYEQEiWv9PGkTsbqxQ8oT+ZtZB6AkdsJnQDnMoHXHLGKOgDYuCWmYhEERCI5gaamW0bnHdA3k2ltlIN+2qKRyCND0bhqSYCyTB3CAOc4WusBEIpkeBuPgJMAAX8Hs1NfqHRgAAAABJRU5ErkJggg==');
    background-repeat:repeat-x;
    background-attachment: scroll;
    border-radius: 0px 0px 5px 5px;
    box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px;
    width: 100%;
    height:auto;    
    cursor: pointer;
    background-position: 0% 0%;
    background-repeat: repeat no-repeat;

    font-size: 13px;
    line-height: 16px;
    text-align: center;
    padding: 8px 50px 9px;
    width: auto;
    position: relative;
}

.noti-warning:hover 
{
    -moz-box-shadow:    inset 0 0 10px rgb(255, 194, 55);
    -webkit-box-shadow: inset 0 0 10px rgb(255, 194, 55);
    box-shadow:         inset 0 0 10px rgb(255, 194, 55);
}

.noti-error:hover 
{
    -moz-box-shadow:    inset 0 0 10px rgb(139, 0, 0);
    -webkit-box-shadow: inset 0 0 10px rgb(139, 0, 0);
    box-shadow:         inset 0 0 10px rgb(139, 0, 0);
}
.noti-information:hover 
{
    -moz-box-shadow:    inset 0 0 10px rgb(80, 194, 78);
    -webkit-box-shadow: inset 0 0 10px rgb(80, 194, 78);
    box-shadow:         inset 0 0 10px rgb(80, 194, 78);
}