/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */

/* 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 */
	background-color: #FFFFFF;
	opacity: 0.95;
}

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

.menu li:hover {
	position: relative;/* define new positioning context */
}

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

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

/* 2nd+ levels go on the right side of the parent item */
.menu li li:hover>ul {
	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;
}
/* IE7 float clear: */
.menu, .menu ul {
	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(images/spacer.gif);/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 0px;
	margin: 0px;
	/*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: 0px;
	margin: 0px;
}
/* -- sticky.submenu.END -- */


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

.menu, .menu ul li {
	color: #eee;
}

.menu ul {
	width: 11em;
}

.menu a {
	text-decoration: none;
	color: #0D3F72;
	font-size: 10px;
	font-family: Verdana;
	padding: .4em 1em;
	display: block;
	position: relative;
}

.menu a:hover {
	/* color: #fc3; */
}

A.levelOne{
	padding: 0em;
}
.menu li:hover>a {
	background-color: #EDE3DB;
}

.menu li li {

}

.menu li li:first-child {

}

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

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

