/************************* MENU ***********************************/

.menuactive{
	color: #000000;  /* link text colour */
	font-weight: bold;
	padding-top: 1px;	/* padding of text within button */
	padding-right: 0px;
	padding-bottom: 1px;
	padding-left: 2px;
}

#menu {
 margin-top: 0px;
	font-family: Arial, Helvetica, sans-serif;
}

#menu ul { 
	list-style: none;
	padding-top: 1px;	/* padding of text within button */
	padding-right: 0px;
	padding-bottom: 1px;
	padding-left: 2px;
 	margin: 0 ;   /* indent from outside div */
}

#menu li {
	left: 0;
	margin: 0 ;
	padding-top: 1px;	/* padding of text within button */
	padding-right: 0px;
	padding-bottom: 1px;
	padding-left: 2px;
	display: block;
	position:relative;  
}

#menu a {
	text-align: left;  /* position text within li button */
	text-decoration: none; /* remove typical underline */
	font-weight: bold;
	font-size: 12px;    /* menu text size */
	display: block;    /* treats layout of buttons like they're table cells rather than list items */
	width: 145px;   /* button outside dimensions */
	color: #FFFFFF;  /* link text colour */
	padding-top: 1px;	/* padding of text within button */
	padding-right: 0px;
	padding-bottom: 1px;
	padding-left: 2px;
	margin: 1px;   /* padding of button within list item */
}

#menu a:hover {  /* override as neccesary for mouse over effects */
 	color: #381938;
	padding-top: 1px;	/* padding of text within button */
	padding-right: 0px;
	padding-bottom: 1px;
	padding-left: 2px;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
#menu ul ul {
	display: none;   /* removes the anoying space between buttons where popupmenus exist.*/
	visibility:hidden;  /* dropdowns hidden by default, until hovered over */
	position:absolute;
	top:0;
	left:173px;
	width: 150px;  /* width of the entire dropdown */
	margin: 0;  /* relative position of the menu to the button... 0=tight on bottom.. */
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 28px;
	background-color: #F36E23; /* color of the entire dropdown */
}

#menu ul ul ul {
	position: absolute;
	top: auto;  /* auto means that it will be in the typicall indented list position below the first menu */
	left: 0;   /* 0 */
	margin: -20 130;       /* adjust the margins to position the 2nd level popout menu to the right*/
	width: 150px;   /* width is based on the containing block */
	background-color: #F36E23; /* color of the entire dropdown */
}

#menu li ul a {  /* override colours for drop down buttons */
	background-color: #F36E23;
	color: #ffffff;
	width: 150px;
	text-align:left;
	font-size: 12px;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 28px;
	margin: 0;
	border-bottom: 1px  solid #ffffff;
}


#menu li ul a:hover {  /* override colours for drop down buttons */
 color: #000000;
 background-color: #F36E23;
}

#menu ul li:hover, #menu ul li.sfhover {
	color: #4F3324;
}


#menu li:hover ul ul, 
#menu li:hover ul ul ul, 
#menu li.sfhover ul ul, 
#menu li.sfhover ul ul ul 
{
 left: -999em;
}

#menu li:hover ul, 
#menu li.sfhover ul 
{ 
  visibility:visible;
  display: block;  /* anoyingly restores the anoying space between buttons where popupmenus exist.*/
}

#menu li li:hover ul, 
#menu li li li:hover ul, 
#menu li li.sfhover ul, 
#menu li li li.sfhover ul {
  visibility:visible;
  left: auto;
  display: block;  /* anoyingly restores the anoying space between buttons where popupmenus exist.*/
}
