/* MENU */

.buttons ul {
	margin:0;
	padding: 0px;
	list-style-type: none;
}

/*Top level list items*/
.buttons ul li {
	position: relative;
	display: inline;
	float: left;
}

/*Top level menu link items style*/
.buttons ul li a {
	text-decoration: none;
	padding: 0px 5px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:normal;
	color:#3b3b3b;
	border-right: 1px solid #999999;
}

/*1st sub level menu*/
.buttons ul li ul {
	left: 0;
	position: absolute;
	top: 1em; /* no need to change, as true value set by script */
	display: block;
	visibility: hidden;
	background-color:#f6f6f6;
}

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

/*All subsequent sub menu levels offset after 1st level sub menu */
.buttons ul li ul li ul { 
	left: 159px; /* no need to change, as true value set by script */
	top: 0;
}

/* Sub level menu links style */
.buttons ul li ul li a {
	display: block;
	width: 170px; /*width of sub menu levels*/
	color: #3b3b3b;
	text-decoration: none;
	padding:3px 5px;
	border: 1px solid #DDDDDD;
	text-align:left;
	font-size:11px;
}

.buttons ul li ul li a:hover {
	background-color:#666666;
	color:#FFFFFF;
}

.buttons ul li a:hover {
	color: #3b3b3b;
	text-decoration:underline;
}

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

/*Background image for subsequent level menu list links */
.buttons .subfoldericon {
	list-style-image: url(http://www.hwb-accountants.co.uk/images/icon-sub-menu.gif);
	background-position:right;
	background-repeat:no-repeat;
}

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

/* Holly Hack for IE \*
* html .buttons ul li { float: left; height: 1%;}
* html .buttons ul li a { height: 1%;}
* html .buttons ul li ul li { float: left;}
/* End */
