
/*grouped elements from main buttons*/
#mm_home,
#mm_buying,
#mm_selling,
#mm_renting,
#mm_finance,
#mm_news,
#mm_about,
#mm_contact {
	display: block;
	height: 42px;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-color: #FFF;
	}	

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

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

#mm_selling {
	background-image: url(../img/nav03.jpg);
	width: 71px;
	}
	
#mm_renting {
	background-image: url(../img/nav04.jpg);
	width: 75px;
	}

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

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

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

#mm_contact {
	background-image: url(../img/nav08.jpg);
	width: 91px;
	}
	
/* second-level lists */		
#nav li ul { 
	position: absolute; 
	text-transform: lowercase;
	padding:0; 
	margin:0;
	width: 120px;
	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: 120px; 
	padding: 4px;
	font-size: 1.1em;
 	border: 1px solid #F5F5F5;
 	background: #D9D9D9;
	color: #4F4F4F;
	text-decoration: none; 
	min-height: 15px;
	-moz-opacity:.9;
    filter:alpha(opacity=90);	
	}

* html #nav ul li a {
	height: 15px;
	}
		
#nav ul li a:hover {
	background: #98CDD3;
	color: #000;
	}

#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#buying #mm_buying,
body#selling #mm_selling,
body#renting #mm_renting,
body#finance #mm_finance,
body#news #mm_news,
body#about #mm_about,
body#contact #mm_contact {
	background-position: 50% -42px;
	}	
