#menu{
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
#menu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
#menu ul li{
position: relative;
display: block;
float: left;
}

/*Top level menu link items style*/
#menu ul li a{
display: block;
width: 105px; /*Width of top level menu link items*/
/*padding: 1px 15px;*/
text-decoration: none;
color: #003E7E;
outline: none;
}

/*Top level menu link items custom padding*/
.prod{
	position: relative;
	margin-left: 30px;
}

.net{
	position: relative;
	margin-left: 40px;
}

.mas{
	position: relative;
	margin-left: 10px;
}
	
/*1st sub level menu*/
#menu ul li ul{
left: 0;
position: absolute;
top: 1em; /* no need to change, as true value set by script */
display: block;
visibility: hidden;
}

.sub{
	position: relative;
	margin-top: 5px;
}

/*Sub level menu list items (undo style from Top level List Items)*/
#menu ul li ul li{
display: list-item;
float: none;
color: #646464;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
#menu ul li ul li ul{ 
left: 159px; /* no need to change, as true value set by script */
top: 0;
}

/* Sub level menu links style */
#menu ul li ul li a{
display: block;
width: 170px; /*width of sub menu levels*/
color: #646464;
text-decoration: none;
}

#menu ul li a:hover{
/*color: #327E24;*/
color: #C2CD23;
}

#menu ul li ul li a:hover{
/*color: #327E24;*/
color: #C2CD23;
}

* html p#iepara{ /*For a paragraph (if any) that immediately follows suckertree 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 */