/* Notification messages */
 
.notification-error {
	position:absolute;
	display:none;
	color: #fff;
	width:400px;
	height:100px;
	text-align:center;
	background: #c20007;
	padding: 20px;
	border: 1px solid #ccc;
}
.notification-success {
	position:absolute;
	display:none;
	width:400px;
	height:100px;
	text-align:center;
	background: #70ca2c;
	padding: 20px;
	color: #fff;
	border: 1px solid #ccc;
}
.notification-notice {
	position:absolute;
	display:none;
	color: #000;
	width:400px;
	height:100px;
	text-align:center;
	background: #dfe7e7;
	padding: 20px;
	border: 1px solid #ccc;
}