/******* CONTAINER *******/
.contact-container {
	margin: -40px auto 0 auto;
	padding: 0;
}
.contact-container p {
	text-align: center;
}
.contact {
	width: 650px;
	margin: auto;
	padding: 15px 40px 0 0;
}
.contact .right {
	float: right;
}
.contact-col1 {
	display: block;
	width: 330px;
	height: auto;
	margin: auto;
	padding: 50px 5px 0 5px;
	float: left;
}
.contact-col2 {
	display: block;
	width: 290px;
	height: auto;
	padding: 65px 5px 0 5px;
	text-align: right;
	float: right;
}

/******* /CONTAINER *******/

/******* FORM *******/
#contactForm label{
	color: #808080;
	font-family: 'OpenSansRegular', Verdana, Arial, Helvetica, sans-serif;
	font-weight: 500;
	line-height: 1.4em;
	text-align: left;
}
#contactForm input{
	width: 190px;
	height: 20px;
	margin-top: 15px;
	margin-left: 20px;
	margin-right: 5px;
	padding: 6px;
	color: #FFF;
	font-family: Arial,  Verdana, Helvetica, sans-serif;
	font-size: 17px;
	border-top: 1px solid transparent;
	border-left: 1px solid transparent;
	border-right: 1px solid transparent;
	border-bottom: 1px solid #999;
	background: #000;
}
#contactForm input:focus {
	outline: none;
}
#contactForm input.error{
	background: #F36;
	border-color: #e77776;
}
#contactForm textarea{
	width: 255px;
	height: 140px;
	margin: 0 0 0 10px;
	padding: 10px;
	color: #FFF;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-style: normal;
	font-size: 17px;
	border: 1px solid #999;
	background: #000;
}
#contactForm textarea.error{
	background: #F36;
	border-color: #e77776;
}
#contactForm .textarea-label {
	color: #808080;
	text-align: left;
	padding-left: 10px;
	padding-bottom: 5px;
}
#contactForm textarea:focus {
	outline: none;
}
#contactForm div{
	margin-bottom: 0px;
}
#contactForm div span{
	margin-left: 10px;
	color: #b1b1b1;
	font-size: 11px;
	font-style: italic;
}
#contactForm div span.error{
	color: #e46c6e;
}
#contactForm #send{
	width: 70px;
	height: 40px;
	margin-top: 20px;
	margin-bottom: 20px;
	background: #F36;
	color: #FFF;
	font-size: 16px;
	font-weight: normal;
	border: 0;
	cursor: pointer;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	text-align: center;
	float: right;
}
#contactForm #send:hover{
	background: #FFF;
	color: #F36;
/*	border: 2px solid #F36; */
	-webkit-transition: .1s;
	-moz-transition: .1s;
	-ms-transition: .1s;
	-o-transition: .1s;
	transition: .1s;
}
/******* /FORM *******/

@media screen and (max-width:630px){ /* this rule will come into play when the browser screen is less than 630px */
.contact-container {
	width: 335px;
	margin: -50px auto 0 auto;
}
.contact {
	display: block;
	width: 335px;
	padding: 0 55px 0 5px;
	text-align: right;
}
.contact-col2 {
	padding: 30px 0 0 15px;
	text-align: left;
	float: left;
}
#contactForm input{
	width: 160px;
	height: 15px;
	margin-top: 15px;
	margin-left: 20px;
	margin-right: 36px;
}
#contactForm .textarea-label {
	padding-left: 10px;
}
#contactForm #send{
	margin-top: 10px;
}
}