@charset "utf-8";
/* CSS Document */

.contact-form {
	font-size: 13px;
	font-weight: 400;
	color: #717171;
	background-color: #FFF;
	width:100%;
	/*margin-top: 20px;*/
	margin-bottom: 20px;	
}

.contact-form label {
	text-align: right;	
	display: block;
	width:28%;
	padding-right:1%;
	line-height:20px;
	float:left;
}



.contact-form input[type=text],.contact-form input[type=email],.contact-form select,.contact-form textarea {
	font-family: 'Open Sans', Geneva, sans-serif;;
	margin: 0px;
	padding: 3px;
	width: 50%;
	margin-right:19%;
	float:left;
	border: 1px solid #CCC;	
}
	
.contact-form input[type=button] {
	font-size: 14px;
	font-weight: 400;
	color: #FFF;
	background-color: #9B99EC;
	display: inline;
	padding: 5px 20px;
	margin-top: 0px;
	margin-right: 25px;
	margin-bottom: 15px;
	margin-left: 0px;
	line-height: 22px;
	text-decoration: none;
	text-shadow: 1px 1px 2px #666;
	box-shadow: inset 0px -15px 30px #7574D9;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
	border: 1px solid #7574D9;
	float:right;
	margin-right:20%;
}

.contact-form input[type=button]:hover {
	background-color: #7574D9;
	box-shadow: inset 0px -15px 30px #7574D9;
}

.contact-form .msg_success {
	background-color: #F5FFDF;
	display: block;
	padding: 15px;
	margin-top: 10px;
	margin-bottom: 10px;
	border: 1px solid #97D700;
	color: #97D700;
}
.contact-form .msg_error {
	background-color: #FFF0F0;
	display: block;
	padding: 15px;
	margin-top: 10px;
	margin-bottom: 10px;
	border: 1px solid #FF9797;
	color: #CC0000;
}

.divider-form {
	width:100%;
	padding-top:5px;
	padding-bottom:5px;
	clear:both;
}

.red_field {
	background-color: #FFDFDF;
	color: red;
	border: 1px solid #FBB !important;
}

