﻿/* Site Notifications Using Panels */

body {
    height:2000px;
}

#note{
    display:none;
    position:fixed;
    bottom:0;
    right:3px;
    min-height: 50px;
    height:100px;
    width:400px;
    background: #4679bd;
    padding: 20px 40px;
    font: 18px arial, Georgia, serif;
    color: #fff;     
    border-radius: 1px;
}

.close {
    background: transparent url('../images/close-sign.png') 0 0 no-repeat;
    position: absolute;
    cursor: pointer;
    top: 5px;
    right: 5px;
    width:40px;
    height:48px;
    display:block;
}