/* CSS Document */

form {
  font-size: 12px;
  width: 570px;
  margin: 0 auto;
}

form p {
	margin:0;
	padding:0;
}

.paul {
	font-size: 12px;
	font-weight: normal;
}

form tr {
	font-size: 12px;
	font-weight: normal;
}


/* fieldset styling */
fieldset {
	margin: 0.5em 0; /*  space out the fieldsets a little*/
	padding: 5px;
	border : 1px solid #009EC3;
	background-color: #96DBEA;
}

/* legend styling */
legend {
  font-size: 12px;
}


/* style for  labels */
label {
  display: block;
  font-weight: normal;
}

/* style for required labels */
label .required {
  font-size: 11px;
  color:#760000;
}


input.radio, input.submit {
  width: auto;
}

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

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

}

textarea {
  width: 500px;
  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 */

-->
