/* CSS Document */



.clear {
  clear: both;
}

form {
  font-size: .9em;
	width: 95%;
	margin-left: 30px;
}


/* fieldset styling */
fieldset {
	width: 85%;
	margin: 1em 0; /*  space out the fieldsets a little*/
	padding: 1em .5em 1em .5em ;
	border : 1px solid #ccc;
	background-color:#F0F0F0;
}

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

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

#accept p {
font-size: .8em;
font-weight: bold;
	width: 80%;
	text-align: left;
	}

/* style for  labels */
label {
	float: left;
	width: 10em;
	text-align: right;
	padding-right: .5em;
}

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

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

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

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

input {
  width: 65%;
}

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: 65%;
	height: 100px;
}

#buttonSubmit {
 margin-left: 20px;
width: 6em;
 margin-top: 4px;
}
#buttonReset {
 margin-left: 10px;
 width: 6em;
 margin-top: 4px;
}

/*#favoriteColor p {
	margin: 0.3em 0;
}*/


-->