﻿/* Form Styling */
.clear {
  clear: both;
}

#main-content form {
  font-size: 1.2em;
}


/* fieldset styling */
#main-content fieldset {
	margin: 1em 0; /*  space out the fieldsets a little*/
	padding: 1em;
	border : 1px solid #ccc;
	width: 550px;
}

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

#main-content form p {
  	position: relative;
	width: 100%;
	font-size: 0.85em;
}

/* style for  labels */
#main-content label {
	float: left;
	width: 10em;
	margin-bottom: 3px;
}

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

#main-content input {
  width: 200px;
}

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

#main-content input.checkbox, input.submit {
  width: auto;
}

#main-content input.checkbox {
	width: 25px;
}

#main-content .checkbox-wording {
	float: left;
	width: 450px;
	clear: both;
	margin-right: 20px;
}

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

#main-content input.radio {
    float: left;
	margin-right: 1em;
}

#main-content textarea {
	width: 300px;
	height: 100px;
}