#nav {
	/*Main Navigation font size 12 bold */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight:bold;
	margin:0;
	padding:0px;
}

#nav li ul li{
	/*Sub Navigation font size 12 bold*/
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight:bold;
	border-top:1px solid #ffffff;
	margin:0;
	width: 220px;
	}
#nav li {
	/*float the main list items for IE 6 */
	margin:0;
	float:left;
	position:relative;
	display:block;
	width:110px;
	vertical-align:middle;
	list-style:none;
}
html > body #nav li {
	/*float the main list items for IE 7 and NOT IE */
	margin:0;
	float:left;
	position:relative;
	display:block;
	width: auto;
	vertical-align:middle;
	list-style:none;
}
	
#nav li.off ul, #nav li.on ul {
	/*hide the subnavs*/
	display:none;
	position:absolute;
	width:200px;
	left:0;
	}
#nav li a:hover {
	/*main menu hover over item*/
	color:#FF99CC;
}

#nav ul li a:hover {
	/*hover over submenu item*/
	background-color:#ffffff;
	color: #FF99CC;
}

#nav li a{
	/*format for main menu IE 6*/
	display:block;
	padding: 0px ;
    background-color: #2e5689;       
	color: #ffffff;
	text-decoration: none;
	height:20px;
 }
html > body #nav li a{
	/*format for main menu IE 7 and NOT IE*/
	display:block;
	padding: 0px 0px 0px 15px ;
    background-color: #2e5689;       
	color: #ffffff;
	text-decoration: none;
	height:auto;
 }

#nav li ul li a{
	/*format for sub menu IE 6*/
	display:block;
	background-color: #ffffff;
	color: #5780b4;
	text-decoration: none;
	height:20px;
	overflow:visible;
	/* padding top right bottom left */
	padding: 10px 0px 0px 10px;
 }
html > body #nav li ul li a{
	/*format for sub menu IE 7 and NOT IE*/
	display:block;
	background-color: #ffffff;
	color: #5780b4;
	text-decoration: none;
	height:auto;
	overflow:visible;
	padding: 0px 0px 0px 20px;
 }


#nav li.on ul a, #nav li.off ul a {
	/*cancel inherit of border on subnav of active topic */
	border:0;
	color:#5780b4;
	width:200px;
	}
#nav li.on ul {
	/*display active subnav list IE 6*/
	display:block;
	position:absolute;
	width:200px;
	z-index:6000;
	left:-35px;
	overflow:visible;
	}
#nav li.off:hover ul, #nav li.over ul {
	/*display the other topics when thier parent is hovered IE 6*/
	display:block;
	position:absolute;
	width:200px;
	z-index:6000;
	left:-35px;
	overflow:visible;
	}
	
html > body #nav li.on ul {
	/*display active subnav list IE 7 and NOT IE*/
	display:block;
	position:absolute;
	width:300px;
	z-index:6000;
	left:-35px;
	overflow:visible;
	}
html > body #nav li.off:hover ul, #nav li.over ul {
	/*display the other topics when thier parent is hovered IE 7 and NOT IE */
	display:block;
	position:absolute;
	width:300px;
	z-index:6000;
	left:-35px;
	overflow:visible;
	}
	
/*#nav li.off a:hover, #nav li.off:hover a , #nav li:hover a, #nav li.over a{
	/*colour on mouse over of main text AND sub menu text*/
/*	color: #000000;
	}*/
	
#nav li ul li a:hover {
	color: #FF99CC;
	}
