/*
Contact Form by html-form-guide.com
You can customize all the aspects of the form in this style sheet
All the style elements use form id selector(notice the #contactus). So, including this
stylesheet does not affect the other elements at all!
*/

#contactus fieldset {
	width:60px;
	height:20px;
	padding:0px;
	border:0px solid #cccccc;
}
#contactus label {
	margin:0 0 6px;
	display:block;
}
#contactus input[type="text"],textarea {
	padding: 10px;
	margin: 0 0 20px 0;
	overflow:hidden;
	font-family: 'Ariel', sans-serif;
	color: #000000;
	font-size: 12px;
	border:none;
	background-color:#f1f1f1;
	-webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out;
}
#contactus input[type="text"] {
	width:320px;  
}
#contactus #scaptcha {
	width:60px;
	height:18px;
}
#contactus textarea {
	height:140px;
	width:600px;
}
#contactus input[type="text"]:focus,textarea:focus {
	outline: none;
	background-color:#dddddd;
	-webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out;
}
#contactus .container {
	margin-top:0px;
	margin-bottom: 0px;
	margin-left:0px;
	margin-right:0px;   
}
#contactus .error {
	font-family: 'PT Sans', sans-serif;
	font-size: 13px;
	color: #c85849;
}
#contactus fieldset#antispam {
	padding:0px;
	border-top:0px solid #cccccc;
	border-left:0;
	border-right:0;
	border-bottom:0;
	width:350px;
}
#contactus fieldset#antispam legend {
	font-family: 'PT Sans', sans-serif;
	font-size: 13px;
	color:#555555;   
}
/* spam_trap: This input is hidden. This is here to trick the spam bots*/
#contactus .spmhidip {
	display:none;
	width:10px;
	height:3px;
}
#fg_crdiv {
	font-size: 0.3em;
	opacity: .2;
	-moz-opacity: .2;
	filter: alpha(opacity=20);   
}
#fg_crdiv p {
    display:none;
}
/*-----------Buttons-----------*/
.button {
	white-space:nowrap;
	display: inline-block;
	text-decoration: none;
	font-weight: normal;
	line-height: 1;
	position: relative;
	cursor: pointer;
	font-style:normal;
	letter-spacing:normal;
	margin-top: 5px;
}
.small.button {
	font-size: 13px;
	font-family: 'PT Sans', sans-serif;
	padding:5px 10px 6px 10px;
}
.medium.button {
	font-size: 17px;
	font-family: 'Yanone Kaffeesatz', sans-serif;	
	padding:5px 14px 6px 14px;	
}
.large.button {
	font-size: 20px;
	font-family: 'Yanone Kaffeesatz', sans-serif;
	padding:8px 18px 10px 18px;
}
.highlight.button{
	color: #ffffff;
	border:none;
	background-color:#4b4b4b;
	-webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out;	
}
.highlight.button:hover{
	color:#111111;
	background-color:#c1c1c1;
	-webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out;
}