.menu {
	position: absolute;
	top: 160px; left: 0px;
	width: 170px;
	font-size: 10px;
	}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul.navigation {
	margin: 0; padding: 0;
	list-style-type: none;
	}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float: left;
	width: 170px;
	}

.menu li.sub {
	float: left;
	width: 117px;
	margin-left: 48px;
	margin-bottom: 5px;   
	border-bottom: 1px solid #FFF;
	}

.menu li.sub a {
	font-weight: normal;
	line-height: 18px;
	}
/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {
	position: absolute; 
	top: 0; left: 0; 
	border-collapse: collapse;
	}

/* style the top level hover */
.menu a.link:hover { 
	color: #000;
	}

* html .menu a.link:hover { 
	color: #000;
	}

.menu :hover > a.link {
	color: #000;
	}
