
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

#menuwrapper{
position:relative; 
width: 770px; 
height: 20px;
background: white; 
z-index:80;
text-align: right;
top: 7px;
}

.suckertreemenu ul{
margin: 0;
padding: 0;
list-style-type: none;
font-size: 10px;
}

/*Top level list items*/
.suckertreemenu ul li{
position: relative;
display: inline;
float: right;
background-color: white; /*this changed menu item background in FF*/
font-size: 10px;
}

/*Top level menu link items style*/
.suckertreemenu ul li a {
display: block;
width: auto; /*Width of top level menu link items*/
padding: 4px 4px 4px 7px;
text-decoration: none;
color: black; /*changed top menu text in FF & IE7*/
text-align: left;
background-color: white;/*this changed menu colour ok in IE6*/
font-size: 10px;
}

*html .suckertreemenu ul li a:visited {
color: white; /*changed top menu text in FF & IE7*/
background-color: #537258;/*this changed menu colour ok in IE6*/
border-right: 1px solid #a7b9a9;
font-size: 10px;
}

/*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;
background-color: gray;/*this changed border on dropdown items in FF & IE7*/
font-size: 10px;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
display: list-item;
float: none;
font-size: 10px;
}

/*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;
font-size: 10px;
}

/* Sub level menu links style */
.suckertreemenu ul li ul li a{
display: block;
width: 78px; /*width of sub menu levels*/
color: black;
text-decoration: none;
padding: 4px 4px 4px 6px;
margin-top: 1px;
background-color: #B9B9B9;
font-size: 10px;
}

.suckertreemenu ul li a:hover{
background-color: #818181;
color: white;
font-size: 10px;
}

*html .suckertreemenu ul li a:hover{
background-color: gray;
color: white;
font-size: 10px;
}

* 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;
font-size: 10px;
}
	
/* Holly Hack for IE \*/
* html .suckertreemenu ul li { float: left; height: 1%;}
* html .suckertreemenu ul li a { height: 1%;}
* html .suckertreemenu ul li ul li { float: left;}
/* End */