﻿/*** Menu ***/
#menu {
	clear: both;
	font: bold 16px Arial;
	/*font: bold 16px Vrinda;*/
	/*width: 900px;*/
	width: 100%;
	/*height: 25px;*/
	height: 34px;
	background: url('../images/layout/menu-bluebg.gif') repeat-y;
	/*background: url('/images/layout/menu-blueblackbg.gif') repeat-x;*/
	padding-top: 1px; /* forces no space with logo and menu in Firefox */
	/*padding-top: 174px;*/ /* use padding if have menu on BackGround */
	/*background: blue;*/
	border-bottom: 1px solid #000;
	z-index: 999;
}

#nav {
	margin: 1px 0 1px 0;
	padding-left: 5px;
	padding-top: 7px;
	list-style: none;
	z-index: 999;
}

#nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	z-index: 999;
}

#nav a {
	display: block;
	text-decoration: none;
	z-index: 999;
}

#nav .toplevel {
	padding: 0 10px 0 10px;
	border-right: 1px solid #676661;
	z-index: 999;
}

#nav .toplevel-last {
	padding-left: 10px;
	padding-right: 10px;
	border: 0;
	z-index: 999;
}

#nav .subitem {	width: 12em; border-bottom: 1px solid #000; }

#nav .lastitem { width: 12em; border-bottom: 1px solid #000; }

#nav li {
	float: left;
	z-index: 999;
}

/*** Top Menu Links ***/
#nav li a { /* top-level link style */
	/*font: bold 15px verdana, arial, sans-serif;*/
	font: bold 18px verdana, arial, sans-serif;
	/*font: bold 18px vrinda;*/
	/*font: 24px vrinda;*/
	color: #fff;
	/*background: #000;*/
	z-index: 999;
}

#nav li a:hover { /* top-level link hover effects */
	/*font: bold 15px verdana, arial, sans-serif;*/
	font: bold 18px verdana, arial, sans-serif;
	/*font: bold 18px vrinda;*/
	/*font: 24px vrinda;*/
	/*color: Maroon;*/
	color: Silver;
	/*color: #000;*/
	/*color: #006CA6;*/
	/*background: #fff;*/
	/*background: silver;*/
	z-index: 999;
}

/*** Drop Down Lists ***/
#nav li ul li a {
	font: bold 14px verdana, arial, sans-serif;
	/*font: bold 16px vrinda;*/
	/*color: #000;*/
	/*color: #006CA6;*/
	color: #fff;
	text-align: left;
	/*background: white;*/
	/*background: silver;*/
	background: #2c2c2c;
	/*padding: 0;*/
	padding: 3px 0 3px 10px;
	margin-top: -2px;
	border: 1px solid #d2d2d2;
	z-index: 999;
}

#nav li ul li a:hover {
	font: bold 14px verdana, arial, sans-serif;
	/*font: bold 16px vrinda;*/
	/*color: #fff;*/
	/*background: #000;*/
	/*color: #a30;*/
	color: #114477;
	background: silver;
	z-index: 999;
}

/*** Second Level ***/
#nav li ul {
	position: absolute;
	background: #000;
	width: 120px;
	border-top: 1px solid #d2d2d2;
	left: -999em;
	z-index: 999;
}

html>body #nav li ul { /* handles width of drop down box */
	width: 128px;
	z-index: 999;
}

#nav li ul ul {
	margin: -1em 0 0 10em;
	z-index: 999;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
	z-index: 999;
}

/*** menu hover properties for drop down ***/
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
	left: auto;
	z-index: 999;
}

#nav li:hover, #nav li.hover {
	position: static;
	z-index: 999;
}

/*** End Menu Section ***/