#menuul{
	color:#000000;
	margin: 0;
	padding: 0;
	height: 33px;
	position: relative;
	top: 0px;
	left: 50px;
}

#menuul li{
	font-size: 11px;
	display: inline;
	float: left;
	padding-top: 10px;
	margin: 0;
	background:#fff;
	height:33px;
}
#nav ul li a:link, #nav ul li a:visited, #nav ul li a:hover, #nav ul li a:active{
	color:#000000;
	text-decoration:none;

}


/*HORIZONTAL POP OUT MENU*/
#nav ul ul li a:link, #nav ul ul li a:visited{
	float: left;
	display: block;
	color: #696969;
	margin:0;
}

#nav ul ul li a:hover, #nav ul ul li a:active{
	color: #ffffff;
	height: 26px;
	text-decoration: none;
}

#nav ul li ul li a:link, #nav ul li ul li a:visited{
	display: block;
	height: 23px;
	width: 120px;
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 20px;
	text-align: left;
	font-family: Arial,Helvetica,sans-serif;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 11px;
	line-height: normal;
	font-size-adjust: none;
	font-stretch: normal;
	-x-system-font: none;
	color: #ffffff;
	text-decoration:none;
	background-color:transparent;
	background-image: url(../img/subnav_arrow.gif);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: 8px 13px;

}

#nav ul li ul li a:hover, #nav ul li ul li a:active{
	display: block;
	color: #000000;
	background-color: #d1dbe3;
	height: 23px;
	text-align: left;
	font-family: Arial,Helvetica,sans-serif;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 11px;
	line-height: normal;
	font-size-adjust: none;
	font-stretch: normal;
	-x-system-font: none;
	text-decoration:none;

}

#nav {
	position:relative;
	z-index:50;
}
		

		
		
#nav ul { /* remove bullets and list indents */
	list-style:none;z-index:999px; height:35px;
}
#nav li{/* make the list elements a containing block for the nested lists */
	position: relative;
	width: auto;
	float: left;
	background:url(../img/nav_divider.gif) left top no-repeat;
	padding: 0 12px 0 13px;
	
}
#nav ul li ul li{/* make the list elements a containing block for the nested lists */
	position: relative;
	float: left;
	left:0px;
	padding: 0px;
	border: 0px; /*border colour*/
	z-index:999;
	background:url(../img/drop-nav_bg.png) left bottom repeat;
}

/*STYLE COLOUR AND SIZE LEVEL 1 LINKS*/
#nav ul li ul li a:link, #nav ul li ul li a:visited {
	display:block;
	height: 23px;
	width: 150px;
	padding: 8px 0px 2px 20px;
	text-align:left;
	font:normal 11px Arial, Helvetica, sans-serif;
	color:#ffffff;
	background:url(../img/subnav_arrow.gif) 8px 13px no-repeat; 
}

#nav ul li.selected ul li a:link, #nav ul li.selected ul li a:visited, #nav ul li.selected ul li a:active {
	color:#ffffff;
}

#nav ul li ul li a:hover, #nav ul li ul li a:active {
	display:block;
	color:#000;
	background-color: #b7cac8;
	height: 23px; 
	text-align:left;
	font:normal 11px Arial, Helvetica, sans-serif;
}

/*STYLE COLOUR AND SIZE LEVEL 2 LINKS*/
#nav ul ul li a:link, #nav ul ul li a:visited { 
	float: left;
	display: block;
	height: 26px;
	color: #696969;
	margin:0;
	padding:0;
}
#nav ul ul li a:hover, #nav ul ul li a:active { 
	color: #ffffff;
	height: 26px;
	text-decoration:none;
}
#nav ul ul li {
	padding: 0px;
	margin: 0px;
	border-right:none;
	text-indent: 0px;
	display:block;
	/*border-bottom:dotted 1px #95acbe;*/
}

/*POSITIONING THE POP OUTS*/

#nav ul ul {
	position: absolute;
	z-index: 500;
	margin:0px;
	display:block;
	left:-40px; /*change for mozilla*/
	top:31px;
	
}

#nav ul ul ul {
	display:block;
	position: absolute;
	top: 0px;
	left: 100%; /* to position them to the right of their containing block */
	width: 100%; /* width is based on the containing block */
	margin-bottom: 2px;
	margin-left: 10px; /* to position them to the right of their containing block */
}
/*HIDING & REVEALING 2 LEVEL USING :hover*/
div#nav ul ul, div#nav ul li:hover ul {
	display: none;
}

div#nav ul li:hover ul, div#nav ul ul li:hover ul { 
	display: block;
}

/*HIDING & REVEALING 3 LEVEL USING :hover*/
div#nav ul ul ul, div#nav ul ul li:hover ul ul {
	display: none !important;

}


div#nav ul ul li:hover ul, div#nav ul ul ul li:hover ul {
	display: block !important;
	width: 200px;
