/*** START Primary Nav ***/

	#navblock { /* Entire width of nav */
	display: table;
	width: 100%;
	clear: left;
	text-align: center;
	} 

	#nav, #nav ul { /* all lists */
		padding: 0;
		margin: 0;
		list-style: none;
		line-height: 1;
	}

	#nav a { /* Base tabs */
		display: block;
		padding: 6px 6px 6px 10px;
		text-decoration: none;
		font-weight: normal;
		font-size: 0.8em;
   		background-repeat: no-repeat;
		background-position: right center; 
	}
	#navselected a { background-image: none; padding-right: 19px; } /* Remove navsep from selected page */
 	#navselected { margin-left: -1px; } /*  Hide neighbouring navsep */
  
	#nav li { /* all list items */
		float: left;
		text-align: left; 
	}

	/* Multi column primary nav - 2nd level items */
	
		#nav li ul li a {
	line-height: 1em;
	margin-top: 0px;

}

	#nav li ul { /* Multi column primary nav - 2nd level outer box */
		position: absolute;
		width: 180px ;
		left: -999em; /* Left instead of display to hide menus because display: none isn't read by screen readers */
	}

	#nav li.navsingle ul {width: 180px; } /* Class for single column */

	#nav li:hover ul, #nav li.sfhover ul { /* Entire 2nd level list revealed on hover */
	position:absolute;
		left:auto;
		z-index: +1;
		padding: 15px 6px 10px 10px;
	}

	/* Base tabes on hover, treatment for special border */
	#nav li li a { border:none; }
	ul#nav li.sfhover a, ul#nav li:hover a {
		padding-top: 4px;
		padding-bottom: 6px;
    	padding-right: 5px;
	}
  	ul#nav li.sfhover, ul#nav li:hover { margin-left: -1px;	}
	ul#nav li.sfhover ul li, ul#nav li:hover ul li { margin-left: 0; }	

  /* Trickery for bright borders in IE6 */
	* html #nav li:hover ul, * html #nav li.sfhover ul { margin-top: 1px }
	* html ul#nav li.sfhover a, * html ul#nav li:hover a { position: relative; top: 1px; margin-top: -1px; }
	* html ul#nav li.sfhover a.navstaticlink, * html ul#nav li:hover a.navstaticlink { padding-bottom: 5px; }	

	#nav li:hover ul a, #nav li.sfhover ul a { /* Individual 2nd level list items, revealed with hover */
		padding: 6px 15px 6px 5px;
		margin-bottom: 5px;
		font-size: 0.8em;
		font-weight: normal;
	}

	#navbaseline { /* Transparent baseline under nav */
		clear: left;
		background-color: #0c4173;
		height: 1px;
	}

	* html #navbaseline { font-size: 1px; } /* Fix daft IE6 sizing of zero height div */

	/* Home tab & static links need border adjustment */
	#nav a.navstaticlink:hover { padding-bottom: 5px; background-image: none;}

	/* White arrow for all 2nd level items */
	#nav li:hover ul a, #nav li.sfhover ul a, #nav #navselected:hover ul a, #nav #navselected.sfhover ul a { /* Individual 2nd level list items, revealed with hover */
		padding-left: 15px; 
		background-repeat: no-repeat;
		background-position: 	5px 6px; 
	}

	/* Replace white arrow with dark for a:hover item */
	#nav li:hover ul a:hover, #nav li.sfhover ul a:hover, #nav #navselected:hover ul a:hover, #nav #navselected.sfhover ul a:hover { /* Individual 2nd level list items, revealed with hover */
		padding-left: 15px; 
		background-repeat: no-repeat;
		background-position: 	5px 6px; 
	}

/*** END Primary Nav ***/

