section
{
	width: 900px;
	margin: 20px auto;
	border: 2px solid #333;
	background-color: white;
	border-radius: 10px;
	-webkit-box-shadow: 5px 5px 10px #888888; /* Safari */
	box-shadow: 5px 5px 10px #888888;
}

section h1
{
	text-align: center;
	color: red;
	margin: 25px;
}

section form
{
	width: 550px;
	margin: 25px auto;
}

section td
{
	text-align: center;
}

section form input[type=file]
{
	width: 140px;
}

section form input[type=text], section form input[type=password]
{
	width: 200px;
	padding: 5px;
	margin: 10px 0px 5px 18px;
	font-size: 15px;
	color: black;
	background: white;
	opacity: 0.8;
	filter: Alpha(opacity=80); /* IE8 and earlier */
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #717171;
	float: left;
}

section form input[type=text]:focus, section form input[type=password]:focus
 {
	border: 1px solid #ffc73f;
	-webkit-box-shadow: 0px 0px 5px #fc4;
	-moz-box-shadow: 0px 0px 5px #fc4;
	box-shadow: 0px 0px 5px #fc4;
}

section form .bouton
{
	-moz-box-shadow:inset 0px 1px 0px 0px #fff6af;
	-webkit-box-shadow:inset 0px 1px 0px 0px #fff6af;
	box-shadow:inset 0px 1px 0px 0px #fff6af;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffec64), color-stop(1, #ffab23) );
	background:-moz-linear-gradient( center top, #ffec64 5%, #ffab23 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffec64', endColorstr='#ffab23');
	background-color:#ffec64;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #ffaa22;
	display:inline-block;
	color:#333333;
	font-family:arial;
	font-size:15px;
	font-weight:bold;
	padding:6px 24px;
	text-decoration:none;
	text-shadow:1px 1px 0px #ffee66;
	margin:10px 0px 10px 18px;
	cursor:pointer;
}

section form  .bouton:hover 
{
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffab23), color-stop(1, #ffec64) );
	background:-moz-linear-gradient( center top, #ffab23 5%, #ffec64 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffab23', endColorstr='#ffec64');
	background-color:#ffab23;
}

section form  .bouton:active 
{
	position:relative;
	top:1px;
}