<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS Document */

/* HORIZONTAL DROP DOWN MENU */



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


/*  COLOURING ETC */

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


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

#nav h2 a, #nav h3 a {
font-size: 11px;
text-transform: lowercase;
text-align: center;
color: #333333;
padding-top: 5px;
padding-bottom: 5px;
}

#nav h2 a {
font-weight: bold;
}

#nav h3 a {
border-bottom: 1px solid #ffffff;
font-weight: normal;
background-color: #B1122C;
color: #ffffff;
}

#nav h2 a:hover  {
text-decoration: none;
background-image: url(../elements/menu-tick.jpg);
background-position: bottom;
background-repeat: no-repeat;
}

#nav h3 a:hover  {
text-decoration: none;
color: #cccccc;
}




/*   -------- positioning the SUBMENUS --------------

The position: relative; on the &lt;li&gt; elements establish containing blocks for the descendant &lt;ul&gt; 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.
*/

#nav li {
position: relative; }

#nav ul ul {
position: absolute;
z-index: 500;
}

#nav ul ul ul {
top: 0;
left: 100%;
}


/*   -------- HIDING AND REVEALING --------------*/

div#nav ul ul,
div#nav ul li:hover ul ul,
div#nav ul ul li:hover ul ul
{display: none;}

div#nav ul li:hover ul,
div#nav ul ul li:hover ul,
div#nav ul ul ul li:hover ul
{display: block;}



</pre></body></html>