h1 {
	color: #FFF;
	font-size: 24px;
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}
h2 {
	color: #00adc6;
	font-size: 24px;
	float: left;
	margin-bottom: 20px;
}
* {
	margin: 0px;
	padding: 0px;
	list-style: none;
	border: none;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	background-image: none;
	color: #333;
	background-color: #333;
	padding: 40px;
}

/* FORM */

.FormBlock #order {
	clear: both;
	width: 600px;
}
.FormBlock #order #id_name, .FormBlock #order #id_company, .FormBlock #order #id_email, .FormBlock #order #id_phone {
	width: 580px;
	border: none;
	margin-bottom: 10px;
	line-height: 20px;
	height: 20px;
	padding: 10px;
	font-weight: bold;
	font-size: 14px;
}
.FormBlock #order #id_text {
	padding: 10px;
	width: 580px;
	height: 100px;
	overflow: auto;
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 10px;
	resize: none;
}
.FormBlock #order input, .FormBlock #order textarea, .FormBlock #order #id_captcha_1 {
	border: none;
	outline: 0;
	display: block;
	padding: 0px;
	margin: 0px;
	background-color: #EEE;
	color: #333;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.FormBlock #order #id_name:focus, .FormBlock #order #id_company:focus, .FormBlock #order #id_email:focus, .FormBlock #order #id_phone:focus, .FormBlock #order #id_text:focus, .FormBlock #order #id_captcha_1:focus {
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	background-color: #FFF;
	color: #000;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.FormBlock #order #id_captcha_1 {
	line-height: 60px;
	text-align: center;
	float: left;
	height: 60px;
	width: 120px;
	margin-right: 10px;
	font-size: 12px;
	color: #333;
	font-weight: bold;
}
.FormBlock #order img {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.FormBlock #order #sent {
	float: right;
	line-height: 60px;
	text-align: center;
	height: 60px;
	width: 280px;
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
	background-color: #11AEC5;
	cursor: pointer;
	-moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.3);
	box-shadow: 0px 1px 3px rgba(0,0,0,0.3);
}
.FormBlock #order #sent:hover {
	background-color: #ff6633;
