/*contact us page------------------------
-----------------------------------------*/
form {
	margin:  25px 0;
	width: 100%;
}

fieldset {
	float: left;  /*ensures it wraps its children*/
	clear:both;  /*ensures it stays below any floated elements*/
	width: 100%;  
	margin: 0 0 1.5em 0; 
	padding: 2em 0 1em 0; /*no padding on sides*/
	border:  2px solid #dcd4d2; /*pale neutral from brown family*/
	border-width: 2px 0 1px;
}
	
legend {
	color: #73524d; /*brown family*/
	font-size: 130%;
	font-weight: bold;
	background: #fff;   
	padding: 0 0.8em 0 0;
}	

fieldset ol {
	padding: 1em 0 0 0;
}

fieldset li {  /*if label text wraps, make sure it is all contained by li*/
	float: left;  
	clear: left;  
	width: 100%;  
	padding-bottom: 1em;
	font-size: 100%;
}

label	{
	width: 8em;
	float: left;
	/*text-align: right;*/
	font-size: 110%;
	font-weight: bold;
	line-height: 1.7;
}

#staffonly label {
	width: 11em;
}		

/*required star*/
span.req {
	color: #aa1407;
	font-weight: bold;
	font-size: 125%;
}

p span.req {
	font-size: 135%;
}

input, select, textarea {
	font-family: Verdana, Arial, sans-serif;
}
	
input, textarea {
	width: 17.5em;
	padding: 5px;
	font-size: 130%;
	color: #73524d;
	border: 1px solid #dcd4d2;
}

textarea {
	width: 19.5em;
	height: 8em;
}
					
form p {
	margin-left:  8.3em;
	font-size: 110%;
}

.check { 
	margin: 1em 0;
	padding: 0;
}		
						
.check input {
	border: none;
	width: auto;
	background-color: transparent;
	margin-left: 9em;
	padding: 0;
}	

.check label {
	float: none;
	width: auto;
	text-align: right;
	margin: 0;
}				

/*jquery validate*/
.error {
	color: #aa1407;
	font: 100% Verdana, Arial, sans-serif;
	width: auto;
	padding-left: 0.4em;
}

input.error, textarea.error { 
	width: 17.5em;
	border: 1px solid #aa1407; 
	text-align: left;
	padding: 5px;
	font-size: 130%;
	}
	
textarea.error { 
	width: 19.5em;
}	

span.counter {
	display: block;
	margin-left: 8.5em;
	font-size: 110%;
}

fieldset.submit {  
	float: none;  
	width: auto;  
	border-width: 0 0 2px 0;  
	margin-top: 0;
	margin-bottom: 0;
	padding: 0 0 1.5em 9em;
	background-color: transparent;
}

body#staffonly fieldset.submit { 
	padding-left: 13em;
}

.submit input {
	width: auto;
	padding:  3px 6px;
	font-size: 120%;
	font-weight:  bold;
	background: #b6a85a; /*greenish*/
	color:  #fff;
	/*border:  2px outset #dcd4d2;*/
	border: none;
	cursor: pointer;
	border-radius: 5px;	
	-moz-border-radius: 5px;	
	-webkit-border-radius: 5px;
	-moz-box-shadow:2px 2px 2px #666;
	-webkit-box-shadow:2px 2px 2px #666;
	box-shadow:2px 2px 2px #666;
	text-shadow: 1px 1px 3px #000;
}

.submit input:hover {
	background: #94944c;
}