/* ##### presentation styles - easily editable to change the look of the menu ##### */

#navCont {
	padding-left: 0px; /* gap on left of menu (only meaningful if left aligned) */
	padding-right: 0px; /* gap on right of menu (only meaningful if right aligned) */
	/*background-color: #990000;  sets the background colour of the table cell. delete this line for transparent */
	font-family: Georgia, "Times New Roman", Times, serif; /* font face */
	font-size: 12px; /* font size */
	font-weight: normal; /* font weight - bold or normal */
	font-style: normal; /* font style - italic or normal */
}

#primary-nav LI {
	float: left; /* align menu left or right */
}

#primary-nav A {
	color: #000000; /* text colour */
	background-color: ; /* background colour */
	text-align: center; /* text alignment */
	text-decoration: none /* text decoration */
}

#primary-nav A:hover {			 
	color: #FFFFFF; /* text colour on mouseover */
	background-color: #4C3A2E; /* background colour on mouseover */
}

#primary-nav LI UL {
	border-top: #FFFFFF 0px solid; /* line under top level */
	border-right: #FFFFFF 0px solid; /* line to right of cell */
	border-left: #FFFFFF 0px solid; /* line to left of cell */
}

#primary-nav LI UL A {
	background-color:#8D6E4F;
	border-bottom: #FFFFFF 1px solid; /* draw line under each submenu */
}

/* ##### menu size styles - editable to control the size of menu cells. be careful when editing ##### */

#primary-nav LI {
	width: 10em; /* space the menu cells - 10 x font size */
}

#primary-nav A {
	padding: 0.5em; /* add padding to keep height of cell */
	width: 8em; /* set the width of the cell so that 2 x padding + cell width = space for cell */
}

#primary-nav LI UL UL { /* set margains on submenu to make it line up */
	margin-top: -2em;
	margin-left: 10em;
	margin-right: 0px;
	margin-bottom: 0px;
}

#primary-nav LI UL {
	width: 10em; 
}

/* ##### core styles - these should not normally be edited ##### */

#primary-nav, #primary-nav UL {
	padding: 0px; 
	margin: 0px; 
	line-height: 1em; 
	list-style-type: none;
}

#primary-nav A {
	display: block; 
}

#primary-nav LI UL {
	left: -999em; 
	position: absolute;
}

#primary-nav LI:hover UL UL, #nav LI.sfhover UL UL {
	left: -999em;
}

#primary-nav LI:hover UL, #primary-nav LI LI:hover UL, #primary-nav LI.sfhover UL, #nav LI LI.sfhover UL {
	left: auto;
}
