/* CSS Document */

/* HORIZONTAL DROP DOWN MENU */



#menu {
	position:absolute;
	width:730px;
	height:20px;
	z-index:500;
	padding-left: 20px;
}


#menu ul {
list-style: none;
margin: 0;
padding: 0;
/*width: 63px;   set width of each menu item here - when multiplied by no of menu-items should equal width above */
float: left; /* this makes the first UL horizontal */
}

#menu li {
list-style-image: none;
line-height: 9pt;

}

 /* alternatively, if each item is a different width, set width of each menu item here */

#menu .item1 { width: 63px; }
#menu .item2 { width: 50px; }
#menu .item3 { width: 55px; }
#menu .item4 { width: 62px; }
#menu .item5 { width: 80px; }
#menu .item6 { width: 70px; }
#menu .item7 { width: 75px; }
#menu .item8 { width: 55px; }
#menu .item9 { width: 55px; }
#menu .item10 { width: 55px; }
#menu .item11 { width: 45px; }
#menu .item12 { width: 55px; }




/*  COLOURING ETC */

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


#menu h2, #menu h3, #menu h4, #menu h5 {
margin: 0;
margin-top: 0;
margin-bottom: 0;
}


#menu h2 a , #menu h3 a{
font-size: 7pt;
text-transform: capitalize;
text-align: center;
}

#menu h2 a {
font-weight: normal;
color: #0f4f87;
padding-top: 3px;
padding-bottom: 2px;
border-top: 1px solid #FFFFFF;
border-right: 1px solid #0f4f87;
}

	#menu h2 a.noborder {
	border-right: none;	
	}

#menu h3 a {
font-weight: bold;
border-top: 1px solid #919191;
border-right: 1px solid #0f4f87;
border-left: 1px solid #0f4f87;
color: #919191;
background-color: #FFFFFF;
margin-left: -1px !important; margin-left: 0px; 
padding-top: 4px;
padding-bottom: 4px;
}

	#menu h3 a.last {
	border-bottom: 1px solid #0f4f87;
	}


#menu h4 a, #menu h5 a {
font-size: 7pt;
text-transform: uppercase;
text-align: center;
color: #FFFFFF;
margin-top: 3px;
padding-top: 2px;
padding-bottom: 0px;
margin-bottom: 2px;
}

#menu h4 a {
font-weight: normal;
border-right: 1px solid #FFFFFF;
}

	#menu h4 a.noborder {
	border-right: none;	
	}

#menu h5 a {
font-weight: bold;
}

/* Hover styles */


#menu h2 a:hover  {
text-decoration: none;
background-color: #FFFFFF;
}

#menu h3 a:hover  {
text-decoration: none;
background-color: #a7ac2a;
color: #FFFFFF;
}

#menu h4 a:hover, #menu h5 a:hover   {
text-decoration: none;
color: #8aa8df;
}

/*   -------- 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;
}

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