form {
  font-size: 1em;
	padding-right:1em;
}


/* fieldset styling */
fieldset {
	margin: 1em 0; /*  space out the fieldsets a little*/
	padding: 1em;
	border : 1px solid #e6e6e6;
	background-color:#F5F5F5;
}

/* legend styling */
legend {
	font-weight: bold;
	font-size: 1.6em;
	color:#0075BE;
}

form p {
  position: relative;
	width: 100%;
}

/* style for  labels */
label {
	float: left;
	width: 14em;
	color:#333;
}


/* style for required labels */
label .required {
	font-size: 0.9em;
	color:#D90000;
}

/* style error messages */

.error{
	background: #ffd8d9 url(../images/form-error.png) no-repeat 99% 3em;
	display:none;
	margin-right:1em;
	color:#333333;
	text-align:center;
	color:#333;
	padding-bottom:1em;
	font-size:1.2em;
	font-weight:bold;
	height:14em;
	
}

.error h2{
background:#f74f52;
color: #ffffff;
text-align:center;
margin-top:0;
margin-bottom:1em;
line-height:1.6em;

}

/*label .feedback {
	position: absolute;
	margin-left: 11em;
	left: 215px;
	right: 0;
	font-weight: bold;
	color:#760000;
	padding-left: 1.8em;
	background: url(images/error.png) no-repeat left top;
	width: 369px;
}*/

/* :KLUDGE: Explicitly set the width for IE6- */
* html .feedback{
  width: 10em;
}

input {
  width: 200px;
  border-top: 2px solid #999;
	border-left: 2px solid #999;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
}

input[type="text"], textarea {
	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: 1em;
}

textarea {
	width: 300px;
	height: 100px;
}


input.submit {
border:0;
width:120px;
height:37px;
 background:url(../images/btnSubmit.jpg) top left no-repeat;
}

