/* jQuery Notifications plugin - http://programmingmind.com */
/* notification container */
/*html, body {
    height: 100%;
    overflow:auto;
}*/

#jquery-notifications {position: fixed; width: 100%; left: 0; top: 0; position:fixed !important; position: absolute; /*ie6 and above*/}

/*#jquery-notifications {position: fixed; width: 100%; left: 0; top: 0}*/
/* common style properties for all the notification messages */
/*#jquery-notifications div.notice, #jquery-notifications div.success, #jquery-notifications div.warning, #jquery-notifications div.error {text-align:center; margin: 0; padding: 5px; padding-left: 10px; border-bottom: 2px solid}*/
#jquery-notifications div.notice, #jquery-notifications div.success, #jquery-notifications div.warning, #jquery-notifications div.error {
    height:50px;
	width:100%;
	background-color: #fff;
	position:fixed;
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=95);
	opacity: 0.85;
	-moz-opacity: 0.85;
	text-align:center;
	left:0px;
        line-height:46px;
        font-size: 18px;
	font-family:'Lucida Grande',sans-serif;
}
#jquery-notifications div.notice {background:#7F3000; color:#fff; border-color:#7F3000}
#jquery-notifications div.success {background:#18454F; color:#fff; border-color:#367D55}
#jquery-notifications div.warning {background:#F7AE57; color:#fff; border-color:#753903}
#jquery-notifications div.error {background:#FF0000; color:#fff; border-color:#FF0000}
/* style property for the close text */
#jquery-notifications div > a {position:absolute; right: 0; margin-right:10px; color: #fff; text-decoration:none; padding-right: 5px; padding-left: 5px}`