#menu ul { /* remove bullets and list indents */
	list-style: none;
	width:100%;
	text-align:center;
	margin: 0;
	padding: 0;
}

#menu  ul.main{
	height:201px;
}
/* style, color and size links and headings to suit */
#menu ul a, #menu ul span {
	font-size:11px;
	font-weight:bold;
	text-decoration:none;
	text-transform:uppercase;
	display: block;
	margin: 0;
	padding: 2px 3px;
}

#menu span {
	color: #000;
}

#menu a {
	color: #8f918c;
}

#menu a:hover {
	color: #000;
}

#menu li {
	/* make the list elements a containing block for the nested lists */
	position: relative;
	line-height:18px;
	border-top:1px solid #000;
} 

#menu li.spacer {
	/* make the list elements a containing block for the nested lists */
	height:12px;
	border-style:none;
}

#menu .first {
	border-style:none;
}

#menu  ul ul {
	position: absolute;
	top: 18px;
	left:-85px;
	background-color:#000;
	width:117px;
	padding:18px 5px 18px 5px;
}

#menu  ul ul a{
	color:#8f918c;
	font-weight:normal;
	font-size:11px;
	line-height:12px;
}
#menu  ul ul a:hover{
	color:#fff;
}


div#menu ul ul,
div#menu ul li:hover ul
{display: none;}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul
{display: block;}


