@charset "UTF-8";
/* CSS Document */

.menu {
	width:960px; 
	height:54px; 
	position:relative; 
	z-index:100;
	font-family: Arial, Helvetica, sans-serif;
}

/* hack to correct IE5.5 faulty box model */
* html .menu {
	width:961px; 
	w\idth:960px;
}

/* 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:auto;
}

/* 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: auto;
	position:relative;
}

/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	width:auto;
	height:54px;
	text-decoration: none;
	color: #FFFFFF;
	font-size: 12px;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width:auto; 
	w\idth:auto;
}

/* 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:54px;
	left:0;
	width:149px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
	top:52px;
	t\op:53px;
}

/* 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 {
	background:#f5fae7; 
	color:#576629;
	font-weight: bold;
	height:auto; 
	line-height:1em; 
	padding:8px 12px; 
	width:170px;
	filter:alpha(opacity=95);
	-moz-opacity:0.95;
	-khtml-opacity: 0.95;
	opacity: 0.95;	
}

/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {
	width:150px; 
	w\idth:128px;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover {
	color:#576629; 
	background:#DCE5C2;
	font-weight:bold;
}
.menu :hover > a, .menu ul ul :hover > a {
	color:#576629; 
	background:#DCE5C2;
	font-weight:bold;
}

/* 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; 
}

/**************************************************************/
/*  Custom code here */
.submenuitem {
	border-left: solid 1px #576629;
	border-right: solid 1px #576629;
}
