.contact-form {
	width: 450px;
	margin: auto;
}

.contact-form label {
	width: 170px;
	display: inline-block;
	line-height: 26px;
	margin: 2px;
	text-align: left;
}

.contact-form input[type=text], .contact-form input[type=email] {
	padding: 4px;
	width: 244px;
}

.contact-form #form > div {
	padding: 10px;
}

.contact-form .btn {
	display: inline-block;
	vertical-align: baseline;
	margin: 0 2px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: 14px/100% Arial, Helvetica, sans-serif;
	padding: 5px;
	border-radius: 2px;
	width: 135px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	border: solid 1px #B7B7B7;
	background: #FFF;
	color: #606060;
	margin-top: 5px;
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EDEDED));
}

.contact-form .btn:hover {
	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
	background: -moz-linear-gradient(top,  #fff,  #dcdcdc);
}

.contact-form .btn:active {
	color: #999;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
	background: -moz-linear-gradient(top,  #ededed,  #fff);
}

.contact-form #emp-btn {
	text-align: right;
	margin-top: 30px;
}

.success {
	background-color: #DFF0D8;
	border-color: #D6E9C6;
	color: #3C763D;
	margin-bottom: 20px;
	padding: 10px;
}