.nav{
	float: left;
	list-style: none;
	font-weight: bold;
}

.nav:after{ /*Add margin between menu and rest of content in Firefox*/
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}

.nav ul{
	float: left;
	height: 39px;
	list-style: none;
	background: url(../images/menuBG.jpg) repeat-x;
	padding: 0;
	margin: 0;
	width: 850px;
}

.nav ul li{
	/*position: relative;*/
	float: left;
	/*display: inline;*/
}

.nav ul li a {
	color: #000000;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
	padding: 12px 9px 12px 6px;
	display: block;
	background: url(../images/divider.jpg) right no-repeat;
}

.nav ul li a:hover{
background: url(../images/menuRO.jpg) right no-repeat;
}


.nav ul li a[rel]:after{ /*HTML to indicate drop down link*/
/*
content: " v";
*/
content: "";
}

/*content: " " url(downimage.gif); /*uncomment this line to use an image instead*/



/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
position:absolute;
/*top: 0;*/
border: 1px solid #BBB; 
border-bottom-width: 0;
font:normal 10px Veranda, Arial, Helvetica, sans-serif;
line-height:18px;
z-index:100;
background-color: white;
width: 200px;
visibility: hidden;
/*filter: progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=4); Add Shadow in IE. Remove if desired*/
}


.dropmenudiv a{
width: auto;
display: block;
text-indent: 3px;
border-bottom: 1px solid #BBB; 
padding: 2px 0;
text-decoration: none;
font-weight: bold;
color: black;
}

* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover{ 
background-color: #652d90;
color: #FFFFFF;
}