/* http://www.htmldog.com/articles/suckerfish/bones/ */

#menu ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

#menu li { /* all list items */
	float: left;
	position: relative;
	margin:0;
	padding:0;
}

#menu li li {
	float: none;
}

#menu li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 42px;
	left: 0;
}

#menu li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

#menu li:hover ul, #menu li.over ul { /* lists nested under hovered list items */
	display: block;
}

/*
	19-02-2007 (JJ)
	Added only the below lines to work fine with IE7 !!
*/
#menu a {
	display: block;
	text-decoration: none;
}
