.formErrors{
	text-align: left;
	color: #ffffff;
	font-weight: bold;
	font-size: 14px;
	outline: none;

	/* Block */
	box-sizing: border-box;
	width: 100%;
	margin: 8px auto;
	padding: 20px;

	background-color: #ff8c00;;
	border-radius: 5px;
}
.formErrors > li {
	list-style: none;
/*	max-height: 40px;*/
}
.fieldWithError{
	border: 2px solid #ff8c00;
	background: url('/images/warning.png');
	background-repeat: no-repeat;
	background-position: right;
}
/*
	Notifications
______________________________________________________*/
.notification {
	/* Size and position */
	position: fixed;
	display: block;
	width: 400px;
	left: 50%;
	margin-left: -224px;
	z-index: 101;
	top: 100px;
	padding: 8px 8px 16px 40px;
	line-height: 24px;

	/* Look and feel */
	opacity: 0.9;
	border-radius: 8px;
	font-size: 0.8em;
	font-weight: bold;
	background: #fff;
	cursor: default;
	border: 1px solid #444;
	color: #000;
	animation: fadeOut 5s linear forwards;
}
.notificationIcon {
	width: 24px;
	height: 24px;
	position: absolute;
	bottom: 16px;
	left:8px;
}
.successMessage{background:url('/images/notifications.png') 0 0 no-repeat;}
.warningMessage{background:url('/images/notifications.png') -24px 0 no-repeat;}
.errorMessage{background: url('/images/notifications.png') -48px 0 no-repeat;}
.notificationProgress {
	width: 0;
	height: 4px;
	background: rgba(69,69,69,0.6);
	position: absolute;
	bottom: 5px;
	left: 2%;
	border-radius: 3px;
	opacity: 0.8;
	animation: runProgress 4s linear forwards 0.5s;
}
@keyframes fadeOut {
	0% 	{ opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; transform: translateY(0px);}
	99% { opacity: 0; transform: translateY(-72px);z-index: 101;}
	100% { opacity: 0; z-index:-100;}
}
@keyframes runProgress {
	0%	{ width: 0%; background: rgba(69,69,69,0.6); }
	100% { width: 96%; background: rgba(69,69,69,1); }
}
