/* Default Style */
#notify {
	display: none;
	font-size: 16px;
	font-weight: bold;
	height: 40px;
	margin: 0;
	line-height:40px;
	position: fixed;
	text-align: center;
	z-index: 1000;
	width: 100%;
	bottom: 0px;
}

/* Signaling Message */
#notify.shout {
	background: #F8FE65;
	color: #333;
}

/* Error Message */
#notify.error {
	background: #FE3D26 ;
	color: #FCFCFC;
}

/* Success Message */
#notify.success {
	background: #67A05F;
	color: #FCFCFC;
}

/* Close Button */
#notify span.close {
	color: inherit !important;
	cursor: pointer;
	float: right;
	margin: 8px 10px 0 0;
	text-decoration: none;
}

#notify span.close:hover {
	text-decoration: none;
}

.notify_close_button {
	float:right;
	right: 5px;
	width: 30px;
	margin: 5px 5px 0 0;
}	