.menu {
	width:475px;
	font-size:0.85em;
	position: relative;
	z-index:100;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul, .menuB ul {
padding:0;
margin: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, .menuB li {
	float:left;
	position:relative;
	width: auto;
	padding-right: 5px;
	padding-left: 5px;
}
/* style the links for the top level */
.menu a, .menu a:visited, .menuB a, .menuB a:visited {
	/*display:inline-block;*/
	color:#996633;
	height: auto;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited, * html .menuB a, * html .menuB a:visited  {
	height: 0px;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul, .menuB ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:16px;
	left:0;
	width:114px;
}
/* another hack for IE5.5 */
* html .menu ul ul, * html .menuB ul ul {
	top:16px;
	t\op:16px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table, .menuB table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited, .menuB ul ul a, .menuB ul ul a:visited {
	color:#FFFFFF;
	height:auto;
	line-height:1em;
	padding:5px;
	width:104px;
	display: block;
	background-color: #666666;
	}

/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menuB ul ul a{
width:104px;
w\idth:104px;
}

/* style the top and second level hover */
.menu a:hover, .menuB a:hover {
	text-decoration: none;
	color: #666666;
}

.menu a:hover, .menuB a:hover {
	text-decoration: none;
	background-color: #666666;
	color: #FFFFFF;

}

/* keep FF color */
.menu :hover > a, .menuB :hover > a {
	text-decoration: none;
	background-color: #666666;
	color: #FFFFFF;

}
.menu ul ul a:hover, .menuB ul ul a:hover{
	background-color: #C48F24;
	color: #FFFFFF;
}

/* keep FF color */
.menu ul ul :hover > a, .menuB ul ul :hover > a {
	background-color: #C48F24;
	color: #FFFFFF;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul, .menuB ul li:hover ul,
.menuB ul a:hover ul {
visibility:visible; 
}


/* secondMenu */
.menuB {
	width:475px;
	font-size:0.85em;
	z-index:50;
	position: relative;
}
