/*
	eVa-Sion.com copyright 2009
	 Menu développé par hng pour eVa-Sion
	 Toute modification est acceptée dans 
	 le cadre d'une intégration particulière.
	 Interdit à la vente ou à une utilisation lucrative
	 sans autorisation de l'auteur : contact@eva-sion.com
*/
#menu {
	width: 982px; 
	height: 38px; 
	background: url("fond.png") no-repeat; /* Fond pour ff*/
	padding-left: 30px; 
	list-style: none; 
}
* html #menu {
	margin: 0;
	background: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod="scale", src="fond.png"); /* Fond pour IE*/
}
#menu li { 
	position: relative; 
	float: left; 
	margin: 0;
}
#menu li a { 
	font-family: arial, sans-serif; 
	font-size: 11px; 
	background: url("separateur.png") no-repeat top right;
	display: block; 
	width: 116px; 
	height: 36px; 
	line-height: 35px; 
	padding: 0; 
	float: left; 
	color: #333; 
	text-decoration: none; 
}
#menu li a b { 
	display: block; 
	width: 116px; 
	float: left; 
	padding: 0;
}
#menu li a:hover { 
	display: block; 
	background: #999 url("hover.png") no-repeat top; 
	color: #fff; 
}
#menu li a:active,#menu li a:focus { width: 116px; display: block; background: #999 url("active.png") no-repeat ; cursor:pointer; color:#fff; line-height:35px; }
#menu li a:hover b, #menu li a:active b { width: 116px; cursor: pointer; } 

/*------------ Menu déroulant ------------- */
.menu{
	width: 982px; 
	height: 38px; 
	background: url("fond.png") no-repeat; /* Fond pour ff*/
	padding-left: 30px; 
	list-style: none; 
}
	
.menu ul{
list-style-type:none;
padding:0;
margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
float:left;
position:relative;
z-index:100;

}

/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}

* html .menu {
	margin: 0;
	background: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod="scale", src="fond.png"); /* Fond pour IE*/
}

/* style all the links */
.menu a {
	text-align:center;
	font-family: arial, sans-serif; 
	font-size: 11px; 
	background: url("separateur.png") no-repeat top right;
	display: block; 
	width: 150px; 
	height: 36px; 
	line-height: 35px; 
	padding: 0; 
	color: #333; 
	text-decoration: none;
	font-weight:bold;
}
.menu a:hover{
	color:#fff;
	background:url("hover.png") repeat-x;	
}
/* style the links hover */
.menu ul li a{
}
.menu ul li a:hover{
}
.menu ul li {
	padding:0;
	margin:0;
	height:34px;
}
/* style the sub level links hover */
.menu ul ul li a {
	background:#D3D3D3 none repeat scroll 0 0;
}
.menu ul ul li a:hover{
}
/* hide the sub level links */
.menu ul ul {
visibility:hidden;
width:149px;
height:0;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
}