@charset "utf-8";
/* CSS Document */

/***********************************************/
/* Contact Form `BKS                           */
/***********************************************/

#contactForm {/* Controls the form as a whole `BKS */
	width:550px;
}

#contactLft {
	float:left;
	margin:0 10px 0px;
	display:inline;
}

#contactRgt {
	float:left;
	margin:0 15px 0px;
	display:inline;
}

#contactInfo { /* Match padding-top with .legend `BKS */
	padding-top: 25px;
}

.legend { /* Match padding-top with #contactInfo `BKS */
	font-weight:bold;
	padding-bottom:0.5em;
	padding-top: 25px;
}
	
	.legend em {
		font-size:0.8em;
		font-weight:normal;
	}
	
.contactList {
	list-style:none;
	padding:20px;
	color:#fff;
}

	.contactList li {
		margin-bottom:15px;
	}


/***********************************************/
/*                            Text Inputs `BKS */
/***********************************************/

.textFields {
	width:280px;
	margin:0px;
	padding:3px 0px;
	border:1px solid #7D7D7D;
}

.textLabels {
	width:280px;
	display:block;
	padding-top:8px;
	padding-bottom:3px;
}

.state_zip {
	width:auto;
	display:inline;
	margin-top:11px;
	padding-bottom:3px;
}

input, textarea {
	margin-bottom:5px;
}


/***********************************************/
/*                            Check Boxes `BKS */
/***********************************************/

.checkLabels {
	line-height:2em;
}

.checkBoxes {
	margin:3px;
}


/***********************************************/
/*                          Radio Buttons `BKS */
/***********************************************/

.radioLabels {
	line-height:2em;
}

.radioBtns {
	margin:3px;
}


/***********************************************/
/*                           Form Buttons `BKS */
/***********************************************/

#formButtons {
	padding:25px;
	text-align:left;
	clear:both;
}

.submit, .reset {
	background-color:#8886a3; 
	color:#fff; 
	border-top:1px solid #999; 
	border-left:1px solid #999;
	border-bottom:1px solid #000;	
	border-right:1px solid #000;
	cursor:pointer;
	font-weight:bold;
}

	.submit:hover, .reset:hover { /* Doesn't work in IE6 `BKS */
		background:#b1add3;
	}


/***********************************************/
/*                     Required Data/Msgs `BKS */
/***********************************************/
	
#statusMsg { /* Note: Margins will show even without the message (so don't use them) `BKS */
	color:#CC0000;
}

.reqItem {
	color:#cc0000;
}
	
	
	
