.menu {
	font-face: verdana;
	font-size: 11px;
	z-index: 100;
	list-style-type: none;
	}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul.navigation {
	margin: 0; padding: 0;
	list-style-type: none;
	margin-bottom: 30px; 
	}

/* 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: 230px;
	position: relative;
	border-bottom: 1px solid #5991A7;
	}

.menu li.sub {
	float: left;
	width: 230px;
	border-bottom: 1px solid #5991A7;
	background: #F1F1F1;
	}

* html .menu li.sub {
	float: left;
	width: 230px;
	}

.menu li.sub2 {
	float: left;
	width: 230px;
	border-bottom: 1px solid #5991A7;
	background: #E0E0E0;
	}

* html .menu li.sub2 {
	float: left;
	width: 230px;
	}

/* style the links for the top level */
.menu li a {
	display: block;
	color: #5991A7; 
	font-size: 12px;
	font-weight: normal;
	text-decoration: none; 
	padding-left: 20px;
	line-height: 31px;
	}

.menu li.sub a {
	display: block;
	color: #497D94; 
	font-size: 11px;
	font-weight: normal;
	text-decoration: none; 
	padding-left: 30px;
	line-height: 21px;
	}

.menu li.sub2 a {
	display: block;
	color: #39667D; 
	font-size: 11px;
	font-weight: normal;
	text-decoration: none; 
	padding-left: 40px;
	line-height: 21px;
	}

.menu a.activ, .menu li.sub a.activ, .menu li.sub2 a.activ {
	color: #FFF;
	background: #5991A7; 
	}
	
* html .menu a {
	font-size: 12px;
	}

/* 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: #FFF;
	background: #5991A7; 
	}

* html .menu a.link:hover { 
	color: #FFF;
	background: #5991A7;
	}

.menu :hover > a.link {
	color: #FFF;
	background: #5991A7; 
	}