#content {
    position:relative;
}
.floating_notification {
    z-index:10000;
    position:fixed;
    top:20px;
    right:20px;
    
    width:250px;
    
    min-height:34px;
    
    padding:5px;
    
    background-color:#EEFFEE;
    border:2px solid #666;
    
    cursor:pointer;
    
    font-family: "Lucida Grande", Verdana, sans-serif;
    text-align:left;
    font-size:12px;
    
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    
    -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
}


.floating_notification.type-error {
    background-color:#FFEEEE;
    background-image:url(images/notifications/error.png);
    background-repeat:no-repeat;
    background-position:3px 6px;
}

.floating_notification.type-info {
    background-color:#EEFFEE;
    background-image:url(images/notifications/info.png);
    background-repeat:no-repeat;
    background-position:3px 6px;
}

.floating_notification_title {
    font-weight:bold;    
    margin-left:34px;
}

.floating_notification_message {
    margin-left:34px;
    font-size:11px;
}

