
	label {	
		font-size: 16px;
		color: #666; 
	}
	
	#Emain { 
		font-family: 'Open Sans', 'arial', sans-serif;
text-align: left;
		float: left;
		border: 1px solid #8D9A98; 
		padding: 30px 30px 20px 40px; 
		margin: 30px 0 0 80px;
		width: 715px;
		background: #2D3433;
		/* -- CSS3 - define rounded corners for the form -- */	
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px; 		
		
		/* -- CSS3 - create a background gradient -- */
		background: -webkit-gradient(linear, 0% 0%, 0% 40%, from(#232726), to(#2D3433)); 
		background: -moz-linear-gradient(0% 40% 90deg,#FFF, #EEE); 
		
		/* -- CSS3 - add a drop shadow -- 
		-webkit-box-shadow:0px 0 20px #ccc;
		-moz-box-shadow:0px 0 20px #ccc; 
		box-shadow:0px 0 20px #ccc;*/		 		
	}	
	
	form h1 { 
	color: #232726; 
	margin: 0 0 8px; 
	font-size: 28px; 
	font-weight: 800; 
	font-family: 'Open Sans','Arial Narrow',sans-serif;
	font-style: normal;
	text-transform:uppercase;
	-webkit-text-stroke: 1px #666; /* stroke color and weight */
	}
	
	fieldset { border: none; }
	
	#user-details { 
		float: left;
		width: 230px;
	}
	
	#user-message { 
		float: right;
		width: 405px;

	}
	
	input, textarea { 		
		padding: 8px; 
		margin: 4px 0 20px 0; 
		background: #232726; 
		width: 220px; 
		font-size: 14px; 
		color: #555; 
		border: 1px #ddd solid;
		
		/* -- CSS3 Shadow - create a shadow around each input element -- */ 
		-webkit-box-shadow: 0px 0px 4px #aaa;
		-moz-box-shadow: 0px 0px 4px #aaa; 
		box-shadow: 0px 0px 4px #aaa;
		
		/* -- CSS3 Transition - define what the transition will be applied to (i.e. the background) -- */		
		-webkit-transition: background 0.3s linear;							
	}
	
	textarea {		
		width: 300px; 
		height: 220px;
		padding: 10px 0 0 0;


	}
	
	input:hover, textarea:hover { 
		background: #313333; 
	}
		

/* --  The below is for 'thank you' pop-up after mail is submitted -- */
	#blanket {
background-color:#111;
opacity: 0.65;
filter:alpha(opacity=65);
position:absolute;
z-index: 9001;
top:0px;
left:0px;
width:100%;
}
#popUpDiv {
position:absolute;
background-color:#eeeeee;
width:300px;
height:150px;
z-index: 9002;
text-align:center;
}
#closebox{
float:right;
font-size: 14px;
color:CCCDC8;
}
