/* CSS Document */

/* HORIZONTAL DROP DOWN MENU */




#bottommenu ul {
list-style: none;
margin: 0;
padding: 0;
float: left; /* this makes the first UL horizontal */
margin-left: 10px;
}


#bottommenu .item1 { width: 222px; }
#bottommenu .item2 { width: 222px; }
#bottommenu .item3 { width: 222px; }
#bottommenu .item4 { width: 212px; }

/*  COLOURING ETC */

#bottommenu a {
text-decoration: none;
display: block;
}


#bottommenu  h2, #bottommenu  h3 {
margin: 0;
}

#bottommenu h2 a, #bottommenu h3 a {
font-family: arial, helvetica, sans-serif;
font-size: 8pt;
line-height: 11pt;
color: #FFFFFF;
font-weight: normal;
margin: 0;
padding-top: 5px;
padding-left: 10px;
padding-bottom: 5px;
}

/*
#bottommenu .item1 h2 a {
background-image: url(images/bottom-button-clear950.gif);
background-repeat: no-repeat;
background-position: top left;
}

#bottommenu ul ul.item1 {
	height: 278px;
	background-color: #61742a;
	border-bottom: 1px solid #8c9b3c;
	background-image: url(images/bottom-button-background950.gif);
	background-repeat: repeat-y;
}

#bottommenu .item1 h3 a {
	background-image: url(images/bottom-button-clear950.gif);
	background-repeat: no-repeat;
	background-position: top left;
}
*/

#bottommenu .item1 h2 a, #bottommenu .item2 h2 a, #bottommenu .item3 h2 a, #bottommenu .item4 h2 a {
border-bottom: 1px solid #6e8232;
background-image: url(images/bottom-button950.gif);
background-position: top left;
background-repeat: no-repeat;

}

#bottommenu ul ul.item1, #bottommenu ul ul.item2, #bottommenu ul ul.item3, #bottommenu ul ul.item4 {
	height: 279px;
	background-color: #8c9b3c;
	background-image: url(images/bottom-button950.gif);
	background-position: top left;
	background-repeat: no-repeat;

}

#bottommenu .item1 h3 a, #bottommenu .item2 h3 a, #bottommenu .item3 h3 a, #bottommenu .item4 h3 a {
border-bottom: 1px solid #6e8232;
}

#bottommenu h2 a:hover, #bottommenu h3 a:hover  {
text-decoration: none;
color: #c9d293;
}




/*   -------- positioning the SUBMENUS --------------

The position: relative; on the <li> elements establish containing blocks for the descendant <ul> elements.

All secondary levels and deeper are given position: absolute; and a high z-index in order to make them appear, drop down above following content. the third level and deeper lists are the ones we want to move so "offset" positioning co-ordinates only required to be input onto them.
*/

#bottommenu li {
position: relative; }

#bottommenu ul ul {
position: absolute;
z-index: 500;
}

#bottommenu ul ul  {
top: -275px;
left: -10px;
}



/*   -------- HIDING AND REVEALING --------------*/

div#bottommenu ul ul,
div#bottommenu ul li:hover ul ul,
div#bottommenu ul ul li:hover ul ul
{display: none;}

div#bottommenu ul li:hover ul,
div#bottommenu ul ul li:hover ul,
div#bottommenu ul ul ul li:hover ul
{display: block;}



/* FIX FOR IE  */
body {
behavior: url(csshover.htc);
font-size: 100%;
}

#bottommenu ul li {float: left; width: 100%;}
#bottommenu ul li a {height: 1%;} 


