/* CSS Document */


form {
	font-size: 1.2em;
	width: 30em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	border-top: 10px solid #F6F9F9;
	border-bottom: 10px solid #F6F9F9;
}

/* 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: #333;
}


/* style for  labels */
label {
	display: block;
	text-align: left; 
}

/* style for required labels */
label .required {
	font-size: 0.72em;
	color:#760000;
	position: relative;  
	  margin-right: 1em;

}

input {
  width: 200px;
}


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: 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;
}

.style2 {
	font-size: 0.72em;
	color:#760000;
	position: relative;  
	margin-right: 0.7em;
	  }
label, .warning {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
  }
.warning {
	color:#F00;
	text-align: left;
  }