.menu {
	width: 245px;
	font-size: 10px;
	}

.menu h2 {
	padding-left: 20px;
	}

.menu ul.navigation {
	margin: 0; padding: 0;
	list-style-type: none;
	}

.menu ul ul {
	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 {
	width: 245px;
	background: #16A992;
	margin-bottom: 4px;
	}

.menu li.sub {
	width: 245px;
	background: #16A992;
	margin-bottom: 4px;
	}

.menu li.sub2 {
	background: #16A992;
	margin-bottom: 4px;
	width: 245px;
	}

/* style the links for the top level */
.menu li a {
	display: block;
	color: #FFF; 
	font-size: 14px;
	font-weight: normal;
	text-decoration: none; 
	padding-left: 20px;
	line-height: 32px;
	}

.menu li.sub a {
	display: block;
	color: #FFF; 
	font-size: 12px;
	font-weight: normal;
	text-decoration: none; 
	padding-left: 40px;
	line-height: 26px;
	}

.menu li.sub2 a {
	display: block;
	color: #FFF; 
	font-size: 11px;
	font-weight: normal;
	text-decoration: none; 
	padding-left: 60px;
	line-height: 24px;
	}

.menu a.activ, .menu li.sub a.activ, .menu li.sub2 a.activ {
	color: #000;
	}
	
/* hide the sub levels and give them a position absolute so that they take up no room */
.menu ul ul {
	width: 122px;
	}

/* 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;
	font-weight: normal;
	}

* html .menu a.link:hover { 
	color: #000;
	font-weight: normal;
	}

.menu :hover > a.link {
	color: #000;
	font-weight: normal;
	}

