@charset "utf-8";
#contact-form{
	color:#666;
	margin-left:50px;
}

#name,#email,#subject{
	color:#666;
	font-size:1.2em;
	width:50%;
	height:24px;
	margin-bottom:10px;
	padding-left:28px; 
	background-repeat:no-repeat;
	background-position:3px 1px;
	border-radius:5px;
}

#name{
	background-image:url(images/user_ico.png);
}

#email{
	background-image:url(images/mail_ico.png);
}

input[type='submit']{
	width:20%;
	height:30px;
	font-size:1.2em;
}

textarea{
	color:#666;	
	margin-bottom:10px;
	width:60%;
	height:100px;
	border-radius:5px;
}

form span{
	color:#fff;
	background:#C00;
	padding:1px 6px; 
	margin-left:10px;
	font-size:1.2em;
	border-radius:4px;
	opacity:.7;
	font-style:italic;
	visibility:hidden;
}

.displayed{
	visibility:visible;
}

.invalid{
	border-style:solid;
	border-width:2px;
	border-color:#C00;
}

.error{
	margin-left:20px;
	margin-top:0px;
	margin-bottom:0px;
	padding:0px;
	font-size:1.2em;
	font-style:italic;
	color:#C00;	
}

.success{
	margin-left:20px;
	margin-top:0px;
	margin-bottom:0px;
	padding:0px;
	font-size:1.2em;
	font-style:italic;
	color:#39C;
}