/* NOTIFY BARS */
.notify-bar,
.notify-error,
.notify-success  {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 299999;
	
	background-color: #efefef;
	border: none;
	border-bottom: 2px solid #bbb;
	color: #210;
	cursor: default;
	font-size: 18px;
	font-family: arial, sans-serif;
	padding: 25px 0px;
	text-align: center;
}
.notify-error {
	background: #fdd;
	color: #f00;
}
.notify-success {
	background: #5da22e;
	border-bottom: 2px solid #ccc;
	color: #fff;
}
.notify-bar-close {
	font-size: 11px;
	position: absolute;
	left: 95%;
}

.notify-close {
	background: url('../images/notify/bar.png') no-repeat;
	cursor: pointer; 
	margin-right: 5px; 
	margin-top: -15px;
	z-index: 299999;
	
	float: right; 
	height: 20px; 
	width: 20px; 
}
.notify-close:hover {
	background: url('../images/notify/barx.png') no-repeat;
}