#navigation {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 6em;
	text-align:center;
}
/* - - - 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 */
	/*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: 100;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	/*top: 100%;*/		/* to avoid scrollbars as much as possible */
}
.menu li:hover ul {
	visibility: visible;	/* display submenu them on hover */
	/*top: 100%;*/	/* 1st level go below their parent item */
	z-index: 500;
}
.menu li.active ul {
	visibility: visible;
	z-index: 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;
}
.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(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 5px 0 12px 0;
	margin:  0 0 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 */
}
/* -- sticky.submenu.END -- */

/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */
.menu {
/*	margin: 0 auto 4em auto;*/
	margin: 3px auto 0 auto;
	background: rgb(127,191,213) url(../i/nav-background.png) repeat-y;
}
.menu li {
	border-right: 3px solid #fff;
}
.menu li.last {
	border-right: none;
}
.menu ul li {
	background: #fff;
	margin: 0;
	border: none;
}
.menu a {
	text-decoration: none;
	color: #fff;
	padding: .25em 0;
	width: 153px;
	display: block;
	position: relative;
	text-align:center;
}
.menu ul li a {
	color: rgb(124,170,199);
	padding: .3em .6em .8em .6em;
	width: auto;
}
.menu a:hover, .menu li:hover>a, .menu li.active>a {
	color: rgb(87,76,77);
}
.menu ul {
	width: 915px;
	padding-left: 18px;
	background-color: #fff;
/*	border: 1px solid #f00;*/
}
.menu ul#sub2 { padding-left: 193px; }
.menu ul#sub3 { padding-left: 200px; }
.menu ul#sub4 { padding-left: 100px; }
.menu ul#sub5 { padding-left: 360px; }
.menu ul#sub6 { padding-left: 643px; }

#navigation {
	overflow: hidden;
}