
.suckertreemenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level menu*/
.suckertreemenu ul li{
position: relative;
display: inline;
float: left;
/*background-color: #006CBF; 		/*Background color of top level*/
background: url(/images/menu_bg.jpg) center center repeat-x;
}

/*Top level menu link style*/
.suckertreemenu ul li a{
display: block;
width: 100px; 					/*Width of top level*/
padding: 10px 5px;
border: 1px solid red;
border-left-width: 0;
border-top-width: 0;
border-bottom-width: 0;
text-decoration: none;
font: bold 12px Verdana;		/*Text style of top level*/
color: red;					/*Text color of top level*/
white-space: nowrap;
text-align: center;
}
	
/*1st sub level menu*/
.suckertreemenu ul li ul{
left: 0;
position: absolute;
top: 1em; /* no need to change, as true value set by script */
display: block;
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li ul{
display: list-item;
float: none;
margin-bottom: 0px;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.suckertreemenu ul li ul li ul{ 
left: 159px; /* no need to change, as true value set by script */
top: 0;
margin-left: -1px;
}

/* Sub level menu links style */
.suckertreemenu ul li ul li a{
	display: block;
	width: 170px; 					/*Width of sub levels*/
	background-color: #F2F2F2;		/*Background of sub levels*/
	color: navy;					/*Text color of sub levels*/
	text-decoration: none;
	padding: 5px 5px;
	border: 1px solid #ccc;
	border-top: 0;
	text-align: left;
	white-space: normal;
}

/* Border top for menu */
.firstmenu {
border-top: 1px solid #ccc;
}


/* Top Level menu - hover */
.suckertreemenu ul li a:hover{
/* background-color: #81B6E0;		/*Background color of top level - hover*/
background: url(/images/menu_bg_over.jpg) center center repeat-x;
color: white;					/*Text color of top level - hover*/
}

.suckertreemenu ul li ul a:hover{
background: red;			/*Background of sub level - hover*/
color: white;					/*Text color of sub level - hover*/
}

/*Background image for top level menu list links */
.suckertreemenu .mainfoldericon{
background: url(spacer.gif) no-repeat center right;
}

/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{		
background: #F2F2F2 url(arrow-right.gif) no-repeat center right;	/*Background of sub level - arrow*/
}

/* Background for activated button */
body#home a#home, 
body#products a#products,
body#HighfiveSports a#HighfiveSports,
body#high5 a#high5,
body#contact a#contact
{
background-color: #76b0ea;		/*Background for activated button*/
background: url(/images/menu_bg_over.jpg) center center repeat-x;
color: white;
}

* 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 .suckertreemenu ul li { float: left; height: 1%; }
* html .suckertreemenu ul li a { height: 1%; }
/* End */


