/*CSS général pour TPM-sites3D*/

body
{
	/*pour étendre la couleur de l'image à toute la page*/
	background-color :	rgb(0, 101, 153);
	margin : 0;
	text-align : center;
}

#carte
{
	/*Pour centre l'image map de la carte*/
	/*testé sous IE6, firefox, saphari*/
	display : block;
	clear : both;
	margin-top : 0px;
	margin-left : auto;
	margin-right : auto;
	text-align : center;
	padding : 0;
}


#menu
{
	text-align : center;
	width : 550px;
	margin-top : 0px;
	/*margin-bottom : 5px;*/
	/*margin-right : 18px;*/
	margin : auto;
	padding : 0;
}


.rubriques
{
	list-style-type : none;
	font-size : 12px;
	color : #28BDD3;
	/*margin : 0;*/
/*list-style-type : none;
/*position : absolute;
width : 100px;
padding : 0;
margin-left : auto;
	margin-right : auto;
text-align : center;
margin : 0;*/
}

ul.rubriques li
{
	float : left; /*right*/
	margin-top : 0px;
	margin-right : 0px;
	border : 1px solid #07576E;
	background-color : #0875B8;
}

/*tous les a qui sont dans des li*/
li a
{
	display : block;
	color : white;
	text-decoration : none;
	padding : 4px;
}

/*les liens survolés*/
li a:hover
{
	background : white;
	color : #0875B8;
}

.actif
{
	border-bottom : 1px solid white;
	background-color : #006599;/*white;*/
	padding : 4px;
}

#contenu
{
	width : 700px;
	margin : auto;
	padding : 2px 0px 2px 5px;
	background-color : rgb(159, 243, 255);
	text-align : left;
}

#centreimage
{
	/*text-align : center;*/
	left : 50%;
	margin-left : -50px;
	/*border : 1px solid #000000;*/
}

/******************************/
/*AUTRE TECHNIQUE POUR CENTRER*/
/******************************/
/* supportée par plus de navigateurs???*/
/*
width: 400px; -------> largeur de l'image ou div à adapter
left: 50%; -------> position écran
margin-left: -200px; ----> reculer de la moitié :-)

ou tu mets en "auto" (gaffe à la compréhension des navigateurs):

margin-left: auto;
margin-right: auto;
width: ...; ----> largeur obligatoire pour être centré 
*/
