@charset "utf-8";

label 
	{
	display: block;
	width: 100%;
	height: 20px;
	margin-top: 5px;
	margin-right: 4px;
	margin-bottom: 0px;
	margin-left: 4px;
	font-size: 10px;
	color: #a5a5a4;
	}
input[type=text]
	{
	border-radius: 2px;
	width: 100%;
	height: 20px;
	font-size: 85%;
	margin-top: 0;
	margin-right: 4px;
	margin-bottom: 0px;
	margin-left: 4px;

	}
input[type=text]:invalid {
	border:1px solid red;
	}
input[type=text]:valid {
	border:1px solid lightgreen;
	background:#FFF url(img/valid10px.png) 96% top no-repeat;
}
input:hover[type=text] {
	background-color: #FDF3AC;
	transition-property: background-color;
	transition-duration: 0.5s;
}
.obligatoire {
	background-color: #FFFfff;
	background-image: url(img/asterisk10px.png);
	background-repeat: no-repeat;
	background-position: right top;
	}
textarea
	{
	border: 1px solid #393939;
	border-radius: 2px;
	width: 100%;
	height: 100px;
	margin-top: 0;
	margin-right: 4px;
	margin-bottom: 0px;
	margin-left: 4px;
	background-color: #FFFfff;
	background-image: url(img/asterisk10px.png);
	background-repeat: no-repeat;
	background-position: right top;
	}
textarea:hover {
	background-color:lemonchiffon;
	transition-property: background-color;
	transition-duration: 0.5s;
}
textarea:invalid {
	border:1px solid red;
}
textarea:valid {
	border:1px solid lightgreen;
	background: #fff url(img/valid10px.png) 96% top no-repeat;
}
input[type=submit] 
	{
	border-radius: 10px;
	height: 30px;
	width: 100px;
	color: #393939;
	font-weight: bold;
	font-size: 130%;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 100px;
	}
input:hover[type=submit] 
	{
	color: #ff0000;
	border: 2px solid red;
	font-weight: bold;
	height: 30px;
	width: 100px;
	transition-property: width,height,margin,color,border;
	transition-duration: 0.5s;
	cursor: pointer;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 100px;
	}
#infos {
	font-size: 70%;
	text-align: left;
}
.asterix
{
	color:red;
}
.MessageErreur {
	color:#ff0000;
}
.MessageOk {
	color:green;
}
.fin {
	text-align:center;
}
.bouton a {
	border:1px solid #393939;
	border-radius:5px;
	background-color:#fff;
	text-decoration:none;
	margin:20px 0 0 52px;
	padding:2px;
	color:#393939;
	font-size:125%;
}
