/* Copyright 2009 Cornish WebServices */

/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
	font-family:	Calibri, Tahoma MS;
	background-color:#01b206;
	color:#fff;
}
.sf-menu {
	line-height:	1.5;  /* RC - increase to give more space */
	padding-left:	130px;
}
.sf-menu ul {
	position:		absolute;
	top:			-999em;
	width:			15em; /* left offset of submenus need to match (see below) */
}
.sf-menu ul li {
	width:			100%;
	text-align:		left;
	background-color:#01b206; /* background colour of drop down */
}
.sf-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {
	float:			left;
	position:		relative;
	padding: 	0px;/* make this zero to have higlighted area filling bar */
	height:			35px;  /* WARNING - change this, and must change hover top below */
	margin-top:		0px; /* make this zero to have higlighted area filling bar */
	text-align:		center;
	/* background:		transparent; */
	/*url(../images/extra-topnav-bg.png) #006699;*/
	margin-right:10px;
} 
.sf-menu li ul {
	border-top:solid 1px #666666;
}
.sf-menu li ul li {
	border-bottom:solid 1px #666666;
	border-left:solid 1px #666666;
	border-right:solid 1px #666666;
}
.sf-menu li a {
	font-weight:	bold;
	padding: 5px 10px;  /* this gives the padding around the text */
}
.sf-menu a {
	display:		block;
	position:		relative;
	text-decoration:none;
}

.sf-menu a, .sf-menu a:visited { /* visited pseudo selector so IE6 applies text colour*/
	color:			#fff;
	text-decoration:none;
}

/*  HOVERS and FOCUS ************ */

.sf-menu  .sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
	color:			#ffffff;
	background:		#76D879;
}


.sf-menu li:hover ul, .sf-menu li.sfHover ul {
	left:			0;
	top:			35px; /* match top ul list item height PLUSS PADDING */
	z-index:		99;
	margin:0;
}
ul.sf-menu li:hover li ul, ul.sf-menu li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li:hover ul, ul.sf-menu li li.sfHover ul {
	left:			15em; /* match ul width */
	top:			0;
}
ul.sf-menu li li:hover li ul, ul.sf-menu li li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li li:hover ul, ul.sf-menu li li li.sfHover ul {
	left:			15em; /* match ul width */
	top:			0;
}





