form.bugwizard input[type=text], #bugwizard input[type=email], #bugwizard input[type=url], #bugwizard select, #bugwizard textarea {
	display: block;
	width: 100%;
	padding: 7px 10px;
	margin: 0;
	border: 1px solid #ccc;
	font-family: "Basis Grotesque Light",sans-serif;
	font-weight: 100;
	line-height: 16px;
	background-color: white;
	color: black;
	font-size: 15px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-sizing: border-box;
	border-radius: 0
}
form.bugwizard select {
	cursor: pointer;
	background-image: url(images/select-arrow-down.png);
	background-repeat: no-repeat;
	background-position: right center;
}
form.bugwizard button {
	border: 0;
	background: #0095d8;
	font-size: 1em;
	font-weight: normal;
	color: #fff;
	padding: .8em 1.4em;
	cursor: pointer
}
form.bugwizard p.required_sample::before {
	content: '*';
	color: red;
	margin-right: 1px;
}
form.bugwizard label.required::after {
	content: '*';
	color: red;
	position: absolute;
	margin-left: 1px;
}
form.bugwizard label.error {
	color: red;
}
form.bugwizard label.error::before {
	content: '> ';
	color: red;
	font-weight: bold;
}