.menu {
	color: #366886;
	position:relative;
	z-index:1000;
	font-size:11px;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	width:186px;
}
.menu li {
	position:relative;
}
/* get rid of the table */
.menu table {
	position:absolute;
	top:0;
	left:0;
	z-index:100;
}
/* style the links */
.menu a, .menu a:visited {
	display:block;
	text-decoration:none;
	height:20px;
	line-height:20px;
	width:180px;
	color:#366886;
	font-weight: normal;
	font-style: normal;
}
.menu .active a {
	font-weight: bold;
	font-style: normal;
}
/* style the link hover */
.menu a:hover {
	color:#366886;
	font-style: italic;
	background-color: #FFFFFF;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	top:0;
	left:186px;
}
/* make the second level visible when hover on first level list OR link */
.menu ul :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;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover 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;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul {
	visibility:visible;
}
