form.siteform fieldset:not(.customform) {
	max-width:80%;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:10px;
	padding:10px;
	line-height:21px;
}
form.siteform fieldset ol,
form.siteform fieldset ul {
	list-style-type:none;
	margin:0px;
	padding:0px;
}
form.siteform fieldset:not(.customform) ul li {
	margin:6px 0px;
}
form.siteform fieldset:last-of-type {
	margin-bottom:0px;
	border:0px;
}
form.siteform fieldset legend {
	font-weight:bold;
}
form.siteform {
	counter-reset:fieldsets;
}
form.siteform label:not(.checkboxlabel) {
	display:block;
	font-weight:bold;
	text-align:left;
}
form.siteform input,
form.siteform textarea {
	background:#fff;
	color:#000;
	border:1px #888 solid;
	border-radius:3px;
	font-family:DejaVu, monospace;
}
form.siteform fieldset.customform input.inline:not([type="checkbox"]),
form.siteform fieldset.customform select.inline {
	display:inline;
	width:auto;
}
form.siteform fieldset.customform input:not([type="checkbox"]),
form.siteform fieldset.customform select {
	display:block;
	width:100%;
}
form.siteform input:not([type="checkbox"]):not(.fullwidth) {
	width:calc(100% - 140px);
	height:19px;
}
form.siteform select {
	width:calc(100% - 140px);
}
form.siteform textarea {
	width:calc(100% - 10px);
	height:100px;
}
form.siteform label:not(.nocolon) span.caption {
	display:inline-block;
	width:120px;
	overflow:hidden;
}
form.siteform label:not(.nocolon) span.caption:after {
	content:":";
}
form.siteform fieldset legend:before {
	content:"Step " counter(fieldsets) ": ";
	counter-increment:fieldsets;
}

form.siteform fieldset .error {
	width:100%;
	margin:0px;
	border-radius:3px;
	background-color:#a33;
	border-color:#900;
}

form.siteform fieldset .required:before {
	color:#900;
	content:"* ";
}
