/*
	CSS for cascading menu
	Valid on Windows XP/Vista IE6 IE7, FF1.5, FF2, FF3, Opera 9, Safari 3, Chrome
	Valid on Linux (Ubuntu) FF3
 */
body {
	margin : 0;
	padding : 0;
}
.base {
	position:relative;
	text-align:left;
}
/* container UL start here */
ul.menu {
	position : absolute;
	list-style-type : none;
	padding : 0;
	margin : 0;
	bottom : 5px;
	/*left : 100px;*/
	font-family : Arial, Verdana, sans-serif;
	font-size : 1em;
}
ul.menu a, ul.menu a:hover {
	text-decoration:none;
	/*font-size : .8em;*/
}
/* define LI tags */
ul.menu li.level-one,
ul.menu li.has-submenu,
ul.menu li.active {
	position : relative;
	float : left;
	line-height : 30px;
	margin-right : 4px;
	/*background-repeat : no-repeat;
	background-image : url(http://www.toutavelo.fr/styles/gfx/li-right.png);
	background-position : right top; */
	background : #fff;
	color:#000;
}

ul.menu li.has-submenu {
	background : #f1f1f1;
}
ul.menu li.active {
	background-position : right bottom; 
}

/* define all tags A in LI */
ul.menu li.level-one a {
	line-height : 20px;
	display : block;
	padding : 0px 0px 0;
	float : left;
	color : white;
	/*background-image : url(http://www.toutavelo.fr/styles/gfx/li-left.png);
	background-repeat : no-repeat;*/
	background-position : left top; 
}
ul.menu li.active a {
	padding : 3px 15px 3px;
	color : #414141;
	background-position : left bottom;
}
ul.menu li.has-submenu a {
	padding-right : 5px;
}
/* on mouse hover, display background center for first level LI */
ul.menu li.level-one:hover {
	background-position : right center;
	color:black; 
}

ul.menu li.level-one:hover a {
	/*padding-top : 2px;
	padding-bottom : 4px;*/
}
/* on mouse hover, display background center for first level A */
ul.menu li.level-one:hover a {
	background-position : left center;
}
/* define UL submenu in first level LI */
ul.menu li.level-one ul {
	display : none;
	position : absolute;
	top : 20px;
	left : 20px;
	width : 190px;
	list-style-type : none;
	padding : 5px 0 0;
	margin : 0;
	font-size:14px;
	/*background-image : url(http://www.toutavelo.fr/styles/gfx/ul-top.png);
	background-repeat : no-repeat;
	background-position : left top; */
	background : #f1f1f1;
	z-index:100; /* pour la puce du titre page mag*/
}
/* delete inherited properties for next level LI */
ul.menu li.level-one li {
	display : block;
	clear:both;
	padding : 0 !important ;
	margin : 0 !important ;
	line-height : 21px;
	background-image : none;
}
ul.menu li.level-one li a {
	line-height : 31px;
	padding : 0 10px !important;
	margin : 0 1px;
	width : 100%;
	display : block;
	clear:both;
	/*background-image : none;
	background-color : transparent;
	color:white;*/
}
ul.menu li.level-one ul li a:hover {
	/*background-color : #f9f9f9;
	color:#005b41;*/
}
ul.menu li.level-one ul li.separator,
ul.menu li.level-one ul li.separator:hover {
	background-image : url(http://www.toutavelo.fr/styles/gfx/separator.png);
	background-position : left;
	background-repeat : repeat-x;
	background-color : transparent;
	height : 2px !important;
	line-height : 2px !important;
	padding : 0 !important;
	margin : 1px 5px 0 !important;
	font-size : 0;
}

ul.menu li.level-one ul li.bottom-menu,
ul.menu li.level-one ul li.bottom-menu:hover {
	background-image : url(http://www.toutavelo.fr/styles/gfx/ul-bottom.png);
	background-position : left bottom;
	background-repeat : no-repeat;
	background-color : transparent ;
	height : 5px !important;
	line-height : 5px !important;
	padding : 0 !important;
	margin : 0 !important;
	font-size : 0;
}
/* add properties for "standard" browsers (not IE6) */
ul.menu li.level-one ul li > a {
	display : block;
	width : auto;
}
/* on mouse hover, show sub menu UL */
ul.menu li.level-one:hover ul {
	display : block;
}