.menu ul{
margin: 0;
padding: 0;
list-style-type: none;
width: 183px; /* Width of Menu Items */
border:none;
border-style:solid;
border-width:0px;

}
	
.menu ul li{
position: relative;
height:26px;

}
	
/*Sub level menu items */
.menu ul li ul{
position: absolute;
 /*sub menu width*/
top: 0;
visibility: hidden;
height:26px;
}

/* Sub level menu links style */
.menu ul li a{
	display: block;
	overflow: auto; /*force hasLayout in IE7 */
	list-style:none;
	font-family:Arial;
	font-size:14px;
	color:#7A0096;
	list-style-position:outside;
	font-weight:bold;
	height:26px;
	text-align:left;
	vertical-align:middle;
	display:block;
	background-image:url(../images/mainbgmenu.png);
	background-repeat:repeat-y;
	padding-left:35px;
	padding-top:3px;
	text-decoration:none;
}

.menu ul li a:visited{
	color:#7A0096;
	height:26px;
}

.menu ul li a:hover{
background-image:url(../images/bgmenu.png);
	background-repeat:no-repeat;
	color:#FF0099;
	
}
	
/* Holly Hack for IE \*/
/* * html .menu ul li { float: left; height: 100%; }
* html .menu ul li a { height: 100%; } */
/* End */