ul.navbar, ul.navbar ul
{
	width: 180px;
	/* sets the size of the menu blocks */
	/* puts a black border around the menu blocks */
	color: #FFFFFF;
	background-color: #5571B9;
	/* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
	/* stops the usual indent from ul */
	cursor: default;
	/* gives an arrow cursor */
	margin-left: 0px;
	/* Opera 7 final's margin and margin-box model cause problems */
	padding: 6px 0 6px 4px;
	border-color: #808080;
	border-width: 0px 1px 1px 1px;
	border-style: solid;
	margin-bottom: 2px;
	position: absolute;
	top: 63px;
	z-index: 3;
	font-weight: normal;
}

ul.navbar li
{
	list-style-type: none;
	/* removes the bullet points */
	margin: 2px;
	/* Opera 7 puts large spacings between li elements */
	position: relative;
	/* makes the menu blocks be positioned relative to their parent menu item
    the lack of offset makes these appear normal, but it will make a difference 		to the absolutely positioned child blocks */
	color: #fff;
	/* sets the default font colour to white */
	font-size: 12px;
}

ul.navbar li > ul
{
	/* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
	display: none;
	/* hides child menu blocks - one of the most important declarations */
	position: absolute;
	/* make child blocks hover without leaving space for them */
	margin-top: 4px;
	/* position slightly lower than the parent menu tem */
	left: 94px;
	/* this must not be more than the width of the parent block, or the mouse will have to move off the element to move between blocks, and the menu will close */
		z-index: 3;
}

ul.navbar li:hover, ul.navbar li.CSStoHighlight
{
	background-color: #EAEAE8;
	/* gives the active menu items a white background */
	color: #000;
	/* makes the active menu item text black */
}

ul.navbar ul.CSStoShow
{
	/* must not be combined with the next rule or IE gets confused */
	display: block;
	/* specially to go with the className changes in the behaviour file */
}

ul.navbar li:hover > ul
{
	/* one of the most important declarations - the browser must detect hovering over arbitrary elements the > targets only the child ul, not any child uls of that child ul */
	display: block;
	/* makes the child block visible - one of the most important declarations */
		font-weight: normal;
}

/* and some link styles */
ul.navbar li a
{
	color: #fff;
	display: block;
	width: 100%;
	text-decoration: none;
	font-weight: normal;
}

ul.navbar li a:hover, ul.navbar li a.CSStoHighLink { color: #000; }
ul.navbar li:hover > a { color: #000; }

/* supports links in branch headings - must not be display: block; */

<!--
[if gte IE 5]><![if lt IE 7]>

/* that IE 5+ conditional comment makes this only visible in IE 5+ */
ul.navbar li
{
	/* the behaviour to mimic the li:hover rules in IE 5+ */
	behavior: url( IEmen.htc );
}

ul.navbar ul
{
	/* copy of above declaration without the > selector */
	display: none;
	position: absolute;
	top: 0px;
	left: 78px;
}
