/* CSS Document */
form * {margin:0;padding:0;} /* Standard margin and padding reset, normally done on the body */
fieldset {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-top: 5px;
}
fieldset div {
	overflow:hidden; /* Contain the floating elements */
	display:inline-block; /* Give layout in ie to contain float */
	padding: 2px;
}
fieldset div {display:block;} /* Reset element back to block leaving layout in ie */


label {
	float:left; /* Take out of flow so the input starts at the same height */
	width:5em; /* Set a width so the inputs line up */
}
