/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.suckertreemenu ul
{
	margin:0px;
	padding:0px;
	width:960px;
	list-style-type: none;
	text-align:left;
	border:0px solid red;
}

/*Top level list items*/
.suckertreemenu ul li{
	margin: 0px;
	font-family:Arial,Verdana;
	font-size:11.5px;
	position: relative;
	display: inline;
	float: left;

}
.suckertreemenu1{
	display: block;
	border-left-width: 0;
	text-decoration: none;
	color: #F5E6ED;
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
display: block;
border-left-width: 0;
text-decoration: none;
color: #F5E6ED;
}

	
/*1st sub level menu*/
.suckertreemenu ul li ul
{
	left: 0px;
	position: absolute;
	width: 166px;
	background-color:#A54E71;
	padding-top:3px;
	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{
	width: 166px;
	display: list-item;
	font-family:Arial,Verdana;
	font-size:11px;
	line-height:15px;
	border-bottom:1px solid #D79AB2;
	float: none;
}

/*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 */
display: list-item;
width: 166px;
top: 0;
}


/* Sub level menu links style */
.suckertreemenu ul li ul li a{
display:block;
width:155px;
*width:166px;/*width of sub menu levels*/
height:35px;
color: #F5E6ED;
text-decoration: none;
padding: 1px 5px;
}

/* Sub level menu links style */
.suckertreemenu ul li ul li ul li a
{
	display: block;
	width: 155px;
	*width: 166px;/*width of sub menu levels*/
	height:25px;
	color: #F5E6ED;
	text-decoration: none;
	padding: 1px 5px;
}
.suckertreemenu ul li a:hover
{
	background-color: #772948;
	color: #F5E6ED;
}
* 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 */