
/*-----------------------------------------------------------------------------
Overlapping CSS Navigation - IE6 & Below
version:   1.0
date:      09/12/06
author:    george ornbo
email:     george at shapeshed dot com

Licensed under a 2.0 Creative Commons License

-----------------------------------------------------------------------------*/

#nav li
	{
	list-style:none;
	display:inline;
	float:left;
}


/*-----------------------------------------------------------------------------

Because IE6 doesn't interpret negative margins well we need to fix it. To do 
that we position the hover state absolutely and then use negative margins. To fix 
ordering we use z-index. 

-----------------------------------------------------------------------------*/	

body#projet-page li#accueil a:hover,body#projet-page li#accueil a:focus
	{
	position:absolute;
	margin-left:-34px;
	width:164px;
	z-index:1;
}


body#galerie-page li#projet a:hover,body#galerie-page li#projet a:focus
	{
	position:absolute;
	margin-left:-130px;
	width:27px;
	z-index:1;
}

body#video-page li#galerie a:hover,body#video-page li#comparatif a:focus
	{
	position:absolute;
	margin-left:-149px;
	width:150px;
	z-index:1;
}

body#comparatif-page li#video a:hover,body#comparatif-page li#club a:focus
	{
	position:absolute;
	margin-left:-149px;
	width:150px;
	z-index:1;
}
body#club-page li#comparatif a:hover,body#club-page li#comparatif a:focus
	{
	position:absolute;
	margin-left:-149px;
	width:150px;
	z-index:1;
}
body#mac-page li#club a:hover,body#mac-page li#club a:focus
	{
	position:absolute;
	margin-left:-149px;
	width:150px;
	z-index:1;
}
li#accueil a:hover,li#projet a:hover,li#galerie a:hover,li#video a:hover,li#comparatif a:hover,li#club a:hover,li#mac a:hover,body#projet-page li#projet a:link,body#projet-page li#projet a:visited,body#galerie-page li#galerie a:link,body#galerie-page li#galerie a:visited,body#video-page li#video a:link,body#video-page li#video a:visited,body#comparatif-page li#comparatif a:link,body#comparatif-page li#comparatif a:visited,body#club-page li#club a:link,body#club-page li#club a:visited,body#mac-page li#mac a:link,body#mac-page li#mac a:visited,
	{
	position:relative;
}


	
	
	
	
