/* CSS Document */

a.button, a.button:link, a.button:visited{
	display: block;
	text-align: center;
	padding: 5px 10px;
	background: #c00;
	border: 2px solid #c99;
	border-right: 3px solid #900;
	border-bottom: 3px solid #900;	
	font-weight: bold;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
}
a.button:hover{
	background: #E03333;
	border: 2px solid #900;
	border-right: 3px solid #c99;
	border-bottom: 3px solid #c99;
}


/* Form Stuff */
label{
	font-weight: bold;
	float: left;
	clear: left;
	width: 150px;
	text-align: right;
	margin-right: 5px;
	padding-top: 3px;
}
label.required{
	background: url(../images/asterisk.gif) 100% 0% no-repeat;
	padding-right: 7px;
	width: 143px;
}
input{
	margin-bottom: 3px;
}
label.inline, p label{
	float: none;
	clear: none;
	width: auto;
	margin: 0;
	text-align: left;
	display: inline;
}

select{
	margin: 0.5em 0;
}
textarea, p textarea{
	width: 300px;
	height: 150px;
	margin-bottom: 1.5em;
}
form{
	border: 2px solid #ddd;
	background: #f6f6f6;
	padding: 0.25em 1em;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 80%; 
}
label.required{
	background: url(../images/asterisk.gif) 100% 0% no-repeat;
	padding-right: 10px;
	width: 140px;
}
.error{
	color: #c00;
	font-weight: bold;
}
