/* ***** THEME ***** customise here ***** */
#centeredmenu {
	/*border-bottom:2px solid #072744;  black line below entire menu */
	/*font-family:Verdana, Geneva, sans-serif;  Menu font */
	font-size:12px;
	border:none;
	display:inline-block;
}
#centeredmenu ul {border:none;}

/* Top menu items */
#centeredmenu ul li a {
	/*padding:0px 7px 6px;*/
	padding:0px 6px 6px;
	line-height:26px;
	text-decoration:none;
	color:#FFF;
	font-weight:bold;
	/*border-bottom:2px solid #072744;
	max-width:80px;*/
	text-transform:uppercase;
	text-align:center;
}
#centeredmenu ul li.active a, #centeredmenu ul li.selected>a {
	color:#231f20;
	/*border-bottom:2px solid #f05a28;*/
}
#centeredmenu ul li a:hover {
	color:#231f20;
}
#centeredmenu ul li:hover a,
#centeredmenu ul li.hover a { /* This line is required for IE 6 and below */
	color:#231f20;
}


/* Submenu items */
#centeredmenu ul ul {
	top:2.4em;
	width:10em; /* width of the drop-down menus */
}
#centeredmenu ul ul li a,
#centeredmenu ul li.active li a,
#centeredmenu ul li:hover ul li a,
#centeredmenu ul li.hover ul li a { /* This line is required for IE 6 and below */
	text-transform:none;
	/*color:#8c8b8b;*/
	line-height:1.4em; /* overwrite line-height value from top menu */
	margin:0; /* sub menu item horizontal lines */
	text-align:left;
	padding:5px 7px 2px;
}
#centeredmenu ul ul li a:hover,
#centeredmenu ul li.active ul li a:hover,
#centeredmenu ul li:hover ul li a:hover,
#centeredmenu ul li.hover ul li a:hover { /* This line is required for IE 6 and below */
	color:#072744;
	width:100%;
}


/* ***** STRUCTURE ***** don't alter ***** */
#centeredmenu {
	/*clear:both;*/
	float:left;
	margin:0;
	padding:0;
	/*width:480px;*/ width:515px;
	z-index:1000; /* This makes the dropdown menus appear above the page content below */
	position:relative;
}

/* Top menu items */
#centeredmenu ul {
	margin:0;
	padding:0;
	list-style:none;
	float:right;
	position:relative;
	right:50%;
}
#centeredmenu ul li {
	margin:0 0 0 1px;
	padding:0;
	float:left;
	position:relative;
	left:50%;
	top:1px;
}

#centeredmenu ul li a {
	display:block;
	margin:0;
}

/* Submenu items */
#centeredmenu ul ul {
	display:none; /* Sub menus are hidden by default */
	position:absolute;
	left:0;
	float:left;
	right:auto; /*resets the right:50% on the parent ul */
}
#centeredmenu ul ul li {
	left:auto;  /*resets the left:50% on the parent li */
	margin:0; /* Reset the 1px margin from the top menu */
	clear:left;
	float:left;
	width:100%;
}
#centeredmenu ul ul li a:hover,
#centeredmenu ul li.active ul li a:hover,
#centeredmenu ul li:hover ul li a:hover,
#centeredmenu ul li.hover ul li a:hover { /* This line is required for IE 6 and below */
	float:left;
}

/* Flip the last submenu so it stays within the page */
#centeredmenu ul ul.last {
	left:auto; /* reset left:0; value */
	right:0; /* Set right value instead */
}
#centeredmenu ul ul.last li {
	float:right;
	position:relative;
	right:.8em;
}

/* Make the sub menus appear on hover */
#centeredmenu ul li:hover ul,
#centeredmenu ul li.hover ul { /* This line is required for IE 6 and below */
	display:block; /* Show the sub menus */
}