#nav .menu {
width: 700px; 
font-size: 0.85em;
position: relative;
z-index:100;
}
/* remove all the bullets, borders and padding from the default list styling */
#nav .menu ul {
padding:5px 0 0 0;
margin:0 0 0 0;
list-style-type:none;
}
#nav .menu ul ul {
width:160px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#nav .menu li {
float:left;
position:relative;
}
/* style the links for the top level */
#nav .menu a, #nav .menu a:visited {
	margin: 0 0 0 0;
	padding: 0 10px 8px 10px;
	text-decoration: none;
	font-size: 12px;
	color: #6f6f6e;
	font-weight: normal;
	display: block;
	text-transform: uppercase;  
	line-height:29px;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .demo .menu a, * html .demo .menu a:visited {
width:150px;
w\idth:149px;
}

/* style the second level background */
#nav .menu ul ul a.drop, #nav .menu ul ul a.drop:visited {
background:#ebe8e0;

}
/* style the second level hover */
#nav .menu ul ul a.drop:hover{
background:#dcd7c8;
}
#nav .menu ul ul :hover > a.drop {
/*background:#dcd7c8;*/
}
/* style the third level background */
#nav .menu ul ul ul a, #nav .menu ul ul ul a:visited {
background:#dcd7c8;
}
/* style the third level hover */
#nav .menu ul ul ul a:hover {
background:#b2ab9b;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
#nav .menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:33px;
left:0; 
width:160px;
}
/* another hack for IE5.5 */
* html #nav .menu ul ul {
top:32px;
t\op:33px;
}

/* position the third level flyout menu */
#nav .menu ul ul ul{
left:159px; 
top:0;
width:150px;
}
/* position the third level flyout menu for a left flyout */
#nav .menu ul ul ul.left {
left:-159px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
#nav .menu table {position:absolute; top:0; left:0;}

/* style the second level links */
#nav .menu ul ul a, #nav .menu ul ul a:visited {
background:#ebe8e0; 
color:#000; 
height:auto; 
line-height:1em; 
padding:5px 10px; 
width:139px;
/* yet another hack for IE5.5 */
}
* html #nav .menu ul ul a{
width:160px;
w\idth:139px;
}


/* style the top level hover */
#nav .menu a:hover, #nav .menu ul ul a:hover{
	color: #6f6f6f6;
	background: url(../pics/nav_hover.png) repeat-x top left;
}

#nav .menu a.dropact {
	color: #6f6f6f6;
	background: url(../pics/nav_hover.png) repeat-x top left;
}


#nav .menu :hover > a {
	color: #6f6f6f6;
	background: url(../pics/nav_hover.png) repeat-x top left;
}

#nav .menu ul ul :hover > a {
	color: #6f6f6f6;
	background: #dcd7c8;
}

/* make the second level visible when hover on first level list OR link */
#nav .menu ul li:hover ul,
#nav .menu ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
#nav .menu ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
#nav .menu ul :hover ul :hover ul{ 
visibility:visible;
}