﻿/*form styles*/
form {
  width: 90%;
  margin-top: -10px;
}


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

/* legend styling */
legend {
  font-weight: bold;
  color: #4C8734;
  margin-bottom: 5px;
}


/* style for  labels */
label {
	float: left;
	width: 20em;
}


/* style for required labels */
label .required {
  font-size: 0.75em;
  color:#444;
}

input {
  width: 200px;
}


input.radio {
  width: auto;
}

input.submit {
	width: auto;
	margin-left: 1em;
	width: 100px;
}

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

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

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

.style1 {
	font-size: 0.9em;
}

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

-->

