/* 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 {
	color: #333333;
	text-decoration: none;
	padding: 0px 9px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:normal;
	border-right: 1px solid #CCCCCC;	
}
	
/*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:#FFFFFF;
}

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

/*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: 165px; /*width of sub menu levels*/
	color: #7c278c;
	text-decoration: none;
	height:18px;
	padding-top:3px;
	border: 1px solid #DDDDDD;
	text-align:left;
	font-size:12px;
}

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

.buttons ul li a:hover {
	color: #7c278c;
}

/*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 {
	background-image:url(../images/icon-dots.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 */




