.menu {
	height:62px; 
	font-size:0.85em; 
	position:relative; 
	z-index:100;
	float:left;
}


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

.menu ul ul {
	width:104px;
}

/* 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:104px;
	position:relative;
	text-align:center;
}

/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:11px;
	text-decoration:none;
	color:#555555;
	width:104px;
	height:62px;
	line-height:61px;
	overflow:hidden;
	background:url(/img/btnBG.png) top left no-repeat;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	/*height:0;*/
	top:62px;
	left:2px; 
	width:102px;
}


/* 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 ul li a:hover {
	color:#555555;
	background:url(/img/btnBG.png) bottom left no-repeat;
}

.menu :hover > a{
	color:#555555;
	background:url(/img/btnBG.png) bottom left no-repeat;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	color:#000;
	height:12px;
	line-height:12px;
	padding:7px 0px; 
	width:103px;
	font-size:10px;
	background:url(/img/subBG.png) repeat;
}

.menu ul ul a:hover, .menu ul ul a:hover {
	/*background:url(/img/subBG.png) repeat;*/
	background:none;
	color:#000000;
	background-color:#FFFFFF;
}


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

.menu a.contact, menu a:visited.contact {
	width:106px;
}