/* CSS Menu */

#menu {
	width: 878px;
	height: 42px;
	margin: 0 auto;
	padding: 0 auto;
	}	

#nav ul {
	list-style-type: none;
	}

#nav li {
	float: left;
	display: block;
	position: relative;
	z-index: 99999;
	min-height: 42px;
	}	
	
#nav li li {
	min-height: 22px;
	margin-left: 0px;
	}	

* html #nav li {
	height: 42px;
	}	
	
* html #nav li li {
	height: 5px;
	margin-left: 0px;
	}	

#nav span {
	display: none;
	}	

#nav a:hover {
	background-position: 50% -42px;
	}	

/*grouped elements from main buttons*/
#mm_home,
#mm_services,
#mm_advantages,
#mm_clients,
#mm_finance,
#mm_team,
#mm_resources,
#mm_contact {
	display: block;
	height: 42px;
	background-position: 50% 0;
	background-repeat: no-repeat;
	}	

/*main menu buttons*/
#mm_home {
	background-image: url(../img/nav01.jpg);
	width: 85px;
	}

#mm_services {
	background-image: url(../img/nav02.jpg);
	width: 74px;
	}

#mm_advantages {
	background-image: url(../img/nav03.jpg);
	width: 95px;
	}
	
#mm_clients {
	background-image: url(../img/nav04.jpg);
	width: 66px;
	}

#mm_finance {
	background-image: url(../img/nav05.jpg);
	width: 72px;
	}

#mm_team {
	background-image: url(../img/nav06.jpg);
	width: 62px;
	}

#mm_resources {
	background-image: url(../img/nav07.jpg);
	width: 83px;
	}

#mm_contact {
	background-image: url(../img/nav08.jpg);
	width: 94px;
	}
	
/* second-level lists */		
#nav li ul { 
	position: absolute; 
	text-transform: lowercase;
	padding:0; 
	margin:0;
	width: 150px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	}

#nav ul li { /* all list items */
	width: 10em; /* width needed or else Opera goes nuts */	
	}

#nav ul li a {
	display: block; 
	width: 150px; 
	padding: 4px;
	font-size: 1.1em;
 	border: 1px solid #3F3F3F;
 	background: #1F1F1F;
	color: #FFFFFF;
	text-decoration: none; 
	min-height: 15px;
	-moz-opacity:.95;
    filter:alpha(opacity=95);	
	}

* html #nav ul li a {
	height: 15px;
	}
		
#nav ul li a:hover {
	border: 1px solid #AFAFAF;
	background: #BF171E;
	color: #FFFFFF;
	}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1.9em 0 0 141px;
	}

* html #nav li ul ul {/* For IE5*/
	margin: -1.9em 0 0 141px;
	}

#nav  li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
	}

#nav li:hover ul, 
#nav li li:hover ul, 
#nav li.sfhover ul, 
#nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	}	
	
/*Activates main button*/
body#home #mm_home,
body#services #mm_services,
body#advantages #mm_advantages,
body#clients #mm_clients,
body#finance #mm_finance,
body#team #mm_team,
body#resources #mm_resources,
body#contact #mm_contact {
	background-position: 50% -42px;
	}	
