body {
	background-color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	line-height: 1.1em;
	color: #333333;
	margin: 15px;
	background-image: url(/images/template/bg-tile.png);
	background-attachment: fixed;
	background-repeat: repeat-x;
	}
	
.contentbox{
	padding: 10px;
	}

.sidemenu{
	background-color: #AF9B9A;
	}
	
a {	
	color: #FF7828;	
	text-decoration: underline;
}

a:hover {
	color: #333333;
	text-decoration: underline;
	}

h1	{
	font-size: 1.6em;
	line-height: 1.6em;
	color: #FF7828;
	font-weight: bold;
	}
	
h2 {
	font-size: 1.4em;
	line-height: 1.4em;
	color: #FF7828;
	font-weight: bold;
	}

h3 {
	font-size: 1.2em;
	line-height: 1.2em;
	color: #FF7828;;
	}

h4 {
	color: #FF7828;
	font-size: 1.0em;
	}

td, th {	
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	line-height: 1.1em;
	color: #333333;
	}

textarea {
	font-family: Arial, Helvetica, sans-serif;	
	font-size: 1em;
	}

.siteby {
	font-size: 9px;
	color: #999999;
	}

/************************* MENU ***********************************/

.menuactive {
	color: #000000;  /* link text colour */
	padding-top: 1px;	/* padding of text within button */
	padding-right: 8px;
	padding-bottom: 1px;
	padding-left: 8px;
}

.menuparentactive {
	color: #000000;  /* link text colour */
	font-weight: bold;
}

#menu {
 margin-top: 10px;
}

#menu ul { 
	list-style: none;
	padding-top: 1px;	/* padding of text within button */
	padding-right: 8px;
	padding-bottom: 1px;
	padding-left: 8px;
 	margin: 0 ;   /* indent from outside div */
}

#menu li {
 	left: 0;
 	margin: 0 ;
	padding-top: 1px;	/* padding of text within button */
	padding-right: 8px;
	padding-bottom: 1px;
	padding-left: 8px;
	display: block;
	position:relative;  
}

#menu a {
	text-align: left;  /* position text within li button */
	text-decoration: none; /* remove typical underline */
	text-transform: capitalize;
	font-size: 13px;    /* menu text size */
	display: block;    /* treats layout of buttons like they're table cells rather than list items */
	width: 200px;   /* button outside dimensions */
	color: #333333;  /* link text colour */
	padding-top: .9px;	/* padding of text within button */
	padding-right: 8px;
	padding-bottom: 0px;
	padding-left: 8px;
	margin: 1px;   /* padding of button within list item */
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFCE59;
}

#menu a:hover {  /* override as neccesary for mouse over effects */
 	color: #000000;
	padding-top: .9px;	/* padding of text within button */
	padding-right: 8px;
	padding-bottom: 0px;
	padding-left: 8px;
}


/* 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.*/
}