@charset "utf-8";
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

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

/*Top level list items*/
.suckertreemenu ul li{
	position: relative;
	display: inline;
	float: left;
	margin-left: 0px;
	height: 15px;
	font-size: 1em;
	line-height: 1.1em;
	width: auto;
	font-family: Geneva, Arial, Helvetica, sans-serif;
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
	display: block;
	width: auto;
	text-decoration: none;
	color: #000000;
	padding-right: 8px;
	margin-right: 9px;
	margin-left: 5px;
	height: 15px;
	padding-top: 1px;
	padding-bottom: 1px;
	font-weight: bold;
}
	
/*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;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
	display: list-item;
	float: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: 15px;
}

/*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: 0;
}

/* Sub level menu links style */
.suckertreemenu ul li ul li a{
	display: block;
	width: 160px; /*width of sub menu levels*/
	color: #000000;
	text-decoration: none;
	padding-top: 3px;
	padding-right: 5px;
	padding-bottom: 3px;
	padding-left: 5px;
	margin-top: 3px;
	margin-bottom: 3px;
}

.suckertreemenu ul li a:hover{
	color: #38635E;
}

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

/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{
background: #F3F3F3 url(media/arrow-right.gif) no-repeat center right;
}

* 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%; }

