
/**
  * Project:  Wordpress Basic Contact Form
  * File:     form.css
  * Created:  25/03/08
  * Author:   Derek Harvey (http://www.lotsofcode.com)
  *
  * @copyright 2008 Derek Harvey.
  * @package Wordpress Basic Contact Form
  * @version 1.0.0.1 
  * 
*/

/* Formatting for success message */

#cf-success {
  width: 400px;
  margin: auto;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}

/* Basic Form Styles */
  
.formDisplay {
	margin: 0 10px;
	font-size: 11px;
}
.formDisplay dt {
	float: left;
	font-weight: bold;
	line-height: 20px;
	width: 110px;
}
.formDisplay dd {
	margin-left: 120px;
}
.formDisplay dd input, .formDisplay dd textarea {
	font-family: Tahoma, Verdana, Arial, Sans-serif;
	width: 150px;
	font-size: 11px;
	background: #FFF;
	border: 1px solid #333;
	padding: 4px;
}
.formDisplay dd input:focus, .formDisplay dd textarea:focus {
	border: 1px solid #666;
	background: #EEE;
}
.formDisplay dd textarea {
	width: 260px;
	height: 120px;
}
.formDisplay dd input.submitButton {
	width: auto;
}
.formDisplay dd .submit {
	/* margin: auto; */
}
.formDisplay #freecap {
	border: 1px solid #333;
}
