/*	Begin main navigation (none Javascript) menu styles */
/*	
	This menu system was inspired by Listamatic by Eric Meyer 
	available from maxdesign.com.au
	
	It is based around an unordered list which is displayed horizontally and then styled.
	Hyperlinks are then added to the list items to form the menu.
*/
/*
	First, we define the overall properties of the menu div
*/
#navlist	{
	border-left: 1px solid #ABA9AA;
	background-color:#ABA9AA;
	margin: 0;
	padding-bottom: 21px;
	height:20px;
}
/*
	Now we specify the styles used for the list, which is displayed inline (horizontally),
	instead of the default vertical render.  We also remove any bullet points which would
	normally be shown.
*/
#navlist ul, #navlist li
{
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
/*
	These are the styles used for the states of the links which have been applied to the list
	items.  They are similar in principal to normal anchor styles.
*/
#navlist a:link, #navlist a:visited
{
	width:8em;
	display:block; 
	float: right;
	font-size:12px;
	color:#efefef; 
	background:#273A80; 
	text-decoration:none; 
	padding-left:4px;
	padding-right:4px; 
	padding-top:2px;
	padding-bottom:2px;
	margin:0px; 
	border-top:1px solid #ABBCFF; 
	border-left:1px solid #ABBCFF; 
	border-right:1px solid #ABAAAA; 
	border-bottom:1px solid #ABAAAA; 
}

#navlist a:link#current, #navlist a:visited#current
{
	display:block; 
	color:#fff; 
	background:#0099ff; 
}

#navlist a:hover {
	color:#fff; 
	background:#3399cc; 
	/*font-weight:bold;
	color: #027ccc;
	*/
}

#navlist ul a:hover { color: #f00000; }

/*
	Begin sub navigation menu styles 
*/
/*
	These styles facilitate a form of sub navigation which enables users of 
	non-javascript browsers to access more content
*/
#subnav	a:link, #subnav a:visited	{
	text-decoration: underline; 
	color:#fd8333;
}
#subnav a:link#active, #subnav a:visited#active
{
	text-decoration:none;
	color:#000; 
}

	

