.nav {
	background-image: url(../images/navtab.gif);
	background-repeat: "no-repeat";
	text-align: left;
	float: left;
	position: absolute;
	padding:0; 
	width:340px;
	margin-top:0px;
	height: 29px;
	color: #fff;
	background-repeat: no-repeat;
	z-index: 100;
	font-weight: bold;
		}
.navbase {
	background-image: url(../images/navbase.gif);
	width: 230px;
	height: 15px;
	display: block;
	background-repeat: no-repeat;	}

/* hack to correct IE5.5 faulty box model */
* html .nav {
	width:230px;
	w\idth:230px;
	height: 15px;
}
/* remove all the bullets, borders and padding from the default list styling */
.nav ul {
	padding:0;
	margin:0 0 0 25px;
	list-style-type:none;
}
.nav ul ul {
	width:230px;
	display: block;
	position: absolute;
	top:28px;
	left:-100px;
}


/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.nav li{
	float:left;
	position:relative;
	padding-right: 20px;
	display: block;
	height: 20px;
}

/* style the links for the top level */
.nav a {
	height: 30px;
	display:block;
	font-size:13px;
	text-decoration:none;
	font-weight:bold;
}
.nav a:link {
	display:block;
	text-decoration:none;
	font-weight:bold;
	color: #fff;
}
.nav a:visited {
	display:block;
	text-decoration:none;
	font-weight:bold;
	color: #fff;
}
#current {
	color:#ff9239;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .nav a, * html .nav a:visited {width:149px; w\idth:138px;}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {background:#d4d8bd url(http://www.cssplay.co.uk/menus/breadcrumbs/grey-arrow.gif) no-repeat 130px center;}
/* style the second level hover */
.nav ul ul a.drop:hover{
	background-color: #ff9239;
}
.nav ul ul :hover > a.drop {
	background-color: #ff9239;;
}
/* style the third level background */
.nav ul ul ul a, .nav ul ul ul a:visited {background:#2a2a2a;
}
/* style the third level hover */
.nav ul ul ul a:hover {
	background:#ff9239;
	color: #2a2a2a;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.nav ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	
}


/* another hack for IE5.5 */
* html .nav ul ul {
	top:30px;
	t\op:10px;
}

/* position the third level flyout menu */
.nav ul ul ul{
	
	z-index: 18;
	left:155px;
	top:0;
	width:140px;
	text-align: left;
}

/* position the third level flyout menu for a left flyout */
.nav ul ul ul.left {left:-149px;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.nav table {
	position:absolute;
	top:50px;
	left:0;
	border-collapse:collapse;
	text-align: left;
}

/* style the second level links */
.nav ul ul a, .nav ul ul a:visited {
	font-family: Arial, Helvetica, sans-serif;
	color:#FFF;
	height:20px;
	clear: both;
	line-height:16px;
	padding:0 0 0 25px;
	width: 205px;
	font-size: 11px;
	background-color: #2a2a2a;
	text-align: left;
	display: block;
}
/* yet another hack for IE5.5 */
* html .nav ul ul a, * html .nav ul ul a:visited {width:150px;w\idth:128px;}

/* style the top level hover */
.nav a:hover {
	color:#ff9239;
}
.nav a:current {
	color:#ff9239;
}
.nav :hover > a  {
	color:#ff9239;
}
.nav ul ul a:hover{
	color:#2a2a2a;
	background-color:#ff9239;
}
.nav ul ul :hover > a {
	color:#2a2a2a;
	background-color:#ff9239;
}

/* make the second level visible when hover on first level list OR link */
.nav ul li:hover ul,
.nav ul a:hover ul{
	visibility:visible;
	background-color: #ff9239;
}
/* keep the third level hidden when you hover on first level list OR link */
.nav ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.nav ul :hover ul :hover ul{ visibility:visible;}
