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

/* style the links for the top level */
.menu a, .menu a:visited {
	display: block;
	font-size: 12px;
	text-decoration: none;
	color: #fff;
	height: 20px;
	line-height: 18px;
	}

/* 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: 30px;
	left: 49px;
	}



/* style the dropdown links */
.menu ul ul a, .menu ul ul a:visited {
	background: #331206;
	color: #ffffff;
	padding: 5px 10px;
	width: 128px;
	border-top: 1px #ffffff solid;
	}


/* style the top level hover */
.menu a:hover, .menu ul ul a:hover {
	color: #ffffff;
	text-decoration: underline;
	background: #331206;
	}

.menu :hover > a, .menu ul ul :hover > a {
	color: #ffffff;
	background: #331206;

	}

/* 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; 	}

/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul { visibility: hidden; 	}

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