@charset "utf-8";
/* CSS Document */

/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
	z-index:99;

}
.sf-menu {
	line-height:	0.2;
	
}
.current{
	border-right:1px  #9C0 solid;

}
.sf-menu ul {
	position:		absolute;
	top:			1px;
	width:			125%; /* left offset of submenus need to match (see below) */
	
	
}
.sf-menu ul li {
	width:			100%;
	border-bottom:1px #FFF solid;
}
.sf-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {
	float:			left;
	position:		relative;
}
.sf-menu li li{
	line-height:	1.0;
	margin-left:0px;
}
.sf-menu a {
	display:		block;
	position:		relative;
	margin-left:10px;
	margin-right:10px;

}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	left:			0em;
	top:			16px; /* match top ul list item height */
	z-index:		99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
	top:			0em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
	left:			8.7em; /* match ul width */
	top:			0em;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
	top:			0em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
}

/*** DEMO SKIN ***/
.sf-menu {
	float:			left;
	margin-bottom:	1em;
}
.sf-menu a {
	padding: 5px 5px 5px 5px;
	text-decoration:none;

}
.sf-menu a, .sf-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:			#fff;
}
.sf-menu li {
	font-size:11px;
	font-weight:bold;

}
.sf-menu li li {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:normal;
	background:#000 url(../img/bt-bleu.png) repeat-y;
}
.sf-menu li:hover{
	background:url(../img/bg-menu-on.png);
}
.sf-menu li li a, .sf-menu li li a:visited {
	font-size:11px;
	color:#fff;
}
.sf-menu li li a:hover {
	background:url(../img/bg-menu-none.png);
	color:#333;
}
.sf-menu li li{
}
.sf-menu li li li {
	background:#F2939A url(../img/bt-rouge.png) repeat-y;
}
.sf-menu li li li a:hover {
	background:url(../img/bg-menu-none.png);
	color:#F9C;
}
.sf-menu li li:hover{
	background:url(../img/bg-menu-none.png);
	background-color:#8FADCB;
}
.sf-menu li li li:hover{
	background-color:#E42330;
}
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
	outline:		0;
}

/*** arrows **/
.sf-menu a.sf-with-ul {
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
display:none;

}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
}

/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator {  }
.sf-menu ul a > .sf-sub-indicator {}
/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
	background:	url('../img/shadow.png') no-repeat bottom right;
	padding: 0 8px 9px 0;
}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
}

#menu{

}
#col1, #col2, #col3, #col4, #col5{
	float:left;
}

#menu a.cat {
}
#menu ul{
	padding:0px;
	margin:0px;
}
#menu li.current{
}
#menu a.ray {
}
#menu a.ray:hover{
}
#menu span{
}
#separe_menu{
}
#langues{
}
#outils{
}
#outils li{
}
#outils a{
}/* remove all list stylings */
.menu, .menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 99;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu li li {
	float: none;/* items of the nested menus are kept on separate lines */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}

.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.menu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */






/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

.menu, .menu ul li {
	color: #fff;

}

.menu ul {
	width: 14em;
}

.menu a, .menu a:visited {
	text-decoration: none;
	color: #fff;
	padding: 0 10px 0 10px;
	display: block;
	position: relative;
}

.menu a:hover{
	color: #333;
}
.menu li:hover>a {
			background:#8FADCB;

}
.menu li a{
	font-size:11px;
	font-weight:bold;
	border-right:1px #CC0 solid;

	
}.menu ul a{
	border-right:0px #FFF solid;
	display:block;
}
.menu li li a{
	display:block;
	font-size:11px;
	font-weight:normal;
	padding-top:2px;
	padding-bottom:2px;
}
.menu li a:visited{
	color:#fff;
}
.menu li li {	/* create borders around each item */
	border: 1px solid #ccc;
	background-color:#000;
	padding: 6px 0 6px 0;
	font-size:11px;
	top:2px;
}
.menu li li:hover {
		background:#8FADCB;

}
.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	top: -2px;
	left: 90%;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */
.menu>li:first-child>a, .menu li + li + li li:first-child>a {
	color: #fff;
}
#menu a:hover{
	color:#333;
}
/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
/* End Fix */

/*]]>*/
#mentions ul li {
	display:block;	
	padding-left:10px;
	margin:0px;
	top:-16px;

}


