/* CSS Document */

<style type="text/css">
.nav body {
}

.nav ul {
	padding-left: 0;
	margin-left: 0;
	text-align: center;
	top: 125px;
	background-color: #CCCCCC;
	height: 0px;
	float: left;
	width: 799px;
}

.nav ul li {
	position: relative;
}

.nav ul > li { 
	/*SANJEEV - I changed this from inline to block*/
	display: block; 
	/*SANJEEV I CHANGED THIS FROM POSITION RELATIVE TO FLOAT LEFT. TRY IT IN MOZILLA. YOU CAN FIX THE REST*/
	float: left;
}



.nav ul li a {
		display: block;
		padding: 0.2em 0.1em;
		font-weight: bold;
		font-family:Verdana;
		font-size:11px;
		background-color: #cccccc;
		text-decoration: none;
		color: #000000;
		float: left;
		width:99px;
		border-right: 1px solid #fff;	
}


.nav ul li a:hover {
	background-color: #336699;
	color: #CCCCFF;
}

.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 #ffffff;
	border-left: 1px solid #ffffff;
	border-right: 1px solid #666666;
	border-bottom: 1px solid #666666;

 	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: left; height: 1%; }
* html .nav ul li a { height: 2%; }

.nav li > ul {
	top: auto;
	left: auto;
	margin-top: 12px;	
}

.nav li li a {
	font-weight: normal;
}

.nav li:hover ul, li.over ul{
	display: block; 
}

</style>
