/* CSS Document */

/* HORIZONTAL DROP DOWN MENU */



#menu {
	position: relative;
	float:left;
	height: 30px;
	width: 465px;
	padding-left: 250px;
	position: relative;
	z-index: 1;
}

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


#menu .item1 { width: 55px; }
#menu .item2 { width: 55px; }
#menu .item3 { width: 75px; }
#menu .item4 { width: 110px; }
#menu .item5 { width: 60px; }
#menu .item6 { width: 55px; }
#menu .item7 { width: 55px; }








/*  COLOURING ETC */

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


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

#menu h2 a, #menu h3 a {
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
font-weight: normal;
text-align: center;
color: #ffffff;
}

#menu h2 a {
padding-top:8px;
border-right: 1px solid #ffffff;
}

#menu h3 a {
border-top: 2px solid #666666;
padding: 4px;
background-color: #333333;
}

#menu h2 a.last {
border-right: 0px;
}

#menu h2 a:hover {
	text-decoration:underline;
}


#menu h3 a:hover  {
font-weight:bold;
background-color: #8e8c8d;

}



/*   -------- 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;
left: 0px;
z-index: 2;
width: 100px !important;
}

#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;}



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

#menu ul li {float: left; width: 100%;}
/*
#menu ul li a {height: 1%;} 
*/
