/* To add an individual left border */
.suckertreemenu-borderleft {
	border-left: 0px;
	border-left-style: solid;
	border-left-color: #404040;
	z-index: 15;
}

.suckertreemenu-bordertop {
	border-top: 1px;
	border-top-style: solid;
	border-top-color: #404040;
	z-index: 15;
}

.suckertreemenu ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	z-index: 15;
	position: relative;
	top: -1px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	z-index: 15;
}

/*Top level list items*/
.suckertreemenu ul li{
	position: relative;
	display: block;
	float: left;
	background-color: #C3BB8A; /*overall menu background color*/
	font-weight: bold;
	z-index: 15;
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
	display: block;
	width: 80px;
	color: #404040;
	text-decoration: none;
	padding-top: 1px;
	padding-bottom: 1px;
	padding-right: 5px;
	padding-left: 5px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-top-color: #404040;
	border-right-color: #404040;
	border-bottom-color: #404040;
	text-decoration: none;
	z-index: 15;
}

/*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;
	z-index: 15;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
	display: list-item;
	float: none;
	left: -1px; /*This makes the boarders level, may want to remove if no borders*/
	font-weight: normal;
	z-index: 15;
}

/*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: -1px; /*default 0px set to -1px if border top on first link in 3rd level flyout*/
	z-index: 15;
}

/* Sub level menu links style */
.suckertreemenu ul li ul li a{
	display: block;
	width: 95px; /*width of sub menu levels*/
	font-size: 11px;
	color: #404040;
	background-color: #C3BB8A;
	text-decoration: none;
	padding-top: 1px;
	padding-bottom: 1px;
	padding-right: 5px;
	padding-left: 5px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #404040;
	border-bottom-color: #404040;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #404040;
	border-top-width: 0px;
	text-decoration: none;
	z-index: 15;
}

.suckertreemenu ul li a:hover{
	background-color: #D5CFAD;
	color: #404040;
	z-index: 15;
}

.suckertreemenu-noborderright {
	border-right: 0px;
	z-index: 15;
}

/*Background image for top level menu list links */
.suckertreemenu .mainfoldericon{
	/*background-color: #376386;*/
	background: url(graphics/arrow-down.gif) no-repeat center right;
	z-index: 15;
}

/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{
	/*background-color: #C3BB8A;*/
	background-image: url(graphics/arrow-right.gif);
	background-repeat: no-repeat;
	background-position: right center;
	z-index: 15;
}

* 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 */
