/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/artists_dd.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* common styling */
/* set up the overall width of the menu div, the font and the margins */

.menu {
	width:765px;
	margin:0;
	position:relative;
	z-index:100;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 189px;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.menu ul {
padding:0; 
margin:0;
list-style-type: none;
}
/* float the list so that the items are in a line and their position relative so that the drop down list will appear in the right place underneath each list item */
.menu ul li {
float:left; 
position:relative;
}
/* style the links to be 150px wide by 30px high. Set the color and the font size. */
.menu ul li a, .menu ul li a:visited {
	display:block;
	text-align:center;
	text-decoration:none;
	width:153px;
	height:38px;
	color:#fff;
	font-size:13px;
	font-weight:bold;
}

.menu ul li ul li {
	background-color:#4998D1; 
}
.menu ul li ul li a, .menu ul li ul li a:visited {
	width:180px;
	height:20px;
	text-align:left;
	color:#ffffff;
	font-size:10px;
	font-weight:bold;
	padding-left: 10px;
	line-height:20px;
}
	/* Menu haut : Employeurs */
	.firstLevel1 {
		padding-top: 10px;
	}
	
	.firstLevel1:hover {
		background: url(../images/fondMenu1.jpg) 0 0 repeat-x;
	}

	.subLevel1 {
		background:#ff9e77;
	}

	.subLevel1:hover {
		background:#ff814b;
	}
	
	/* Menu haut : SalariŽs */
	.firstLevel2 {
		padding-top: 10px;
	}
	
	.firstLevel2:hover {
		background: url(../images/fondMenu2.jpg) 0 0 repeat-x;
	}

	.subLevel2 {
		background:#6a4cca;
	}

	.subLevel2:hover {
		background:#5331b9;
	}

	/* Menu haut : ReprŽsentant du personnel */
	.firstLevel3 {
		padding-top: 3px;
	}
	
	.firstLevel3:hover {
		background: url(../images/fondMenu5.jpg) 0 0 repeat-x;
	}

	.subLevel5 {
		background:#f46dbb;
	}

	.subLevel5:hover {
		background:#d350a5;
	}

	/* Menu haut : Offre de formation */
	.firstLevel4 {
		padding-top: 3px;
	}
	
	.firstLevel4:hover {
		background: url(../images/fondMenu4.jpg) 0 0 repeat-x;
	}

	.subLevel4 {
		background:#ff7475;
	}

	.subLevel4:hover {
		background:#de575f;
	}

	/* Menu haut : Presse */
	.firstLevel5 {
		padding-top: 10px;
	}
	
	.firstLevel5:hover {
		background: url(../images/fondMenu3.jpg) 0 0 repeat-x;
	}

	.subLevel3 {
		background:#75ccc7;
	}

	.subLevel3:hover {
		background: #54b0b2;
	}


/* make the dropdown ul invisible */
.menu ul li ul {
	visibility:hidden;
	position:absolute;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.menu ul li:hover a {
	color:#fff; 
}
.menu ul li:hover a span {
	display:none;
}

/* make the sub menu ul visible and position it beneath the main menu list item */
.menu ul li:hover ul {
	visibility:visible; 
	top:40px; 
	left:0; 
	width:150px;
}
/* style the background and foreground color of the submenu links */
.menu ul li:hover ul li a {
	display:block; 
	color:#fff;
}
/* style the hidden span text */
.menu ul li:hover ul li a span {
	display:none;
	position:absolute;
	left:150px; top:0;
	background:#fff;
	width:130px;
	padding:0 10px;
	color:#000;
}
/* style the first letter of the span text */
.menu ul li:hover ul li a span:first-letter {
	font-weight:bold;
	font-size:1.2em;
}
/* style the background and forground colors of the links on hover */
.menu ul li:hover ul li:hover {
	background:#6EB5E9;
}
/* make the span text visible */
.menu ul li:hover ul li:hover span {
	display:block;
	text-align:left;
	line-height:1.5em;
}
/* position the span text on the left of the last menu item */
.menu ul li:hover ul.left li:hover span {
	left:-150px;
}