/* form styles */
#formset input, #formset textarea, #formset select{
	font-family: 'swiss', Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:normal;
	color:#000;
	width:240px;
	background-color:#fff;
	border:1px solid #ccc;
	-moz-border-radius: 5px 5px 5px 5px;
	-khtml-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
}

#formset input:focus, #formset textarea:focus, #formset select:focus{
	width:240px;
	background-color: #efefef;
	border:1px solid #ccc;
	box-shadow:0px 0px 5px #333333;
	-moz-border-radius: 5px 5px 5px 5px;
	-khtml-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
}

#formset textarea, #formset textarea:focus{
	width:340px;
	height:250px;
}

.sendbutton{
	-moz-box-shadow:inset 0px 1px 0px 0px #005aab;
	-webkit-box-shadow:inset 0px 1px 0px 0px #005aab;
	box-shadow:inset 0px 1px 0px 0px #005aab;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
	background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf');
	border:1px solid #dcdcdc;
	display:inline-block;
	color:#777777;
	font-size:24px;
	font-weight:bold;
	padding:9px 24px;
	margin-right:30px;
	text-shadow:1px 1px 0px #ffffff;
	-moz-border-radius:15px; /* Firefox */
	-webkit-border-radius:15px; /* Safari, Chrome */
	-khtml-border-radius:15px; /* Konqueror */
	border-radius:15px; /* CSS3 */
	-moz-box-shadow: 1px 1px 2px #000;
	-webkit-box-shadow: 1px 1px 2px #000;
	box-shadow: 1px 1px 2px #000;
}

.sendbutton:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
	background:-moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed'); 
	background-color:#dfdfdf;
}

.sendbutton:active { 
	position:relative;
	top:1px;
}

label.error {
	display:block;
	color: #900;
	padding-left: 10px;
	font-size:12px;
}