

/*	cForm
----------------------------------------------------------------------------------------------------*/
#cForm span {
	margin: 11px 10px;
	display: inline-block;
	color: #F00;
}
#cForm span strong {
	color: #F00;
}
#cForm i {
	color: #000;
	margin: 0 10px 0 0
}

.fieldtrue {
	border: 1px solid #1ABC5B !important
}
.fielderror {
	border-color: #F00 !important;
}

/*	Notification Boxes
----------------------------------------------------------------------*/
.notification-box {
	position: relative;
	margin-bottom: 10px;
	border-radius: 10px;
	padding: 20px 32px 20px 20px;
	color:#fff;
	font-size: 14px;
	font-weight: normal;
	-webkit-animation: fadeInUp 1.3s;
	animation: fadeInUp 1.3s;
}
a.notification-close {
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 12px;
}
.notification-box p {
	margin: 0;	
}
.notification-box p i {
	padding-right: 10px;
	border-right: 1px solid;
	margin-right: 10px;
}
.notification-box-info {
	color: #65cad3;
	border: 1px solid #65cad3;
}
.notification-box-success {
	color: #1abc9c;
	border: 1px solid #1abc9c;
}
.notification-box-warning {
	color: #eed880;
	border: 1px solid #eed880;
}
.notification-box-error {
	color: #e06f6f;
	border: 1px solid #e06f6f;
}
.notification-box-info a {
	color: #65cad3;
}
.notification-box-success a {
	color: #1abc9c;
}
.notification-box-warning a {
	color: #eed880;
}
.notification-box-error a {
	color: #e06f6f;
}