.menu {
	z-index: 100;
	}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul.navigation {
	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 {
	float: left;
	width: 180px;
	position: relative;
	border: 1px solid #94002D;
	margin-bottom: 5px;
	}

.menu li.sub {
	float: left;
	width: 170px;
	border: 1px solid #000;
	background: #FFF3DE;
	margin-left: 0px;
	}

* html .menu li.sub {
	float: left;
	width: 170px;
	margin-left: 0px;	
	}

.menu li.sub2 {
	float: left;
	width: 160px;
	border: 1px solid #000;
	background: #F1F1F1;
	margin-left: 0px;
	}

* html .menu li.sub2 {
	float: left;
	width: 160px;
	margin-left: 0px;	
	}

/* style the links for the top level */
.menu a:link, .menu a:visited {
	display: block;
	padding-left: 8px;
	color: #000; 
	font-size: 12px;
	font-weight: bold;
	text-decoration: none; 
	width: 172px; 
	line-height: 21px;
	}
	
.menu a.activ {
	color: #000;
	background: #9AB3CE; 
	}
	
* html .menu a {
	font-size: 12px;
	}

.menu table {
	position: absolute; 
	top: 0; left: 0; 
	border-collapse: collapse;
	}

/* style the top level hover */
.menu a.link:hover { 
	color: #000;
	background: #9AB3CE; 
	}

* html .menu a.link:hover { 
	color: #000;
	background: #9AB3CE;
	}

.menu :hover > a.link {
	color: #000;
	background: #9AB3CE; 
	}
