/* =================================================================================== */

	ul.menu {
		display: block; position: absolute;
		left: 0; top: -24px; margin: 0; padding: 0;
		width: 920px; list-style-type: none;
		line-height: 12px;
		}

		ul.menu li.sep {
			display: none; float: left; position: relative;
			margin: 0; padding: 0; width: 15px; height: 24px;
			background: transparent top left no-repeat url(../img/nav/sep.jpg);
			}

		ul.menu li.end {
			display: none; float: left; position: relative;
			margin: 0; padding: 0; width: 5px; height: 24px;
			background: transparent top right no-repeat url(../img/nav/end.jpg);
			}

			ul.menu li a img {
				display: block; position: relative;
				width: 100%; height: 100%;
				border: none;
				}


/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */

.menu, .menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
	}

.menu li {
	display: block; float: left; position: relative;
	margin: 0 5px 0 0; padding: 0;
	z-index: 5; cursor: pointer;
	}

.menu li:hover {
	z-index: 10000;
	white-space: normal;
	}

.menu li li {
	}

.menu ul {
	visibility: hidden;
	position: absolute;
	z-index: 10;
	left: 0; top: 0;
	}

.menu li:hover>ul {
	visibility: visible;
	top: 100%; left: -1px;
	}

.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
	}
	
.menu a {
	letter-spacing: -0.001em;
	}	

/* -- 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;
	}
	
.menu, .menu ul {	/* IE7 float clear: */
	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(../img/transparent.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
	/* 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: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
	}
/* -- sticky.submenu.END -- */


/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

.menu ul {
	width: 17em;
	}

.menu ul li {
	color: #fff;
	background: #000;
	width: 17em;	
	}

.menu a {
	position: relative; zdisplay: block; float: left; width: auto;
	margin: 0; padding: 6px 9px; outline: none !important;
	text-decoration: none !important; color: #fff; font-weight: bold; text-transform: capitalize;
	background-color: #000;
	}

.menu li:hover {
	}

	
	/* SECOND LEVEL DROP DOWNS */
	
	.menu li.submenu {
		color: #fff;
		}

	.menu li.submenu a {
		display: block; float: none; overflow: auto;
		color: #fff; background: #e46344;
		}
		
	.menu .submenu li a {
		color: #9a323b;
		font-weight: normal;
		text-transform: none !important;
		border: none; background-color: #f4db77;
		}

	.menu .submenu a:hover, .menu .submenu li:hover>a {
		font-weight: bold;
		}


.menu li li {	/* create borders around each item */
	border: 1px solid #f7ebbb;
	}
	
.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
	}

.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	top: -1px;
	left: 100%;
	}

/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
/* End Fix */

.menu a:hover, .menu li:hover>a {
	background-color: #f4db77;
	color: #9a323b;
	}
	
.menu li a.active, .menu li a.current {
	background: #f4db77;
	color: #9a323b;
	}
	
.menu li li a.active, .menu li li a.current {
	background: #f4db77;
	color: #9a323b;
	font-weight: bold;
	}
	
	
