/* Pied de page */
#pied{
	width: 100%;
	/*Style des bordures*/
	border : solid 1px #aaaaaa;
	border-radius: 15px;
	/*couleur de fond*/
	background: #8b8b8b; /* for non-css3 browsers */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#a9a9a9', endColorstr='#7a7a7a'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#a9a9a9), to(#7a7a7a)); /* for webkit browsers */
	background: linear-gradient(#a9a9a9,  #7a7a7a); /* for firefox 3.6+ */
	/*Ombre portée*/
	box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
	/*enrichissement du texte*/
 	text-align: center;
}
#pied img{
	height: auto;
	vertical-align: middle;
	padding-bottom: 10px;
	padding-top: 5px;
}
#pied a{
	width: auto;
	padding-left: 5em;
	padding-right: 5em;
	text-decoration:none;
	text-transform: uppercase;
	font-size: 0.71em;
	font-weight: bold;
	color: white;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
 	vertical-align: middle;
 	margin-bottom: 2px;
	border-radius: 1.6em;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}
#pied a:hover{
	background: #d1d1d1; /* for non-css3 browsers */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb', endColorstr='#a1a1a1'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#a1a1a1)); /* for webkit browsers */
	background: linear-gradient(#ebebeb,  #a1a1a1); /* for firefox 3.6+ */
	color: #444;
	/*border-top: solid 1px #f8f8f8;*/
	box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
}