form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
	
}

form input, form textarea {
	/* 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 */
}

form input#reset {
	margin-left:20px;
}

textarea { overflow: auto; }

/* form small is for help text to the side */
form small {
	display: block;
	font-size: 88%;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 5px;
	margin-left: 160px;
	padding-top: 1px;
	padding-right: 3px;
	padding-bottom: 1px;
	padding-left: 3px;
}

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

/* CSS for the contact form */

#contact {
	margin-bottom: 20px;
	min-width: 250px;
	max-width: 400px;
	width: 275px;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	padding: 0;
	float: left;
	margin-top: 0px;
}

form fieldset.cfieldset {
	border-color: #ccc;
	border-width: 1px;
	border-style: solid;

  / * clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
;
	background-image: url(formback.gif);
	background-repeat: repeat-x;
	background-position: bottom;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}

form fieldset legend.clegend {
	font-size:1.2em; /* bump up legend font size, not too large or it'll overwrite border on left */
	font-weight: bold;
	color: #666666;
                       /* be careful with padding, it'll shift the nice offset on top of border  */
}

form label.clabel {
	display: block;  /* block float the labels to left column, set a width */
	float: left;
	width: 60px;
	padding: 0;
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right;
}

