/*form styles*/
form {
/*  font-size: 1.4em;*/
	width: 50em;
    font-size: 1.2em;
}

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

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

form div {
	position: relative;
	width: 95%;
	padding: 0.4em 0;
	clear: both;
}

/* style for  labels */
label {
	float: left;
	clear: left;
	width: 10em;
	/*  add right padding to move input 'subtract value from input width'  */
	padding-right: 1em;
}

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

/* style error messages */
label .feedback {
	position: absolute;
	left: 40em;
        right: 0;
	top: 0.5em;
	font-weight: bold;
	color:#808080;
	padding-left: 20px;  /* padding used for image */
	background: url(images/action.gif) no-repeat left top;
}

* html .feedback{
  width: 10em;
}

input {
	width: 20em;
	font-size: inherit;
}

input[type="text"],input[type="password"], textarea {
    float: left;
    position: relative;
	width: 20em;
    border-top: 2px solid #999;
	border-left: 2px solid #999;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
}

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

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

input.radio {
/*  float: left;*/
/*  margin-right: 10em;
  margin-left: 1em;*/
  width: 30em;
}

textarea {
	width: 80%;
	height: 10em;
	margin-top: 20px;

}