/* CSS Document */

/* HORIZONTAL DROP DOWN MENU */



#menu {
	padding-left:400px;
	padding-right: 20px;
	z-index: 500;
	position:relative;
	top: -98px;
	width:1024px;
	height:15px;
	
}

#menu ul {
list-style: none;
margin: 0px;
padding-left: 0px;
padding-right: 0px;
text-align: middle;
border-right: 1px solid #ffffff;
 /*  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 .item1 { width: 60px; height: 15px; }
#menu .item2 { width: 60px;  height: 15px;}
#menu .item3 { width: 70px;  height: 15px;}
#menu .item4 { width: 80px;  height: 15px;}
#menu .item5 { width: 70px;  height: 15px;}
#menu .item6 { width: 60px;  height: 15px;}


#menu .item2 ul, #menu .item2 ul ul { width: 100px; }
#menu .item3 ul, #menu .item3 ul ul { width: 100px; }
#menu .item4 ul, #menu .item4 ul ul { width: 100px; }
#menu .item5 ul, #menu .item5 ul ul { width: 100px; }
#menu .item6 ul, #menu .item6 ul ul { width: 100px; }

/*  COLOURING ETC */

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

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

#menu h2 a {
margin-left: 10px;
margin-right: 10px;
font-family: arial, helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
color: #ffffff;
}



#menu h3 a, #menu h4 a, #menu h5 a, #menu h7 a {
margin: 0px;
font-family: arial, helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
text-align: left;
color: #ffffff;
padding: 5px;
}

#menu h3 a, #menu h5 a {
border-left: 1px solid #ffffff;
border-right: 1px solid #ffffff;
margin-left: 10px;
}

#menu h3 a {
border-bottom: 1px dashed #ffffff;
}

#menu h5 a {
border-bottom: 1px solid #ffffff;
}

#menu h4 a, #menu h7 a {
border-right: 1px solid #ffffff;
}

#menu h4 a {
border-bottom: 1px dashed #ffffff;
}

#menu h7 a {
border-bottom: 1px solid #ffffff;
}


/*------------------*/

#menu .item2 h3 a, #menu .item2 h5 a {
background-color: #4072b1;
}

#menu .item2 h4 a, #menu .item2 h7 a {
background-color: #7797c0;
}

#menu .item3 h3 a,#menu .item3 h5 a {
background-color: #bfba52;
}

#menu .item3 h4 a, #menu .item3 h7 a {
background-color: #d6d257;
}

#menu .item4 h3 a, #menu .item4 h5 a {
background-color: #939884;
}

#menu .item4 h4 a, #menu .item4 h7 a {
background-color: #b3bca1;
}

#menu .item5 h3 a, #menu .item5 h5 a {
background-color: #9d2d43;
}

#menu .item5 h4 a, #menu .item5 h7 a {
background-color: #b2454a;
}

#menu h2 a:hover, #menu h3 a:hover, #menu h4 a:hover, #menu h5 a:hover, #menu h7 a:hover   {
text-decoration: underline;
}

/*   -------- 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;
}
*:first-child+html #menu ul ul {
position: absolute;
left:0px;
top:15px;
padding:0;
margin-top:0;
z-index: 500;

}

#menu ul ul ul {
position: absolute;
top:0;
left: 100%;

}
*:first-child+html #menu ul ul ul {
position: absolute;
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%;
}

* html #menu ul li {float: left; width:100%;  }
*:first-child+html #menu ul li {float: left; width:100%;  }

