
/* float the list so that the items are in a line and their position relative so that the drop down list will appear in the right place underneath each list item */
.menu ul li {
float:left; 
position:relative;
}
/* make the dropdown ul invisible */
.menu ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.menu ul li:hover a {
color:#fff; 
background:#b3ab79;
}
/* make the sub menu ul visible and position it beneath the main menu list item */
.menu ul li:hover ul {
display:block; 
position:absolute; 
top:40px; 
left:0; 
}
/* style the background and foreground color of the submenu links */
#navigation .menu ul li:hover ul li a {
  display:block; 
	background-color: #ffffff;
  color:#709023;
  background-image: none;
  text-transform: none;
  text-align: left;
  line-height: 28px;
  border-bottom: 1px solid #709023;
	border-right: 1px solid #709023;
	padding: 0 0 0 8px;
}
/* style the background and forground colors of the links on hover */
#navigation .menu ul li:hover ul li a:hover {
background:#e7f7c1; 
color:#709023;
}
#navigation .menu ul li:hover ul.inner{
	background-color: #ffffff;
	border-left: 1px solid #709023;
	background-image: none;
}