/** Forms
 ********************************************************** */
#contactForm {margin-top:5px;border-radius:16px; -moz-border-radius:16px; -webkit-border-radius:16px;  position: relative; border:1px solid #eaeaea; background:url(../img/bg_box1.gif) top repeat-x #fbfbfb; padding:0 20px 20px 25px; }
#contactForm textarea {width:538px; height:234px;background-color:#cccccc; padding:7px 10px;color:#696969; font:14px Arial, Helvetica, sans-serif; margin:0;padding:5px;background-image:url(../img/input_bg.jpg);background-repeat:repeat-x;border-radius:6px; -moz-border-radius:6px; -webkit-border-radius:6px;}
.input_feild {background-color:#cccccc;padding:5px;background-image:url(../img/input_bg.jpg);background-repeat:repeat-x;border-radius:6px; -moz-border-radius:6px; -webkit-border-radius:6px;}

/* Check
----------*/
.form .input-box {
	margin-bottom: 15px;
	position: relative;
}
.form .input-box label {
	display: block;
	font-size: 12px;
	margin-bottom: 2px;
	color: #333;
}
.form .input-box.invalid label {
	color: red;
	font-weight: bold;
}
.form .input-box.check label {
	display: inline;
}
.form .input-box input[type=text], .form .input-box textarea {
	width: 350px;
	padding: 5px 5px;
	font-size: 16px;
	background-color: #fff;
	border: none;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-moz-box-shadow: 0 0 5px rgba( 0, 0, 0, .2 );
	-webkit-box-shadow: 0 0 5px rgba( 0, 0, 0, .2 );
	box-shadow: 0 0 5px rgba( 0, 0, 0, .2 );
}
.form .input-box.invalid input[type=text], .form .input-box.invalid textarea {
	-moz-box-shadow: 0 0 5px rgba( 0, 0, 0, .2 );
	-webkit-box-shadow: 0 0 5px rgba( 0, 0, 0, .2 );
	box-shadow: 0 0 5px rgba( 0, 0, 0, .2 );
}
.form .input-box select {
	width: 360px;
	padding: 5px 5px;
	font-size: 16px;
	background-color: #fff;
	border: none;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-moz-box-shadow: 0 0 5px rgba( 0, 0, 0, .2 );
	-webkit-box-shadow: 0 0 5px rgba( 0, 0, 0, .2 );
	box-shadow: 0 0 5px rgba( 0, 0, 0, .2 );
}
.form .input-box .label {
	position: absolute;
	top: 8px;
	-moz-top: 6px;
	left: 8px;
	color: #ccc;
}
.mozilla .form .input-box .label {
	top: 6px;
}
.form .input-box .check {
	display: none;
	width: 28px;
	height: 24px;
	margin-top: 0px;
	float: right;
}
.form .input-box.invalid .check {
	display: block;
	background-image: url(../img/invalid.png);
	background-repeat: no-repeat;
}
.form .input-box.valid .check {
	display: block;
	background-image: url(../img/valid.png);
	background-repeat: no-repeat;
}
.form .input-box.check .check {
	margin-top: 0px;
}
.form .input-box .error {
	display: none;
	font-size: 11px;
	font-style: italic;
	color: #444;
	margin-top: 2px;
}
.form .input-box.invalid .error {
	display: block;
}
.form .input-box input[type=submit] {
	padding: 5px 10px;
	font-size: 16px;
	background-color: #fff;
	border: none;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-moz-box-shadow: 0 0 5px rgba( 0, 0, 0, .2 );
	-webkit-box-shadow: 0 0 5px rgba( 0, 0, 0, .2 );
	box-shadow: 0 0 5px rgba( 0, 0, 0, .2 );
}
.form .input-box input[type=submit]:hover {
	-moz-box-shadow: 0 0 5px rgba( 0, 0, 0, .4 );
	-webkit-box-shadow: 0 0 5px rgba( 0, 0, 0, .4 );
	box-shadow: 0 0 5px rgba( 0, 0, 0, .4 );
	cursor: pointer;
}