* { margin: 0; padding: 0; }

body {	
	background: black;
	font-family: Times New Roman, serif;
	font-size: 13px;
	color: #f7b93a;
	text-align: center;	/* pour pouvoir centrer le bloc page avec margin auto (bug IE) */
}

#page {
	position: relative;	/*pour pouvoir placer les éléments en position absolue dans le bloc page */
	background: url(../images/background_accueil.jpg) center top no-repeat;
	width: 1000px;		/* largeur image d'arrière-plan */
	height: 600px;		/* hauteur image d'arrière-plan */
	margin: 25px auto;
	text-align: left;
}

a {
	text-decoration: none;
	color: #f7b93a;
}

a.texto {
	display: block;
	width: 140px;
	text-align: center;
	font-weight: bold;
	/* background-color: #6e6a5f; arrière-plan couleur du texto */
	color: #ffffff;
}

a.texto:hover {
	background-color: #000000;
}

a.lien, a.image {
	color: #fdfffe;
	/*font-family: Script MT Bold, Monotype Corsiva, serif;*/
	font-weight: bold;
	font-size: 21px;
}

a:hover {
	color: #f19c1f;
}

a.image {
	font-family: Arial, Helvetica, Geneva, sans-serif;
	font-size: 9px;
	font-weight: bold;
}

a.image span {
	display: none;
}

a.image:hover span {
	display: block;
	position: absolute;
	top: 50px;
	padding: 3px;
	/*border: solid 1px #6c2325;*/
	background-color: #6c2325;
	background-color: black;
	line-height: 24px;
	width: 140px;
	text-align: center;
	/*font-size: 16px;*/
}

#entete {
	margin: 0 25px;
}

#entete h1 {
	font-size: 26px;
}

#entete h2 {
	font-size: 16px;
	font-weight: normal;
	line-height: 15px;
}

.danslo {
	font-size: 150%;
	font-style: italic;
	position: relative;
	top: 3px;
}

#pied {
	position: absolute;
	width: 510px;		/* idem largeur bloc <ul.menu> définie dans zeste.css */
	margin: 0;
	top: 530px;
	left: 470px;
	text-align: center;
	color: #f7b93a;
}

ul#menu {
	list-style-type: none;		/* liste sans puce */
	height: 18px;
	font-family: Arial, Helvetica, Geneva, sans-serif;
	font-size: 9px;
	font-weight: bold;
	color: #f7b93a;		/* couleur des barres verticales */
}

ul#menu li {
	float: left;		/* pour que les "boutons" s'affichent horizontalement et non verticalement comme une liste */
	padding-left: 10px;
	padding-right: 10px;
	border-right: solid 1px #f7b93a;	/* idem couleur du lien actif */
}

ul#menu li.fin {
	border-right: none;
}



