/* CSS Document */

.menu {
z-index:auto;
margin:0px 0 50px 10px; /* this page only */
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
width:160px;
}
/* hack for IE5.5 */
* html .menu ul {margin-left:-16px; ma\rgin-left:0;}
/* position relative so that you can position the sub levels */
.menu li {
position:relative;
background:#efeedb;
height:26px;
}

/* get rid of the table */
.menu table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:auto; font-size:1em;}

/* style the links */
.menu a, .menu a:visited {
	display:block;
	text-decoration:none;
	height:25px;
	line-height:25px;
	width:160px;
	color:#4F0000;
	text-indent:5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	border-top: 1px solid #A3A28B;
	border-right: 0px solid #A3A28B;
	border-bottom: 1px solid #A3A28B;
	border-left: 0 solid #A3A28B;
	text-align: left;
}
/* hack for IE5.5 */
* html .menu a, * html .menu a:visited {
	background:#d4d8bd;
	width:160px;
	text-align: left;
}
/* style the link hover */
* html .menu a:hover {color:#fff; background:#4f0000;}

.menu :hover > a {
color:#fff; 
background:#C5C4B2;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
top:0;
left:161px;
border-top: 1px solid #A3A28B;
border-right: 1px solid #A3A28B;
border-bottom: 1px solid #A3A28B;
border-left: 1px solid #A3A28B; 
}
/* 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;
}