/* Default Style */
#notify {
	display: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	height: 30px;
	margin: 0;
	padding: 15px 0 5px;
	position: fixed;
	text-align: center;
	z-index: 1000;
	width: 100%;
	top: 0;
}

/* 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: 0 10px 0 0;
	text-decoration: none;
}

#notify span.close:hover {
	text-decoration: none;
}
