/* Form Styling */
.clear {
  clear: both;
}

#contact-us form {
  font-size: 1.4em;
}


/* fieldset styling */
#contact-us fieldset {
	margin: 1em 0; /*  space out the fieldsets a little*/
	padding: 1em;
	border : 1px solid #ccc;
}

/* legend styling */
#contact-us legend {
	font-weight: bold;
	color: #000000;
}

#contact-us form p {
  	position: relative;
	width: 100%;
	font-size: 0.85em;
}

/* style for  labels */
#contact-us label {
	float: left;
	width: 8em;
	margin-bottom: 3px;
}

/* :KLUDGE: Explicitly set the width for IE6- */
* html .feedback{
  width: 10em;
}

#contact-us input {
  width: 200px;
}

#contact-us  input[type="text"], textarea {
	border-top: 2px solid #999;
	border-left: 2px solid #999;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
}

#contact-us  input.radio, input.checkbox, input.submit {
  width: auto;
}

/* style form elements on focus */
#contact-us  input:focus, textarea:focus {
	background: #ffc;
}

#contact-us  input.radio {
    float: left;
	margin-right: 1em;
}

#contact-us  textarea {
	width: 300px;
	height: 100px;
}