/* CSS Document */

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

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


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

/* legend styling */
legend {
  font-weight: bold;
}


/* style for  labels */
label {
  display: block;
}

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


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

/* style form elements on focus */
input:focus, textarea:focus {
  background: #ffc;
}
input.radio {
  float: left;
  margin-right: 1em;
}

.bulletins textarea {

}

/* 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 */

-->