.menu_horizontal ul{
margin: 0;
padding: 0;
list-style-type: none;
height:22px;
}

/*Top level list items*/
.menu_horizontal ul li{
 position: relative;
 display: inline;
 float: left;
 text-align: left;
 font-family: Arial;
 height:22px;
 font-size:10px;
 color: #FFFFFF;
 border-right: 1px solid white;
}

/*Top level menu link items style*/
.menu_horizontal ul li a{
 display: block;
 width: 80px; /*Width of top level menu link items*/
 padding-left:5px;
 padding-top: 5px;

 height: 22px;
 color: #FFFFFF;
 background-color: #323941; /*overall menu background color*/
 background-image: url(../image/spacer.gif); /*overall menu background color*/
}

/*1st sub level menu*/
.menu_horizontal ul li ul{
 left: 0;
 position: absolute;
 top: 0em; /* no need to change, as true value set by script */
 display: block;
 width: 130px; /*Width of top level menu link items*/
 visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.menu_horizontal ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.menu_horizontal 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_horizontal ul li ul li a{
 display: block;
 width: 200px; /*width of sub menu levels*/
 color: #FFFFFF;
 text-decoration: none;
 padding-top: 4px;
 padding-left: 5px;
 border: 0px;
 font-family: Arial;
 font-size:11px;
 text-transform:none;
 vertical-text:middle;
}

.menu_horizontal ul li a:hover{
background-color: #FF9900;
color: white;
}

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

/*Background image for subsequent level menu list links */
.menu_horizontal .subfoldericon{
background: #F3F3F3 url(../image/arrow-right.gif) no-repeat center right;
}

* 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_horizontal ul li { float: left; height: 1%; }
* html .menu_horizontal ul li a { height: 0%; }
/* End */
