	
/* Positions the contact form so it doesn't interfere with any other content, as well as a z-index above any other elements on the page */	
#contactFormContainer {
	left:368px;
	z-index:1;
	width: 160px;
	float: left;
	height: 360px;
	padding: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	line-height: 24px;
	background-image: url(../images/small_round.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	}
	
/* Hides the whole contact form until needed */	
#contactForm {
	}   

/* Loading bar that will appear while the ajax magic is happening */
.bar{
	display:none;
	background:url(../images/ajax-loader.gif) no-repeat center;
	}
	
/* Hides the confirmation message until needed */	
#messageSent {display:none;}

/* This hides the form validation alert messages until needed */
#contactForm span {
	display:none;
	font-size:9px;
	line-height:10px;
	padding-left:6px;
	color:#660066;
	}
#contactForm .input_boxes {
	float:left;
	width:160px;
}
.rounded {
	background-image: url(../images/text_field_bkg.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 20px;
	width: 150px;
	padding: 5px;
}
#name  {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #CCC;
	width: 100%;
	height: 100%;
}
#e-mail {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #CCC;
	width: 100%;
	height: 100%;
}

input, textarea {outline-style:none;}
#message {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #CCC;
	height: 100%;
	width: 100%;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.msg_rounded {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	height: 90px;
	background-image: url(../images/message_bkg.png);
	background-repeat: no-repeat;
	background-position: left top;
	width: 150px;
	padding: 5px;
}
.submit  {
	text-transform:uppercase;
	color:#FFFFFF;
	height:30px;
	width:140px;
	cursor:pointer;
	display: block;
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 20px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #732A7D;
	margin-right: auto;
	margin-left: auto;
	}
