
/* - - - Reset des styles Zpip - - - */
/* => on retire les defs CSS sur les .menu-liste et .menu-entree si .tcmenu */
.tcmenu .menu-liste,
.tcmenu .menu-liste .menu-entree,
.tcmenu .menu-liste .menu-entree .menu-liste,
.tcmenu .menu-liste .menu-entree .menu-entree, 
#nav .tcmenu .menu-liste .menu-entree {margin:0;padding:0;border:0;}
#nav .tcmenu li li.menu-entree {width: inherit;}

/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */
/*<![CDATA[*/
/* remove all list stylings */

.tcmenu, .tcmenu ul, .tcmenu ul.menu-liste {
	margin:0;
	padding:0;
	border:0;
	list-style-type:none;
	display:block;
}
.tcmenu li, .tcmenu li.menu-entree {
	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:5; /* thus we need to apply explicit z-index here... */
}
.tcmenu li:hover, .tcmenu li.menu-entree: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 */
} 

.tcmenu li li{
	float:none; /* items of the nested menus are kept on separate lines */
}
.tcmenu ul, .tcmenu ul.menu-liste {
	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 */
}
.tcmenu li:hover>ul, .tcmenu li:hover>ul.menu-liste {
	visibility:visible; /* display submenu them on hover */
	top:100%; /* 1st level go below their parent item */
} 
.tcmenu li li:hover>ul, .tcmenu li li:hover>ul.menu-liste { /* 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 */
.tcmenu:after, .tcmenu ul:after {
	content:".";
	height:0;
	display:block;
	visibility:hidden;
	overflow:hidden;
	clear:both;
}
.tcmenu, .tcmenu 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 ".tcmenu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.tcmenu ul {
	background-image: url(http://tempscritiques.free.fr/plugins/auto/ADXmenu/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 */
} 
.tcmenu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
.perso_tcmenu, .perso_tcmenu ul li {
	color:#604a7f;
	background:#eee;
}*/

.perso_tcmenu {
	border: solid #222; 
	border-width: 1px 0;
}

.perso_tcmenu ul {
	width: 11em;
}

.perso_tcmenu, .perso_tcmenu ul li {
	background: url("squelettes-dist/css/img/background.png") repeat scroll 0 0 #FFFFFF;
}

.perso_tcmenu{
	text-decoration:none;
	padding: .5em 1em;
	border-right: 1px solid #222;
	display:block;
	 position: relative;
}

.perso_tcmenu a:hover, .perso_tcmenu li:hover>a {
	background: #222; color: #FFF;
}

.perso_tcmenu a.on { background: #EED; color: #222; font-weight: normal; }

.perso_tcmenu li li { /* create borders around each item */
	border: 1px solid #ddd;
}

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

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

/* special colouring for "Main menu:", and for "xx submenu" items in perso_tcmenu
	placed here to clarify the terminology I use when referencing submenus in posts */

/*
.perso_tcmenu>li:first-child>a, .perso_tcmenu li + li + li li:first-child>a {
	color: #604a7f;
}
/* -- sticky.submenu.END -- */

 
/* Fix for IE5/Mac \*//*/
.tcmenu a {float:left;}
/* End Fix */


/*]]>*/
