/* CSS Document */

/* HORIZONTAL DROP DOWN MENU */

#menu {
margin: 0 auto;
width: 800px;
height: 48px;
z-index: 500;
}

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

#menu ul ul {
background-color: #962b03;
margin-top: 4px;
padding: 0;
border-top: none;
}

 /*  can set width of each menu item here if they are each different */
#menu .item1 { width: 70px; }
#menu .item2 { width: 70px; }
#menu .item3 { width: 70px; }
#menu .item4 { width: 90px; }
#menu .item5 { width: 70px; }
#menu .item6 { width: 170px; }
#menu .item7 { width: 70px; }



/*  COLOURING ETC */

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


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

}

#menu h2 a, #menu h3 a {
font-family: arial, helvetica, sans-serif;
font-size: 11px;
color: #ffffff;
text-decoration: none;
text-transform: lowercase;
}

#menu h2 a{
border-right: 1px solid #FFFFFF;
font-weight: bold;
margin-top: 15px;
padding: 1px;
}

#menu h3 a{
font-weight: normal;
border-top: 1px solid #FFFFFF;
padding: 3px;
}

#menu h3.first a{
background-image: url(elements/li-background.jpg);
background-repeat: repeat-x;
border-top: none;
}

#menu h3.first a:hover {
background-image: url(elements/li-background-hover.jpg);
background-repeat: repeat-x;
border-top: none;
}

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

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


/*   -------- 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: relative;
top: 0;
left: 0;
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%;} 
