/* CSS Document */
ul#nav {
	float: right;
	list-style: none;
	position: relative;
	text-align: right;
	width: 35%;
	}
ul#nav li {
	list-style: none;
	}
/*This 'li.wide' class only affects the menu on the 'What we do' pages*/	
li.wide {
	margin-bottom: 8px;
	width: 120px;
	float: right;
	}
/*Hide the drop down lists*/
li  ul {
	display: none;
	text-align: right;
	position: absolute;
	bottom: 63%;
	right: 100%;
	}
li ul.sub2 {
	display: none;
	position: absolute;
	top: 50%;
	right: 145%;
	}
li ul.sub2 li {
	width: 160%;
	}
/*Correct ie bug*/
li > ul {
	top: auto;
	left: auto;
	}
/*Make the sublist appear when the menu item is floated*/
li:hover ul, li.over ul {
	display: block;
	}
/*ensure the lisks work for the whole block not just the letters*/
#nav a {
	padding: 8px 7px;
	}
/*Manage the size of the sublist*/
#nav li li a {
	display: block;
	padding: 8px 15px;
	}
/*Control the link functions*/
#nav a:link, #nav a:visited, #nav a:active {
	display: block;
	color: #8098AF;
	font-size: 12px;
	text-decoration: none;
	background-color: #FFFFFF;
	}
#nav a:hover {
	display: block;
	color: #4B5967;
	font-size: 12px;
 	text-decoration: underline;
 	background-color: #FFFFFF;
	}
