/* Main menu settings */
#centeredmenu {
	float:left;
	margin:0 auto;
		padding-top:3px;
	/*border-bottom:1px solid #000;  black line below menu */
	width:990px;
	height:33px;
	font-family:Arial, Helvetica, sans-serif; /* Menu font */
	font-size:11px; /* Menu text size */
	
	z-index:1000; /* This makes the dropdown menus appear above the page content below */
	background:url(../images/menu-background.jpg) repeat-x left top;
	position:relative;
}

/* Top menu items */
#centeredmenu ul {
	margin:0;
	list-style:none;
	float:left;
	position:relative;
	width:990px;
	height:33px;
}
#centeredmenu ul li {margin:0; padding:0 2px 0 2px;	float:left;	position:relative;	left:9px; top:0px;}
#centeredmenu ul li a {	display:block;	margin:0;	padding:9px 12px 9px 12px;	font-size:12px; font-weight:bold;	line-height:1em;	background:#ddd;	text-decoration:none;	color:#000;	background:none; display:block; float:left;}
#centeredmenu ul li.active a {
	color:#000;
	background:none;	
}

#centeredmenu ul li a:hover {
	 /*background:#36f; Top menu items background colour */
	color:#000;
	background:none;
}

#centeredmenu ul li:hover a,
#centeredmenu ul li.hover a { /* This line is required for IE 6 and below */
	color:#fff;
	background:none;
}

/* Submenu items */
#centeredmenu ul ul {
	display:none; /* Sub menus are hidden by default */
	position:absolute;
	margin-top:0px;
	top:34px;
	left:0;
	float:left;
	right:auto; /*resets the right:50% on the parent ul */
	width:160px; /* width of the drop-down menus */	
}
#centeredmenu ul ul li {
	left:0;  /*resets the left:50% on the parent li */
	margin:0; /* Reset the 1px margin from the top menu */
	float:left;
	width:100%;	
}
#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 */
	font-size:12px;
	font-weight:bold;
	font-weight:normal; /* resets the bold set for the top level menu items */
	background:#e2e2e2;
	color:#000;
	border:1px solid #bbb9b9; /* sub menu item horizontal lines */
	float:left;
	text-align: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 */
	background:#e3871d; /* Sub menu items background colour */
	color:#fff;
	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:left;
	position:relative;
	right:7px;
}

/* 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 */
}