#WholeMenuBar
{
	clear: both;
	height:42px; 
	background-color: #8f2c2f;
}

.sahamenu ul{
margin: 0;
padding: 0;
font-size:10px;
line-height:20px;
font-weight:bold;
font-family:Tahoma;
list-style-type: none;
}

/*Top level list items*/
.sahamenu ul li{
position: relative;
display: inline;
float: left;
background-color: #722425; /*overall menu background color*/
}

/*Top level menu link items style*/
.sahamenu ul li a{
display: block;
font-size:10px;
width: 111px; /*Width of top level menu link items*/
padding: 1px 8px;
border: 1px solid #ccc;
border-left-width: 0;
text-decoration: none;
color: #fff;
}


/*1st sub level menu*/
.sahamenu ul li ul{
width:896px;
text-align:center;
margin-left:auto; margin-right:auto;
position: absolute;
top: 1em; /* no need to change, as true value set by script */
display: inline;
visibility: hidden; /* Should be hidden */
}

.sahamenu ul li ul li{
position: relative;
width:140px;
display: inline;
float: left;
line-height: 15px;
background-color: #722425; /*overall menu background color*/
}

/* Sub level menu links style */
.sahamenu ul li ul li a{
display: block;
width:140px;
background-color:#8f2c2f;
color: #fff;
border: none;
text-decoration: none;
}

.sahamenu ul li a:hover{
color: white;
text-decoration:underline;
}

/*Background image for top level menu list links */
.sahamenu .mainfoldericon{
background: #722425 url(arrow-down.gif) no-repeat center right;
}

.sahamenu .uppercolour
{
background-color: #722425;
}

.sahamenu .lowercolour
{
background-color:#8f2c2f;
}
	
/* Holly Hack for IE \*/
* html .sahamenu ul li { float: left; height: 1%; }
* html .sahamenu ul li a { height: 1%; }
/* End */


