@charset "utf-8";
/* CSS Document */

#nav {
	margin:0 auto;
    width:800px;
	/*height:60px;*/
	background: url(../images/menu/menu_bg.jpg) repeat-x;
	
}
#nav ul {
	list-style:none;
	margin:0 auto;
	width:500px;
	background: url(../images/menu/menu_bg.jpg) repeat-x;
}
#nav li {
	list-style:none;
	display:block;
	float:left;
	height:59px;
	line-height:59px;
	background: url(../images/menu/menu_bg.jpg) repeat-x;
}
#nav li a {
	display:block;
	float:left;
	color:#a7a7a7;
	text-transform:uppercase;
	font-size:11px;
	font-weight:bold;
	line-height:59px;
	text-decoration:none;
	padding:0 20px;
}
#nav li a:hover {
	color:#fff;
	background: url(../images/menu/menu_hover.jpg) no-repeat bottom;
}
#nav li a.current {
	display:block;
	float:left;
	background:url(../images/menu/menu_hover.jpg) no-repeat bottom;
	/*color:#fff;*/
	text-transform:uppercase;
	font-size:11px;
	font-weight:bold;
	line-height:59px;
	text-decoration:none;
	padding:0 20px;
}
#nav li a:hover.current {
	color:#fff;
}
/*fin du menu principal*/

/*Début du menu pour les produits*/
.underlinemenu {
	font-weight: bold;
	width: 100%;
}
.underlinemenu ul {
	padding: 3px 0 3px 0; /*6px should equal top padding of "ul li a" below, 7px should equal bottom padding + bottom border of "ul li a" below*/
	margin: 0;
	text-align: left;
}

.underlinemenu ul li {
	display: inline;
	position: relative;
	float: left;
	font-size:14px;
}
.underlinemenu ul li a {
	color: #494949;
	padding: 6px 3px 4px 3px; /*top padding is 6px, bottom padding is 4px*/
	margin-right: 6px; /*spacing between each menu link*/
	text-decoration: none;
	border-bottom: 3px solid gray; /*bottom border is 3px*/
}
.underlinemenu ul li a:hover, #underlinemenu ul li a.selected {
	border-bottom-color: black;
}
.underlinemenu ul li ul {
	left: 0;
	position: absolute;
	top: 1em; /* no need to change, as true value set by script */
	display: block;
	visibility: hidden;
}
/* Sub level menu links style */
.underlinemenu ul li ul li a {
	display: block;
	width: 190px; /*width of sub menu levels*/
	color: #494949;
	text-decoration: none;
	padding: 1px 5px;
	border: 1px solid #ccc;
	font-size:12px;
}
/*All subsequent sub menu levels offset after 1st level sub menu */
.underlinemenu ul li ul li ul {
	left: 159px; /* no need to change, as true value set by script */
	top: 0;
}
.underlinemenu ul li a:hover {
	/*background-color: black;
	color: white;*/
}
/*Background image for top level menu list links */
.underlinemenu .mainfoldericon {
	background: #F3F3F3 url(media/arrow-down.gif) no-repeat center right;
}
/*Background image for subsequent level menu list links */
.underlinemenu .subfoldericon {
	background: #F3F3F3 url(media/arrow-right.gif) no-repeat center right;
}
* html p#iepara { /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
	padding-top: 1em;
}
/* Holly Hack for IE \*/
* html .underlinemenu ul li {
	float: left;
	height: 1%;
}
* html .underlinemenu ul li a {
	height: 1%;
}
/* End */

