@charset "UTF-8";

/*Menu structure*/
#header {
	height: 403px;	/*Needs to be manually set*/
}
#menu {
	border-bottom: #000000 solid 1px;
}

#menu li {
	float: left;
	display: block;

	position: relative;
	z-index: 599;
	cursor: default;
}

#menu a, #menu h1 {
	display: block;
	padding: 6px 0px;
	text-align: center;
	
	font-size: 13px;
	font-weight: bold;
	text-decoration: none;
	margin: 0px;
	
	width: 155px;
}

#menu a { cursor: pointer; }

/*Positioning of dropdowns*/
#menu ul {
	position: absolute;
	z-index: 598;
	
	top: 100%;
	left: 0;
	width: 100%;
}
#menu ul ul {
	top: 0;
	left: 155px;
}

/*Hover the Dropdown*/
#menu ul,
#menu li:hover ul ul
{display: none;}
#menu li:hover ul,
#menu ul li:hover ul
{display: block;}

/*Colour effects*/
#menu a, #menu h1 {
	color: #ffffff;	
	background-color: #586600;
}
#menu a:hover, #menu a.on:hover, #menu h1:hover {
	color: #586600;
	background-color: #fef200;
}
#menu a.on{
	color: #586600;
	background-color: #fefe66;
}

/* IE fix */
#menu ul li {float: left; width: 100%;}
#menu ul li a {height: 1%; }