@charset "utf-8";
	
	form {
	/* [disabled]border: 1px solid #ddd; */
	width: 580px;
	/* [disabled]background: #fff; */
	/* -- CSS3 - define rounded corners for the form -- */	
		/* [disabled]-webkit-border-radius: 10px; */
	/* [disabled]-moz-border-radius: 5px; */
	/* [disabled]border-radius: 10px; */
	/* -- CSS3 - create a background graident -- */
		/* [disabled]background: -webkit-gradient(linear, 0% 0%, 0% 40%, from(#EEE), to(#FFFFFF)); */
	/* [disabled]background: -moz-linear-gradient(0% 40% 90deg,#FFF, #EEE); */
	/* -- CSS3 - add a drop shadow -- */
		/* [disabled]-webkit-box-shadow:0px 0 20px #ccc; */
	/* [disabled]-moz-box-shadow:0px 0 20px #ccc; */
	/* [disabled]box-shadow:0px 0 20px #ccc; */
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 20px;
	float: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	}	
	label {
	font-size: 16px;
	color: #fff;
	}
	
	fieldset { border: none; }
	
	#user-details {
	float: left;
	width: 200px;
	overflow: hidden;
	}
	
	#user-message {
	float: right;
	width: 225px;
	padding-right: 20px;
	overflow: hidden;
	}
input  {
	padding: 8px;
	margin: 4px 0 20px 0;
	background: #fff;
	width: 220px;
	font-size: 14px;
	color: #555;
	border: 1px #ddd solid;
	/* -- CSS3 Shadow - create a shadow around each input element -- */ 
		/* [disabled]-webkit-box-shadow: 0px 0px 4px #aaa; */
	/* [disabled]-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) -- */		
		/* [disabled]-webkit-transition: background 0.3s linear; */
	/* [disabled]-moz-border-radius: 10px; */
	/* [disabled]height: 30px; */
	}
textarea {
	padding: 8px;
	background: #fff;
	width: 250px;
	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;
	/* [disabled]-moz-border-radius: 10px; */
	margin-top: 4px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0;
	height: 120px;
}
	
	input:hover, textarea:hover {
	background: #FFFFCC;

	}
		
	input.submit {
	width: 120px;
	/* [disabled]color: #eee; */
	/* [disabled]text-transform: uppercase; */
	margin-top: 0px;
	/* [disabled]background-color: #18a5cc; */
	border: none;
	/* -- CSS3 Transition - define which property to animate (i.e. the shadow)  -- */
		/* [disabled]-webkit-transition: -webkit-box-shadow 0.3s linear; */
	/* -- CSS3 - Rounded Corners -- */
		/* [disabled]-moz-border-radius: 5px; */
	/* [disabled]-webkit-border-radius: 4px; */
	/* [disabled]border-radius: 4px; */
	/* -- CSS3 Shadow - create a shadow around each input element -- */ 
		/* [disabled]background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#18a5cc), to(#0a85a8)); */
	/* [disabled]background: -moz-linear-gradient(25% 75% 90deg,#0a85a8, #18a5cc); */
	} 
	
	input.submit:hover {
	-webkit-box-shadow: 0px 0px 20px #555;
	-moz-box-shadow: 0px 0px 20px #aaa;
	box-shadow: 0px 0px 20px #555;
	cursor:  pointer;
	} 		
