/* - - - ADxMenu: BASIC styles - - - */
.menu, .menu ul {	/* remove all list stylings */
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
	min-height: 0;
}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* 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 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 */
	background: url(../images/bgd-lvl2.png);
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	left: 155px;	/* and move them to the right of the item */
}

/* -- 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;
}

/* - - - ADxMenu: DESIGN styles - - - */

.menu, .menu ul li {
	color: #eeeeee;
	background: none;
	margin: 0;
	padding: 0;
}

.menu a {
	text-decoration: none;
	color: #eee;
	padding: 4px 10px 0 10px;
	margin: 0;
	display: block;
	height: 17px;
}

.menu a:hover, .menu li:hover>a {
	color: #fdcd08;
	background: url(../images/bgd-menu-hover.png) right repeat-y;
}

.menu li:hover>ul {	/* inset submenus, to show off overlapping */
	top: 0;
	left: 155px;
}
.menu li ul li:hover>a, .menu li ul li a:hover, .menu li ul li:hover{	/* inset submenus, to show off overlapping */
	background: url(../images/bgd-lvl2-hover.png) repeat-y;
}