@charset "UTF-8";
/* CSS Document */

form {
	font-size: 1em;
	width: 100%;
}


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

/* legend styling */
legend {
	display: block;
	padding: 5px;
  font-weight: bold;
}
legend .required {
	font-weight: normal;
	color: #760000;
	font-size: 85%;
}

form p {
	position: relative;
	width: 100%;
}

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

#remember-me label {
  width: 4em;
}

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

/* style error messages */
label .feedback {
  position: absolute;
  margin-left: 11em;
  left: 200px;
  right: 0;
  font-weight: bold;
  color:#760000;
  padding-left: 18px;
  background: url(images/error.png) no-repeat left top;
}

/* :KLUDGE: Explicitly set the width for IE6- */
* html .feedback{
  width: 10em;
}

input[type="text"], textarea {
  border-top: 2px solid #999;
  border-left: 2px solid #999;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  width: 250px;
}

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

/* style form elements on focus */
input:focus, textarea:focus {
  background: #ffc;
}
input.radio , input.checkbox {
  float: left;
  margin-right: 1em;
}
text {
  width: 250px;
}
textarea {
  width: 250px;
  height: 50px;
}
