﻿form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 45%; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right;
}

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 abr {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}
