/* CSS Document */

/* HORIZONTAL DROP DOWN MENU */



#menu ul {
list-style: none;
margin: 0;
padding: 0;
width: 165px;  /* set width of each menu item here - when multiplied by no of menu-items should equal width above */

}

 /* alternatively, if each item is a different width, set width of each menu item here 
#menu .item1 { width: 66px; }
#menu .item2 { width: 120px; }
#menu .item3 { width: 120px; }
#menu .item4 { width: 70px; }
#menu .item5 { width: 80px; }
#menu .item6 { width: 70px; }
#menu .item7 { width: 80px; }
*/



/*  COLOURING ETC */


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


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


#menu h2 a {
font-family: arial, helvetica, sans-serif;
font-size: 12pt;
margin: 0px;
padding: 7px; 
line-height:12pt;
color: #ffffff;
text-decoration: none;
text-align: right;
}

#menu h3 a {
font-family: arial, helvetica, sans-serif;
font-size: 8pt;
margin: 0;
padding: 3px;
color: #FFFFFF;
text-decoration: none;
font-weight: normal;
border-top: 1px solid #FFFFFF;
background-image: url(images/submenu-background.jpg);
background-repeat: repeat-y;
}

#menu h3 a.first {
background-image: url(images/submenu-background-top.jpg);
background-repeat: no-repeat;
}

#menu h3 a.last {
background-image: url(images/submenu-background-bt.jpg);
background-repeat: no-repeat;
}

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

#menu h3 a:hover  {
text-decoration: none;
background-image: url(images/submenu-background-hover.jpg);
background-repeat: repeat-y;
}

#menu h3 a.first:hover {
background-image: url(images/submenu-background-top-hover.jpg);
background-repeat: no-repeat;
}

#menu h3 a.last:hover {
background-image: url(images/submenu-background-bt-hover.jpg);
background-repeat: no-repeat;
}


/*   -------- 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;
top: 0;
left: 100%;
width: 80px;
margin-top: 0;
}


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