/* Main menu settings */
#centeredmenu {
	clear: both;
	float: left;
	margin: 0px;
	padding: 0; /* black line below menu */
	width: 1280px;
	font-family: 'Open Sans', sans-serif; /* Menu font */
	text-shadow: 1px 1px 1px #000, 2px 2px 2px #666;
	font-weight: 200;
	/* font-size: 100%; Menu text size */
	z-index: 1000; /* This makes the dropdown menus appear above the page content below */
	position: relative;
	font-size: 20px;
}


/* Top menu items */
#centeredmenu ul {
	list-style: none;
	float: right;
	position: relative;
	right: 50%;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}
#centeredmenu ul li {
	padding: 0;
	float: left;
	position: relative;
	left: 50%;
	top: 0px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 10px;
}
#centeredmenu ul li a {
	display: block;
	margin: 0;
	font-size: 20px;
	line-height: 0;
	text-decoration: none;
	color: #FFF;
	font-weight: normal;
	padding-top: 1.2em;
	padding-right: 0.5em;
	padding-bottom: 0.95em;
	padding-left: 0.5em;
	
}
#centeredmenu ul li.active a {
	color: #666;
	background-color: #CCC;
}
#centeredmenu ul li:hover a,
#centeredmenu ul li.hover a { /* This line is required for IE 6 and below */
	color: #006699;
}

/* Submenu items */
#centeredmenu ul ul {
	display: none; /* Sub menus are hidden by default */
	position: absolute;
	top: 2em;
	left: 0;
	float: left;
	right: auto; /*resets the right:50% on the parent ul */
	width: 10em;
}
#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,
#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: .9em;
	font-weight: normal; /* resets the bold set for the top level menu items */
	background-color: #eee;
	color: #FFF;
	line-height: .5em; /* sub menu item horizontal lines */
	float: left;
	width: 100%;
	border: 2px solid #FFFFFF;
	background-image: -webkit-linear-gradient(270deg,rgba(191,191,191,1.00) 0%,rgba(107,107,107,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(191,191,191,1.00) 0%,rgba(107,107,107,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(191,191,191,1.00) 0%,rgba(107,107,107,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(191,191,191,1.00) 0%,rgba(107,107,107,1.00) 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-color: #B4B4B4; /* Sub menu items background colour */
	color: #006699;
	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 */
}
