#menu ul{
margin: 0;
padding: 0;
list-style-type: none;

}

/*Top level list items*/
#menu ul li{
position: relative;
display: inline;
float: left;

}

/*Top level menu link items style*/
#menu ul li a{
display: inline;
padding: 0px 20px;
text-decoration: none;
background: url(menubg.gif) center center repeat-x;
font: bold 18px/31px Verdana, Arial, Helvetica;
line-height: 30px;
}
	
/*Sub level menu*/
#menu ul li ul{
left: 0;
top: 0;

position: absolute;
display: block;
visibility: hidden;

text-align: left;

z-index: 100;
}

/*Sub level menu list items*/
#menu ul li ul li{
display: inline;
float: none;

}


/* Sub level menu links style */
#menu ul li ul li a{
display: block;
width: 160px; /*width of sub menu levels*/
font-weight: normal;
padding: 5px 5px;
font: bold 12px/14px Verdana, Arial, Helvetica;
background: url(/images/DefTemplate/menu_back.gif) center center repeat-y;

}

#menu ul li a:hover{

}

#menu ul li ul li a:hover{
background: url(/images/DefTemplate/menu_back.gif) center center repeat-y;
}

#menu .bullet{
position: absolute;
right: -10px;
}

* html p#iepara{ /*For a paragraph (if any) that immediately follows menu, add 1em top spacing between the two in IE*/
padding-top: 1em;
}
	
/* Holly Hack for IE \*/
* html #menu ul li { float: left; height: 1%; }
* html #menu ul li a { height: 1%; }
/* End */