.menu {
width:820px;
	height:25px;
	position:relative;
	z-index:100;
	font-family:Arial, Helvetica, sans-serif;
}

/* hack to correct IE5.5 faulty box model */
* html .menu {width:820px; w\idth:819px;}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
}

.menu ul ul {
width:100px;
}

/* 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:100px;
position:relative;
}

/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:10px;
	text-align:center;
	text-decoration:none;
	color:#000;
	width:100px;
	height:25px;
	line-height:2.4em;
	font-weight:normal;
	background-color: #f1f1f1;
	
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:111px; 
w\idth:100px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background:#f1f1f1;
}

/* style the second level hover */
.menu ul ul a.drop:hover{
background:#b4bf01;
}
.menu ul ul :hover > a.drop {
background:#b4bf01;
}


/* 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:25px; 
left:0;
width:100px;
}

/* another hack for IE5.5 */
* html .menu ul ul {
top:26px;
t\op:27px;
}


/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0; border-collapse:collapse;;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	color:#000;
	height:25px;
	line-height:2.4em;
	text-align:center;
	width:100px;
	padding-top:4px;
	background-color: #f1f1f1;
	
	
		
}

/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {
width:101px;
w\idth:100px;}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	color:#fff;
	background-color: #b4bf01;
}
.menu :hover > a, .menu ul ul :hover > a {
color:#fff; 
background:#b4bf01;
}

/* 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; 
}


