/* Styling for the Multilevel Menu with CSS and JavaScript
Produces the green menu seen on Thesis Demo
Modified and annotated by Mike Nichols - July 10, 2009 */

/* COLOR CHART
#539ff3	- bleu Jalons	- menu strip
						- tabs
#53A502	- medium green	- tab dividers
#006500	- dark green	- submenu item dividers
#99ccff	- very dark green - tab and submenu item hover state
#FFFFFF	- lime green	- font hover state
*/

.slidemenu_class {
	/* font styling */
	font-weight: bold;
	text-transform: uppercase;
	font-size: 12px;
	font-family: Arial, Verdana, sans-serif;
	/* menu strip color */
	background: #404041 url(../images/menu_bg.gif) repeat-x left top;
	/* menu strip width */
	width: 100%;
	height: 30px;
}

/* Top level list - Do not change! */
.slidemenu_class ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/* Top level list items - Do not change! */
.slidemenu_class ul li{
	position: relative;
	display: inline;
	float: left;
}

/* Top level menu tabs */
/* --- Style de base 
 	.slidemenu_class ul li a{
	background: #539ff3;
	color: #FFFFFF;
	padding-top: .5em;
	padding-bottom: .5em;
	padding-right: .625em;
	padding-left: .625em;
	border-right: 1px solid #53A502;
	text-decoration: none;
	display: block;
}*/

/* --- Modifié par Fab */
.slidemenu_class ul li a{
	background: #404041 url(../images/menu_bg.gif) repeat-x left top;
	color: #FFFFFF;
	line-height: 30px;
	padding-right: .625em;
	padding-left: .625em;
	border-right: 1px solid #ffffff;
	text-decoration: none;
	display: block;
}

/* Top level link & visited font color */
.slidemenu_class ul li a:link, 
.slidemenu_class ul li a:visited {
	color: #FFFFFF;
}

/* Top level tab background and font color during hover state */
.slidemenu_class ul li a:hover {
	background: #4e95d0;
	/* font color */
	color: #FFFFFF;
}
	
/* First submenu level - Do not change! */
.slidemenu_class ul li ul {
	position: absolute;
	left: 0;
	display: block;
	visibility: hidden;
}

/* Submenu level list items (undo style from Top level List Items) - Do not change! */
.slidemenu_class ul li ul li {
	display: list-item;
	float: none;
}

/* All subsequent submenu levels vertical offset after first submenu level - Do not change! */
.slidemenu_class ul li ul li ul {
	top: 0;
}

/* Submenu level items */
.slidemenu_class ul li ul li a {
	/* font styling */
	font-weight: normal;
	/* width of submenu items */
	width: 230px; 
	/* height of submenu items above letters */
	padding-top: .313em;
	/* depth of submenu items below letters */
	padding-bottom: .313em;
	/* border between submenu items */
	border-bottom: 1px solid #ffffff;
	border-top-width: 0;
	margin: 0;
	background-color: #7f8083;
	background-image: none;
}

/* Submenu background and font hover colors */
.slidemenu_class ul li ul li a:hover{ 
	background: #72bf44;
	/* font color */
	color: #FFFFFF;
}

/* Down and right arrow images - Do not change! */
.downarrowclass {
	position: absolute;
	top: 12px;
	right: 7px;
}

.rightarrowclass {
	position: absolute;
	top: 6px;
	right: 5px;
}

/* IE6 hack to get sub menu links to behave correctly - Do not change! */
* html .slidemenu_class ul li a { 
	display: inline-block;
}
