@charset "UTF-8";

/*Menu structure*/
#menu li {
	float: left;
	display: block;

	position: relative;
	z-index: 599;
	cursor: default;
}

#menu a, #menu h1 {
	display: block;
	text-align: center;
	
	padding: 5px 2px 8px;
}

/*Other Buttons*/
#menu a, #menu h1 {
	margin-bottom: 0px;
	letter-spacing: 0px;
	font-family: Arial, sans-serif;
	font-size: 11px;
	text-decoration: none;
	font-weight: normal;
	
	width: 125px;
}

/*Top Buttons*/
#menu>li>a, #menu>li>h1 {
	font-weight: bold;
	letter-spacing: 0px;
	font-family: Arial, sans-serif;
	font-size: 12px;
	text-decoration: none;
	text-transform: uppercase;
	
	background: url("../images/menu_button.png") no-repeat;
	
	width: 127px;
}

#menu>li>a .special, #menu>li>h1 .special {
	text-transform: lowercase;
}

#menu a { cursor: pointer; }

/*Positioning of dropdowns*/
#menu ul {
	margin: 0px;
	position: absolute;
	z-index: 598;
	
	top: 100%;
	left: 0;
	width: 129px;
	
	border: 1px solid #b7b7b7;
}
#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: #0054a6;	
	background-color: #ffffff;
}

#menu a:hover, #menu h1:hover {
	background-color: #dadcdd;
}

/* IE fix */
#menu ul li {float: left; width: 100%;}
#menu ul li a {height: 1%; }