fieldset {
	width: auto;
	margin: 5px 0px 15px 0px;
	padding: 10px;
	border: 1px solid gray;
	
	-moz-border-radius-bottomleft: 6px;
	-moz-border-radius-bottomright: 6px;
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-topright: 6px;
	
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-bottom-right-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
}

legend {
	border-width: 2px 2px 2px 2px;
	border-style: solid;
	border-color: gray;
	padding: 5px;
	margin: 0px 15px 0px 15px;
	font-weight: bold;
	text-transform: uppercase;
	background-color: #F7F7F7;
	
	-moz-border-radius-bottomleft: 6px;
	-moz-border-radius-bottomright: 6px;
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-topright: 6px;
	
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-bottom-right-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
}

label {
	cursor: pointer;
	font-weight: bold;
}

label.required-input:after {
	content: " * ";
}

input[type=text], input[type=password], textarea {
	border: solid #CCCCCC 1px;
	width: 300px;
	font-size: 16px;
	padding: 6px;
	
	-moz-border-radius-bottomleft: 6px;
	-moz-border-radius-bottomright: 6px;
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-topright: 6px;
	
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-bottom-right-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
}

textarea {
	width: 800px;
	height: 300px;
}

input[type=submit], input[type=button] {
	border: 2px solid black;
	padding: 10px;
	font-weight: bold;
}

input[type=text]:focus, input[type=password]:focus, textarea:focus {
	background-color: #FAFAFA;
}

input + span, select + span, textarea + span, form p span {
	padding-left: 10px;
	color: #CBCBCB;
	font-weight: bold;
}

select {
	border: solid #CCCCCC 1px;
	font-size: 14px;
	padding: 4px 15px 4px 4px;
}

.errorInput {
	background-color: #FFC0CB;
	background-image: url('../images/exclamation.png');
	background-repeat: no-repeat;
	background-position: center right;
}

.goodInput {
	background-color: #DFF5DE;
	background-image: url('../images/check.png');
	background-repeat: no-repeat;
	background-position: center right;
}

.error_message {
	background-color: #FFDC7D;
	padding: 10px;
	
	-moz-border-radius-bottomleft: 6px;
	-moz-border-radius-bottomright: 6px;
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-topright: 6px;
	
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-bottom-right-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
}
