
/* Main menu settings */
#centermenu {
	clear:both;
	float:center;
	margin:2;
	padding:1;
	border-bottom:0px solid #000; /* black line below menu */
	width:100%;
	font-family:Verdana, Geneva, sans-serif; /* Menu font */
	font-size:100%; /* Menu text size */
	z-index:1000; /* This makes the dropdown menus appear above the page content below */
	position:relative;
}

/* Top menu items */
#centermenu ul {
	margin:0;
	padding:0;
	list-style:none;
	float:center;
	position:relative;
}
#centermenu ul li {
	margin:0 0 0 0px;
	padding:0;
	float:left;
	position:relative;
	left:0%;
	top:1px;
}
#centermenu ul li a {
	display:block;
	margin:0px 0px 0px 0px;
	padding:0px 6px 0px 0px;
	font-size:2em;
	line-height:1em;
	text-decoration:none;
	color:#444;
	font-weight:normal;
	border-bottom:0px solid #000;
}
#centermenu ul li.active a {
	color:#444;
}
#centermenu ul li a:hover {
	background:#034794; /* Top menu items background colour */
	color:#fff;
	border-bottom:1px solid #03f;
}
#centermenu ul li:hover a,
#centermenu ul li.hover a { /* This line is required for IE 6 and below */
	background:#034794; /* Top menu items background colour */
	color:#fff;
	border-bottom:1px solid #03f;
}


/* Flip the last submenu so it stays within the page */
#centermenu ul ul.last {
	left:auto; /* reset left:0; value */
	right:0; /* Set right value instead */
}
#centermenu ul ul.last li {
	float:right;
	position:relative;
	right:.8em;
}

/* Make the sub menus appear on hover */
#centermenu ul li:hover ul,
#centermenu ul li.hover ul { /* This line is required for IE 6 and below */
	display:block; /* Show the sub menus */
}
