/* - - - ADxMenu: BASIC styles - - - */

/* remove all list stylings */
.menu, .menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

/* move all list items into one row, by floating them */
.menu li {
	margin: 0;
	padding:0px 12px 0px 8px ;
	border: 0;
	border-left:solid 1px #DDDDDD;
	display: block;
	float: right;
	
}

/* define new starting point for the nested UL, thus making positioning it a piece of cake */
.menu li:hover {
	position: relative;
	background-color:#aba9df;
	color:White;
	
}


/* align the submenus with the right edge */
.menu li ul {
	right: 0;
	
}

/* force the submenu items into separate rows, while still keeping float:left (which resolves IE6 white-gap problem) */
.menu li li {
	width: 100%;
	
}

/* fix the position for 2nd level submenus.
	first make sure no horizontal scrollbars are visible on initial page load by sliding them all into top-left corner  */
.menu li li ul {
	top: 0px;
	
}

/* ...and then place the submenu where it should be when shown */
.menu li li:hover ul {
	right: 100%;
	
}

/* initialy hide all sub menus */
.menu ul {
	visibility: hidden;
	position: absolute;
	z-index: 100;
}

/* display them on hover */
.menu li:hover>ul {
	visibility: visible;
}

/* -- 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(empty.gif);/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 5px 5px 5px 5px;
	margin: -5px -5px 0 0;
	/*background: #f00;*/		/* uncomment this if you want to see the "safe" area. you can also use to adjust the safe area to your requirement */
}


/* - - - ADxMenu: DESIGN styles - - - */

.menu, .menu ul li {
    background: #fff;
    
    
}


.menu li li 
{

	text-align: right;
	border-bottom:solid 1px #88b;
	border-left:solid 1px #88b;
	border-right:solid 1px #88b;
	padding:1px 4px 4px 2px;
	background-color:#aba9df;
}

.menu ul {
	width: 11em;
}

.menu li:hover>a {
	color: #fff;
	text-decoration:none;
	background-color:#aba9df;
	
}

.menu a {
	text-decoration: none;
	color: #fff;
	padding: .4em 1em;
	display: block;
}
/*
.menu a:hover {

	color:White;
}
*/
/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
.menu {
	display: inline-block;
}
/* End Fix */

/*]]>*/


