				form {
					position:			relative;
				}
		
			/* Form Elements */
				label {
					position:			relative;
					display:			block;
					float:				left;
					width:				400px;
					clear:				both;
					border:				0px solid #dedede;
					padding:			2px;
					color: 				#1a1a1a;
					font-size:			13px;
					line-height:		30px;
					margin-bottom:		5px;
				}
				
				label.nocontent {
					border:				none;
				}
				
				label.active {
					border:				0px solid #a2ac33;
				}
				
				label.error {
					float: left;
					color: #666;
					border:				0px solid red;
				}				
				
				label.required {
					background-repeat:	no-repeat;
					background-position:center left;
				}	
				
				label.isgood {
					background-image:	url(../images/tick.gif);
					background-repeat:	no-repeat;
					background-position:center left;
				}
				
				label.arearequired {
					background-image:	url(../images/required.gif);
					background-repeat:	no-repeat;
					background-position:top left;
				}	
				
				label.areaisgood {
					background-image:	url(../images/tick.gif);
					background-repeat:	no-repeat;
					background-position:top left;
				}
				
				input {
					width:				270px;
					height: 			15px;
					float:				right;
					padding:			5px;
					font-size:			13px;
					border:				2px solid #afafaf;
				}
				
				
				input.active {
					border:				2px solid #858C98;
				}
				
				label input.error {
					border:				2px solid #afafaf;
				}				
				
				textarea {
					width:				330px;
					height:				100px;
					float:				right;
					padding:			5px;
					font-size:			13px;
					border:				2px solid #afafaf;
					font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
				}
				
				textarea.active {
					border:				2px solid #858C98;
				}
				
				textarea.error {
					border:				2px solid #afafaf;
				}
				
				#formsubmit {
					border:				2px solid #666;
					float: 				right;
					height: 35px;
					width: 130px;
					margin-top: 10px;
					font-size: 13px;
					background: #525C6D;
					text-transform: uppercase;
					color: #fff;
				}
				
				.submit {
					
					height: 35px;
					background: #e4701e;
					color: #fff;
				}
				
								/* Info pop up classes */
				.infopop {
					display:			block;
					position:			absolute;
					left:				513px;
					top:				1px;
					color:				#ffffff;
					font-size:			15px;
					width:				185px;
					height:				30px;
					line-height:		30px;
					text-indent:		30px;
					font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
				}
				
				.errorpop {
					background-image:	url(popBoxWarning.gif);
				} 
				
				.errormsg {
					position: relative;
					display: none;
				}
				
