/**************************
 CSS Rules Common to Forms
***************************/


fieldset
{
	border: none;;
	margin: 10px;
}

legend
{
	display: none;
	font-weight: bold;
	color: #999;
}

label
{
	float: left;
	text-align: right;
	width: 100px;
	margin-right: 10px;
}

input
{
	border: 1px solid #ccc;	
	margin-bottom: 10px;
}

a.cancel
{
	float: right;
	border: 1px solid #ccc;	
	margin: 10px 0px;	
}

a.cancel img
{
	display: block;	
}

input.submit
{
	margin-left: 110px;
}

form
{
	margin: 0px;
	padding: 0px;	
}

#news-form textarea
{
	margin-left: 65px;
	margin-top: 10px;
}

#news-form .submit
{
	margin-top: 10px;
	margin-left: 70px;	
}

#news-form label
{
	width: 60px;
	padding-right: 10px;	
}

#contact-form input,
#contact-form textarea
{
	display: block;
	margin-bottom: 8px;
	border-left: 1px solid #bfbab1;
	border-bottom: 	1px solid #bfbab1;
	border-top: none;
	border-right: none;
	color: #700e2c;
    font: normal 13px 'Arial', 'sans-serif';
    line-height: 20px;
    letter-spacing: 0.01em;
}

#contact-form div input
{
	display: none;
	border: none;
}

#contact-form table
{
	width: 332px;	
}

#contact-form td
{
	padding: 0px;	
}

#fullname
{
	width: 243px;
	padding: 4px 4px 4px 85px;
	background: url(/images/layout/fullname.png) no-repeat;
}

#company
{
	width: 243px;
	padding: 4px 4px 4px 85px;
	background: url(/images/layout/company.png) no-repeat;
}

#country
{
	width: 87px;
	padding: 4px 4px 4px 75px;
	background: url(/images/layout/country.png) no-repeat;
}

#phone
{
	width: 117px;
	padding: 4px 4px 4px 35px;
	background: url(/images/layout/tel.png) no-repeat;
	margin-left: 10px;
}

#query
{
	width: 320px;
	padding: 30px 4px 4px 7px;
	height: 76px;
	background: url(/images/layout/enquiry.png) no-repeat;	
}

#send
{
	position: absolute;
	top: 554px;
	margin-left: 350px;	
}

/*****************
 Custom validation
******************/

/**
Optional message to show on error.
The element referred to by this optional ID will have its display rule changed
from 'none' to 'block' by the form-validation system on the event of a
validation failure after the user presses the submit button.
*/
#form-validation-message
{
	background: pink;
	padding: 5px;
	margin: 10px 0px 10px 0px;
	display: none;
}

/**
These classes are set manually in the form's HTML.
They indicate which fields are required, and additionally, if there are any
special requirements of the data to be entered.
*/

input.text.required,
textarea.required
{
	background: #fff;
}

/*
This class is applied to invalid, required text fields.
*/
input.text.form-validation-invalid,
textarea.form-validation-invalid
{
	background: pink;
}

/*************
 Custom styles
**************/

#contact-form
{
	
}
