/*Remove the bullet points*/
UL.top-level, UL.top-level UL
{
	list-style: none;
}
/*Make the top row list items appear side-by-side*/
UL.top-level>LI
{
	margin: 0;
	padding: 5px 0px 5px 11px;
	float: left;
	cursor: default;
}
/*Set the background colour of the drop-down menus. Position as fixed to avoid movement when mousing over.*/
UL.top-level>LI>UL
{
	background: #333;
	position: absolute;
	z-index: 5;
	margin: 5px 0 0 -47px;
	padding: 14px 0 20px 0px;
	min-width: 247px;
/*Set a minimum width for each dropdown menu if desired*/
	list-style: inside url(../images/bullet.png);
}
/*Line up the lower level items with the top level items.*/
UL.top-level>LI>UL>LI
{
	padding: 3px 5px 2px 9px;
/*The second number here must match another one (see above)*/
	text-indent: 2.5em;
	font-size: 9pt;
}
/*Remove the standard link styling.*/
UL.top-level A
{
	text-decoration: none;
	color: #FFFFFF;
}
/*Make links orange when hovered over.*/
UL.top-level A:hover
{
	color: #4CC4CD;
}
