/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

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

/*Top level list items*/
.suckertreemenu ul li{
	position: relative;
	float: left;
	display: inline;
	width: auto;
	background-color:#3d479d;
	background: url(../pix/nav_bkg.jpg) center center repeat-x;
	border-right-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: none;
	border-right-color: #5C66BF;
	padding-top: 1px;
	padding-bottom: 1px;
}


/*Top level menu link items style*/
.suckertreemenu ul li a{
	display: block;
	width: auto; /*Width of top level menu link items*/
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	color: #EBECFA;
	padding-top: 5px;
	padding-right: 13px;
	padding-bottom: 5px;
	padding-left: 13px;
}
	
/*1st sub level menu*/
.suckertreemenu ul li ul{
	position: absolute;
	top: 1em; /* no need to change, as true value set by script */
	display: block;
	width: auto;
	visibility: hidden;
	text-align:left;
}

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


/* Sub level menu links style */
.suckertreemenu ul li ul li a{
	width: 125px; /*width of sub menu levels*/
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	padding-top: 3px;
	padding-bottom: 3px;
}

.suckertreemenu ul li a:hover{
	background-color: #7F88DB;
	background: url(../pix/nav_bkg_on.jpg) center center repeat-x;
	color: #EBECFA;
}

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

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