/* - - - 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: 11;		/* thus we need to apply explicit z-index here... */
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */
#nav {
	position: absolute;
	z-index: 10;
	top: 100px;
	left: 103px;
	padding-left: 8px;
	width: 636px;
	background: transparent url(../i/nav-bg.png) no-repeat left bottom;
/*	border: 1px solid #f00;*/
}
.menu a {
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	color: rgb(33,78,95);
	display: block;
	position: relative;
	text-align:center;
	padding: .4em .6em .9em .6em;
	font-size: .88em;
	z-index: 12;
}
.menu a:hover, .menu li:hover>a, .menu li.active>a {
	color: rgb(196,65,45);
}
/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
/* End Fix */

/*]]>*/