/** Contact us Form **/
/* Form style */
#contact {
	width: 600px;
}
#contact p {
	font-size: 1em;
	font-weight: bold;
}
#contact hr {
	color: inherit;
	height: 0;
	margin: 6px 0 6px 0;
	padding: 0;
	border: 1px solid #d9d9d9;
	border-style: none none solid;
}
#contact label {
	color: #444444;
	display: inline;
	float: left;
	height: 24px;
	line-height: 26px;
	width: 180px;
	font-size: 1.2em;
	font-weight: bold;
}
#contact input, textarea, select {
	width: 280px;
	margin: 0;
	padding: 5px;
	color: #666;
	background: #f5f5f5;
	border: 1px solid #ccc;
	margin: 5px 0;
	font:1.2em;
	-moz-border-radius: 5px;
	-webkit-border-radius:5px;
}
#contact select {
	width: 291px;
}
#contact input:focus, textarea:focus, select:focus {
	border: 1px solid #999;
	background-color: #fff;
	color:#333;
}
#contact input.submit {
	width: 85px;
	cursor: pointer;
	border: 1px solid #222;
	background:#333;
	color:#fff;
	-moz-border-radius: 5px;
	-webkit-border-radius:5px;
}
#contact input.submit:hover {
	background:#444;
}
#contact fieldset {
	padding:20px;
	border:1px solid #666;
	-moz-border-radius: 5px;
	-webkit-border-radius:5px;
}
#contact legend {
	padding:7px 10px;
	font-weight:bold;
	font-size: 14px;
	color:#000;
	border: none;
	-moz-border-radius: 5px;
	-webkit-border-radius:5px;
}
#contact span.required {
	font-size: 13px;
	color: #ff0000;
} /* Select the colour of the * if the field is required. */
/* Style for the error message */

#contact .error_message {
	display: block;
	height: 22px;
	line-height: 22px;
	background: #FBE3E4 url('assets/error.gif') no-repeat 10px center;
	padding: 3px 10px 3px 35px;
	margin: 10px 0;
	color:#8a1f11;
	border: 1px solid #FBC2C4;
	-moz-border-radius: 5px;
	-webkit-border-radius:5px;
}
#contact #contactform label.warning {
	text-align: left;
	width: auto;
	padding: 0;
	margin: 0 0 0 10px;
	float: none;
	clear: none;
	display: inline;
	color: #C93B41;
	font-size: 10px;
	border: none;
	border-top: 1px dotted #CC3366;
}

