/** Top Nav Start**/
/* Colours used are:
dark blue #07395A; 
light blue #a6d0e8
*************************************/
ul#nav {
	list-style: none;
	padding: 0;
	margin: 0 0 0 10px;
	z-index: 50;
	position: relative;
	width: 1000px;
}
ul#nav li { /* put font-size here and not in higher elements to help align in em */
	font-size:80%;
	padding:0;
	margin:0;
	float:left;
	list-style: none;
}
ul#nav li a {
	display: block;
	text-decoration: none;
	padding: 0 1em;  /* careful here in firefox */
	margin:0;
	line-height:28px;
	height:28px;
	vertical-align:middle;
	background-color:#07395A;
	color:#fff;
	border-right:1px solid #fff;
}
ul#nav a:hover {
	background-color:#A6D0E8;
	color: #0172AE;
}
ul#nav li ul {
	list-style: none;
	position: absolute;
	left: -999em;
	/*font-weight: normal;*/
	margin: 0;
	padding:0;
	z-index: 60;
	font-size:85%; /* reduce font here, keep at 100% in li, a so all wdiths work */
	line-height:normal;
}
ul#nav li ul li {
	z-index: 61;
	background-color:#A6D0E8;
	color: #0172AE;
	margin:0;
	padding:0;
	border:solid 1px #07395a;
	border-top:none;
	border-left-width:5px;
	float:left;
	width: 22em;
	font-size:100%;
}
ul#nav li.top1 ul li,ul#nav li.top6 ul li,ul#nav li.top7 ul li {
	width:15em;
}
ul#nav li ul a {
	display: block;
	font-weight: bold;
	font-size:100%;
	color: #0172AE;
	z-index: 70;
	background-image: none; /* needed */
	text-align:left;
	padding-top:0.3em;  /* if too large th left border looks wrong */
	padding-bottom:0; /* needed */
	line-height:normal;
	border:none;
}
ul#nav ul.secondnav a:link,ul#nav ul.secondnav a:visited {
	background-color:#A6D0E8;
	color: #0172AE;
}
ul#nav ul.secondnav a:hover {
	background-color:#07395a;
	color:#fff;
}
ul#nav li ul li { /* put font-size here and not in higher elements to help align in em */
	height:auto;
}
ul#nav li ul a { /* put font-size here and not in higher elements to help align in em */
	padding:0.5em 0.8em;
	width:auto;
	height:auto;
}
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
	left: auto;
	color: #07395A;
	background-color:#A6D0E8;
	width: 23em; /* second menu width */
	height: 0;
	z-index:-2;
	border-top:none;
	font-size:100%;
}
 /** Top Nav End**/
