@charset "utf-8";

body
{ 
background-color:#ffffe0;
}

/* mise en forme des boutons retour*/
input[type=button], input[type=submit], input[type=reset], button, .button {
	padding: 3px 10px;
	margin: 2px 4px;
	display: inline-block;
	color: black;
	font-size: 12px;
	cursor: pointer;
	background: #F1F0EC;
	background: linear-gradient(top, #F1F0EC 0%, #9C8E71 100%);
	background: -moz-linear-gradient(top, #F1F0EC 0%, #9C8E71 100%);
	background: -webkit-linear-gradient(top, #F1F0EC 0%, #9C8E71 100%);
	background: -o-linear-gradient(top, #F1F0EC 0%, #9C8E71 100%);
	border: 1px solid #926E50;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.65), inset 1px 1px 0px 0px rgba(0, 0, 0, 0.85);
	-moz-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.65), inset 1px 1px 0px 0px rgba(0, 0, 0, 0.85);
	-webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.65), inset 1px 1px 0px 0px rgba(0, 0, 0, 0.85);
	-o-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.65), inset 1px 1px 0px 0px rgba(0, 0, 0, 0.85);
	text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.50);
}
input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover, button:hover, .button:hover {
	background: linear-gradient(top, #F1F0EC 0%, #D8C392 100%);
	background: -moz-linear-gradient(top, #F1F0EC 0%, #D8C392 100%);
	background: -webkit-linear-gradient(top, #F1F0EC 0%, #D8C392 100%);
	background: -o-linear-gradient(top, #F1F0EC 0%, #D8C392 100%);
}
input[type=button]:active, input[type=submit]:active, input[type=reset]:active, button:active, .button:active{
	opacity:0.8;
}
