/* CSS Document */
form * {
	font-family: inherit;
	line-height: inherit;
}
form {
	width: auto;
	margin: 0 16px;
	padding: 0;
	background: #999;
	border: 3px solid #989472;
/*	opacity: 0.9;
	-moz-opacity: 0.9;
	filter: alpha(opacity=90); */
	padding: 5px;
	}

form label, form input {
	background: #CCC;
	border: 1px solid #989472;
	padding: 6px;
	margin: 3px 6px 0 3px;
	}

form label { 
	display: block;  /* block float the labels to left column, set a width */
 /* set top margin same as form input - textarea etc. elements */
	width: 100px;
	text-align: right;
	float: left;
	clear: left;
	margin: 3px 3px 0 6px;
	background: none;
	border: none;
}


form input {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width: 360px;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */

	}

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


.inline input {
	margin-top: 8px;
	display: inline;
	background: none;
	border: none;
	width: auto;
	}
.inline label {
	float: none;
	width: auto;
	clear: none;
	background: none;
	border: none;
	display: inline;
	}
form ul {
	list-style: none;
	padding: 0;
	margin: auto;
	}
form ul ul {
	padding: 0;
	margin: 0;
	}
form ul li input, form ul li label {
	float: left;
	clear: none;
	background: none;
	border: none 0;
	width: auto;
	display: inline;
	}
form li {
	float: left;
	clear: left;
	}
form ul li {
	width: 480px;
	display: block;
	}
form ul li ul li {
	width: 120px;
	float: left;
	clear: none;
	padding: 0;
	margin: 0;
	padding-left: 12px;
	}

form ul label {
	margin: 0px;
	padding: 5px;
	}
#submitBox {
	clear: both;
	width: auto;
	display: block;
	text-align: center;
	}
#submitBox input {
	float: none;
	width: 220px;
	margin: auto;
	margin-top: 8px;
	background-color: #989472;
	border: #F2EAC8 solid 2px;
	color: #FFF;
	}
#submitBox input:hover {
	border-color: #5b3d03;
	color: #5b3d03;
	}
