/* CSS Document */

/* HORIZONTAL DROP DOWN MENU */



#menu {
position: absolute;
width: 630px; /* set width of entire menu here */
float: left; /* this makes the first UL horizontal */
top: 80px;
right: 0;
z-index: 500;
}

#menu ul {
list-style: none;
margin: 0;
padding: 0;
width: 100px; /*  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 */
margin-right: 5px;

}

menu ul ul {
background-color: #e4ead0;
width:110px;
}


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


/*  COLOURING ETC */

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


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

#menu h2 a, #menu h3 a {
font-family: arial, helvetica, sans-serif;
font-size: 8pt;
text-transform: lowercase;
text-align: center;
padding-top: 4px;
padding-bottom: 8px;
font-weight: bold;
}

#menu h2 a {
background-color: #af1b43;
color: #FFFFFF;
padding-top: 4px;
padding-bottom: 4px;
}

#menu h3 a{
color: #70132f;
background-image: url(Image/menu-li.jpg);
background-repeat: no-repeat;
margin-left: -6px;
margin-right: -6px;
width:110px;

}

#menu h3 a.last {
background-image: url(Image/menu-li-bottom.jpg);
background-repeat: no-repeat;
background-position: bottom left;
padding-bottom: 17px;
padding-left: -6px;
}

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


#menu h3 a:hover  {
text-decoration: none;
color: #bf546d;
background-image: url(Image/menu-li-hover.jpg);
background-repeat: no-repeat;
}


#menu h3 a:hover.last {
background-image: url(Image/menu-li-hover-bottom.jpg);
background-repeat: no-repeat;
background-position: bottom left;
padding-bottom: 17px;
padding-left: -6px;
}



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



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