/*********************** FORMULAIRES ************************/
/************************************************************/

form {
	text-align:left;
	font-size:11px;
	font-weight:bold;
	margin:0;
}

label, input, textarea {
	display:block;
	margin:0 auto;
	padding:0;
	border:none;
	background:none;
	font-family:Arial, sans-serif;
	font-size:11px;
}

input.field, textarea {
	color:#666;	
	border:0px solid #333;
}
input.field:focus, textarea:focus { color:#333; }

/************* contactform *************/

#contactform {
	width:361px;
	overflow:hidden;
}

div.row {
	overflow:hidden;
	clear:both;
}
div.row label {
	height:28px;
	text-indent:-1000px;
}

div#emailrow {
	width:100%;
	height:53px;
	background:transparent url(images/form-email-row.png) no-repeat;
}
div#emailrow input {
	width:331px;
	height:16px;
}

div#messagerow {
	margin-top:12px;
	width:100%;
	height:225px;
	background:transparent url(images/form-msg-row.png) no-repeat;
}
div#messagerow textarea {
	width:331px;
	height:180px;	
}

/******* buttons *******/

div#buttonsrow {
	margin:12px 10px 0 auto;
	width:60%;
}
form a.button {
	display:block;
	width:84px; height:27px;
}
form a.button input {
	border:0;
	padding:0;
	margin:0;
	cursor:pointer;
	width:100%;
	height:27px;
	background:transparent url('images/form-buttons.png') no-repeat;
}

a#reset 	{ float:left; }
a#submit	{ float:right;}

a#reset input 	{ background-position:0 0;}
a#submit input	{ background-position:-100px 0;}

a#reset input:hover, a#reset:hover input, 
a#reset input:focus	{ background-position:0 -30px;}

a#submit input:hover, a#submit:hover input, 
a#submit input:focus	{ background-position:-100px -30px;}

/************* erreurs *************/

div#error-msg, div#valid-msg {
	font-size:11px;
	font-weight:bold;
	margin:0 0 16px;
	background:transparent url(images/form-pictos.png) no-repeat;
	padding-left:24px;
	line-height:20px;
}
div#error-msg {
	color:#990000;
	background-position:0 0;
}
div#valid-msg {
	color:#003300;
	background-position:0 -95px;
}
div.error input, div.error textarea {
}


