form 
{
	width: 500px;
	margin: 0 0 0 40px;
	padding: 0;
}

#text form fieldset p {
	margin: 0 0 0 5px;
}



/* fieldset styling */
fieldset {
  margin: 1em 0; /*  space out the fieldsets a little*/
  padding: 20px;
  border : 1px solid #D0C5C5;
}

/* legend styling */
legend {
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	margin-left: 0px;
	color: #735E23;
}


/* style for  labels */
label {
	display: block;
	font-weight: bold;
	margin-top: 10px;
}

/* style for required labels */
.required {
  font-size: 1em;
  color:#990000;
}

input {
}

input.radio, input.submit {
	width: auto;
	margin-left: 60px;
}

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

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

textarea {
  width: 300px;
  height: 100px;
}

/* Hack to make sure the floated radio buttons
   sit next to the labels correctly in IE/Mac*/

/* This is the style I want IE/Mac to see */
input.radio + label {
  text-indent: 2em;
}

/* Using the commented backslash filter, I'm resetting
   the above rule for everything other than IE5/Mac \*/
input.radio + label {
  text-indent: 0;
}

/* End the hack */
