@charset "utf-8";
form.contform label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 200px; 
	padding: 0; 
	margin: 5px  0  0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}
form.contform {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font-size:100%;
  margin: 0;
  padding: 0;
  min-width: 450px;
  max-width: 600px;
  width: 600px; 
  padding-left:45px;
  padding-bottom:20px;
  font-size:.85em;
  line-height:1;
}
.question { 	
	font-weight:bold;
	line-height:1.5em;
	padding: 0; 
	margin: 5px  0 10px 5px; /* set top margin same as form input - textarea etc. elements */
	text-align: left; 
}
/* end of survey */
form fieldset {
  / * clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border: #b58f51 1px solid;
  border-right-color: #340c05;
   border-bottom-color: #340c05;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0;
}
form fieldset legend {
	font-size:1.1em; /* bump up legend font size, not too large or it'll overwrite border on left */
                       /* be careful with padding, it'll shift the nice offset on top of border  */
	color:#a4b630;
	font-weight:bold;
}
form fieldset label {
	font-size:90%;
}

form br {
	clear:left;
}
form.contform input, form.contform textarea, form.contform select{
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}
textarea { overflow: auto; }

form small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

form .required{font-weight:bold;} /* uses class instead of div, more efficient */
#caplabel {
	width:100%;
	text-align:center;
}
#box {
	text-align:center;
	width:100%;
}
#cap {
	width:33em;
	text-align:center;
}
#capbox, #submit {
	text-align:center;
}
.captcha_error_message {
	color:red;
}
textarea:focus, input:focus, checkbox:focus {
	border: 2px solid #900;
}
form .checkbox {
	font-size:.85em;
}