/* jQuery Notifications plugin - http://programmingmind.com */
/* notification container */
#jquery-notifications {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 4;
}
/* common style properties for all the notification messages */
#jquery-notifications div.notice, #jquery-notifications div.success, #jquery-notifications div.warning, #jquery-notifications div.error {
	margin: 0;
	padding: 5px;
	padding-left: 10px;
	border-bottom: 2px solid;
	z-index: 4;
	left: 0px;
	z-index: 9999999;
	line-height: 30px;
	font-size: 16px;
	font-family: 'Lucida Grande',sans-serif;
	cursor: pointer;
}

#jquery-notifications div.notice {
	background: #FFF;
	color: #1E90FF;
	border-color: #ACACAC;
	text-align: center;
	opacity: 0.95;
	-moz-opacity: 0.95;
}
#jquery-notifications div.success {
	background: #96F96F;
	color: #045419;
	border-color: #045419;
	text-align: center;
	font-size: 1.2em;
	opacity: 0.95;
	-moz-opacity: 0.95;
}

#jquery-notifications div.warning {
	background: #F7AE57; 
	color: #753903; 
	border-color: #753903; 
	text-align: center; 
	font-size: 1.2em;
	opacity: 0.95;
	-moz-opacity: 0.95;
}
#jquery-notifications div.error {
	background: #F97C6F;
	color: #570F01;
	border-color: #570F01;
	text-align: center;
	font-size: 1.2em;
	opacity: 0.95;
	-moz-opacity: 0.95;
}
/* style property for the close text */
#jquery-notifications div > a {display: none; position:absolute; right: 0; margin-right:10px; color: #000000; text-decoration:none; border: 1px solid black; padding-right: 5px; padding-left: 5px; z-index: 4;}
