/* Forms */
form#contact label{
	display:block;
	font-size:14px;
	font-weight:bold;
	margin:0 0 5px 0;
	}

form#contact input{
	padding:5px;
	font-size:16px;
	width:250px;
	color:#333;
	}

form#contact textarea{
	font-family:Arial, Tahoma, Helvetica, sans-serif;
	font-size:16px;
	padding:5px;
	width:580px;
	height:200px;
	overflow:auto;
	resize:none;
	}
	
/* Cabbit Ajax Form */

form {
	position:			relative;
}

label {
	color: 				#fff;
	position:			relative;
	display:			block;
	float:				left;
	width:				490px;
	clear:				both;
	padding:			5px;
	font-size:			17px;
	font-weight:		bold;
	line-height:		2em;
	margin-bottom:		5px;
	/*background:		green;*/
}

label.nocontent {
	border:				none;
	padding:			5px 0px;
}

label.required {
	background-image:	url('/public/images/form-required.gif');
	background-repeat:	no-repeat;
	background-position:center left;
}	

label.isgood {
	background-image:	url('/public/images/form-tick.gif');
	background-repeat:	no-repeat;
	background-position:center left;
}


label.active {
	color: 				#000;
	background-color:	#DBF9C7;
	border:				1px solid green;
}

label.error {
	background-color:	#ecd0ce;
	border:				1px solid red;
}				

label input {
	width:				200px;
	float:				right;
	padding:			5px;
	font-size:			17px;
	font-weight: 		bold;
	border:				1px solid #afafaf;
}
label select {
	width:				200px;
	float:				right;
	padding:			5px;
	font-size:			1em;
	border:				1px solid #afafaf;
}
label input.active {
	border:				2px solid green;
}
label input.error {
	border:				2px solid red;
}

textarea{
	clear:				both;
	padding:			5px;
	width:				484px;
	height:				150px;
	font-size:			17px;
	overflow:			auto;
	resize:				none;
	}
			
#formsubmit {
	width:				150px;
	padding:			5px 10px;
	border:				none;
	background:			#01A8FF;
	color:				#ffffff;
	font-weight:		bold;
	}
/* Info pop up classes */
.infopop {
	display:			block;
	position:			absolute;
	left:				513px;
	top:				-11px;
	background:			url('/public/images/form-success.png') no-repeat top left;
	line-height:		40px;
	color:				white;
	font-size:			0.8em;
	width:				270px;
	height:				62px;
	line-height:		62px;
	text-indent:		30px;
	}

.errorpop {
	background-image:	url('/public/images/form-warning.png');
	}	
