/* **** CORE CODING FOR DROPDOWNS **** */
/* Don't mess with this bit unless you know exactly what you're doing */

#navHome, #navHome ul {
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}
#navHome a {
	display: block;
	width: 192px;
	padding:5px 4px;						/* padding for links in submenus - if you change it make sure to adjust the width value as well */
	border-bottom:1px solid #fff;			/* border colour for the dividers between links in submenu */
	background-color:#6A9CD0;				/* normal background colour of submenus */
	color:#fff !important;					/* normal text color of submenus */
}
#navHome a:hover {
	background-color:#A2CC39;				/* Hover background-color of submenus */
	color:#fff !important;					/* Hover text colour of submenus */
}
#navHome li {
	float: left;
	width: 200px; /* width needed or else Opera goes nuts */
}
#navHome li ul {
	position: absolute;
	background: orange;
	width: 200px;
	left: -999em;
	z-index:100;
	border-top:1px solid #fff;				/* border colour of submenus */
	border-left:1px solid #fff;				/* border colour of submenus */
	border-right:1px solid #fff;			/* border colour of submenus */
}
#navHome li:hover ul, #navHome li.sfhover ul {
	left: auto;
}
#navHome li ul li a {
	font-size:0.9em;
}
/* Stops menus freezing in Explorer 7 (I for one welcome our new Microsoft Overlords...) */
#navTop li:hover, #navTop li.sfhover {position:static;}


/* **** STYLE FOR TOP LEVEL **** */
/* Styling for the top menu headings */

#navHome li.top
 {
	width:auto !important;
	padding:0;
	border-left:1px solid #fff;
	border-bottom:0px;
	height:18px;
	line-height:18px;
} 
#navHome li.first
{
	border-width:0;
} 
#navHome li.top a.top {
	display:block;
	width:auto !important;
	padding:0 7px;  		/* padding for spacing of li's in the top nav */
	color:#fff;
	border-bottom:0px;
	background-color:transparent;
}
#navTop #navHome li.top a.top:hover {color:#E5E5E5 !important;}