/* CSS Document */

.treemenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.treemenu ul li{
position: relative;
display: inline;
float: left;
color:#666666;
background-color: #FFFFFF; /*overall menu background color*/
}

/*Top level menu link items style*/
.treemenu ul li a{
display: block;
width: 90px; /*Width of top level menu link items*/
padding: 1px 0px;
border: 0px solid #999999;
text-decoration: none;
color:#000000;}

.treemenu ul li a:hover{
background-color:#FFFFFF ;
color:#458729; }

.treemenu ul li a:visited{
background-color: #ffffff;
color:#666666; }
	
/*1st sub level menu*/
.treemenu 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)*/
.treemenu ul li ul li{
display: list-item;
float: none;
height:12px;
color:#666666;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.treemenu ul li ul li ul{ 
left: 159px; /* no need to change, as true value set by script */
top: 0;
margin-bottom:0px;
margin-top:0px;

}

/* Sub level menu links style */
.treemenu ul li ul li a{
display: block;
width: 110px; /*width of sub menu levels*/
color:#000000;
text-decoration: none;
padding:0px 5px;
margin-bottom:0px;
margin-top:0px;
border: 1px solid #ccc;
font-size:10px;}

.treemenu ul li ul li a:hover{
background-color:#333333; color:#FFFFFF;}

.treemenu ul li ul li a:visited{
background-color:#FFFFFF; color:#666666;}

.treemenu ul li ul li ul li a:hover{
background-color:#333333; color:#FFFFFF;}



/*Background image for top level menu list links */
.treemenu .mainfoldericon{
background: #FFFFFF url(images/arrow-down.gif) no-repeat center right;}

/*Background image for subsequent level menu list links */
.treemenu .subfoldericon{
background: #FFFFFF url(images/arrow-right.gif) no-repeat center right;}

* html p#iepara{ /*For a paragraph (if any) that immediately follows tree menu, add 1em top spacing between the two in IE*/
padding-top: 1em;}
