/* CSS Document */

/* HORIZONTAL DROP DOWN MENU */

#menu {
	position: relative;
	float: left;
	margin-top: 25px;
	width: 508px;
	background-color: #492742;
}


#menu ul {
list-style: none;
margin: 0;
padding: 0;
float: left; /* this makes the first UL horizontal */
background-color: #784f6d;
}

#menu ul ul, #menu ul ul ul {
		background-color: #492742;
}

	
/*  COLOURING ETC */

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


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

#menu h2 a, #menu h3 a {
font-weight: normal;
text-align: center;
padding: 5px 10px 5px 10px;
color: #ffffff;
}

#menu h2 a {
font-size: 10pt;
-moz-border-radius-topleft: 7px 7px;
border-top-left-radius:  7px 7px;
-moz-border-radius-topright: 7px 7px;
border-top-right-radius:  7px 7px;
background-color: #492742;
}
#menu h3 a {
font-size: 9pt;
}


#menu h2 a:hover, #menu h3 a:hover, #menu .down  {
text-decoration: none;
color: #8b6982;
}





/*   -------- 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.
*/

#menu li {
position: relative; }

#menu ul ul {
position: absolute;
z-index: 500;
width: 100%;
}

#menu ul ul ul {
top: 0;
left: 100%;
}

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

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

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

