/* CSS Document */

<style type="text/css">
.nav body {
}

.nav ul {
  display: block;
	padding-left: 0;
	margin-left: 0;
	text-align: center;
	vertical-align: top;
	/* background-color: #ffffff; */
	float: right;

}

.nav ul li {
	position: relative;
}

.nav ul > li { 
	/*SANJEEV - I changed this from inline to block*/
  display: block;
  
	float: right; 
}



.nav ul li a {
		
		padding: 0.1em 0.1em;
  	display: block;
		font-weight: bold;
		font-family:Verdana;
		font-size:11px;
		background-color: #FFFFFF;
		text-decoration: none;
		color: #000000;
		float: left;		
		width: 99px;		
		border: 1px solid #FFFFFF; 

}


.nav ul li a:hover {
	background-color: #eeeeee;
	border: 1px solid #000000;
}


.nav li ul {
	display: none;
	top: 8px;
	left: 0px;
	margin-top: 3px;
	width:110px;
	font-weight: normal;
	position: absolute;
	background: url(images/ddbg3.gif) bottom left no-repeat;
	padding: 0.5em 0em 1em 0em;
}




.nav li ul li a{
	border-top: 1px solid #000000;
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;

 	width:115px;
}


/* Only Internet Exploder can read the following entry.  This is a fix for IE's handling of float. */
* html .nav ul li { float: right; height: 1%; }
* html .nav ul li a { height: 2%; }

.nav li > ul {
	top: auto;
	left: auto;
	margin-top: 15px;	
}

.nav li li a {
	font-weight: normal;
}

.nav li:hover ul, li.over ul{
	display: block; 
}

</style>
