/* CSS Document */
body {
	background-color:white;
	color:rgb(102,102,102);
	font-family:Verdana,"Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size:10px}
a{
	outline:none}
.master{
	margin:0 auto}
form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
	padding: 0;
	}
form fieldset {
	/* clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
	border:none;
	padding: 0;        /* padding in fieldset support spotty in IE */
	margin: 0;}

form fieldset legend {
	font-size:12px;
	color:rgb(102,102,102);
	/* bump up legend font size, not too large or it'll overwrite border on left */
	/* be careful with padding, it'll shift the nice offset on top of border  */}

form label { 
	padding: 0; 
	font-size:12px;}
form input, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	margin:5px 0 15px 0; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
	padding:5px;}
form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}
textarea { 
	overflow: auto;} 
form .required{
	font-weight:bold;} /* uses class instead of div, more efficient */
form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}
form p {margin:2px}
.erreur{
	background-color:#FF0000;padding:15px; color:white;font-size:12px;font-family:Verdana, Arial, Helvetica, sans-serif}
-->
textarea {width:400px;height:100px;padding:5px;}
