/* CSS Document */
/* used for the navigation bar */
#nav
{	padding: 0px;
	margin: 0px;
	width:100%;
	height: 24px;

	
}

#nav ul 
{
	list-style: none;
	font-family: verdana;
	font-size: 12px;
	font-weight: normal;
	letter-spacing:-0.02em;


}
#nav li a {
	display: block;
	text-decoration: none;
	color: #000;
	padding: 5px 7px 3px 7px;
	background-color:#B4B4B4;
}
#nav li a:link {
	display: block;
	text-decoration: none;
}
#nav li a:visited {
	display: block;
	text-decoration: none;
}
#nav li a:hover {display:block; color:#000000;}
#nav li a:active {display: block;}
#nav li {

	margin: 0;

	/* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	margin-left: 0;
	background: #555556;
	width: 150px;
	padding: 5px;
	line-height: 1.5em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	z-index: 10000;
}

/* lists nested items under hovered list items */
#nav li:hover ul, #nav li.sfhover ul { 
	left: auto;
} 

/* dropdown styles */
#dropNav li a {
	font-family:verdana;
	font-size: 11px;
	font-weight: normal;
	letter-spacing:-0.02em;
	width: 150px;
	padding: 3px 3px 10px 5px; /* this gives adds an indent to the dropdown link text */
	border-bottom: 1px solid #d1d1d1;
	border-right:none;
	color: #000;
}

#dropNav li a:visited {
	display: block;
	width: 150px;
	color: #000;
	text-decoration: none;
}

#dropNav li a:hover {
	display: block;
	width: 150px;
	color: #000;
	background-color: #DBF0FA;
}

#dropNav li a:active {
	display: block;
	width: 150px;
	color: #000;
	background-color: #DBF0FA;
}

.nav-dvdr
{
	background-image: url('http://www.bhaskar.com/images/nav-dver.gif');
	background-repeat: no-repeat;
	background-position:  right 50%;
}

/* CSS Document */


