/*Main Navbar */

		
#nav, #nav ul {
	font-weight:bold; 
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	background: url(image/menu-bar.jpg);
	padding: 0;
	margin: 0;
	list-style: none;
	width: 100%;
}

#nav a { /* top level txt styles */
 	padding: 0.30em 1em; 
	color: #fff; 
	border-right: 1px solid #c8c8c8; 
	text-decoration: none; 
	background: url(image/menu-bar.jpg);
	display: block;
	}

#nav li {
	float: left;
	position:relative;
	width: auto;
}

#nav li ul {
	position: absolute;
	width: 120px; 
	top:1.9em;
	left: -999em; /* this shoves the dropdown off the screen to hide */
	height:auto; 
	float:left; 
	border-bottom:1px solid #c8c8c8;
	display: block;
}

#nav li ul a {  /* 1 lev dropdown txt styles */
 	padding: 0.30em 1em; 
	color: #fff; 
	text-decoration: none; 
	background: url(image/menu-bar.jpg);
	display: block;
	width: 130px;
	white-space:nowrap;
	}

#nav li:hover ul {
	left: auto; /* this brings the dropdown back */
}

#nav li:hover ul, #nav li.sfhover ul {
	left: auto; /* this brings the dropdown back (sfhover is the suckerfish java for ie6 compatability) */
}

/* 2nd level drop out 
#nav li ul ul {
	margin: -1em 0 0 10em;
}
#nav, #nav ul {
	padding: 0;
	margin: 0;
	list-style: none; 
	line-height: 1;
}
/*
#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}
#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul {
	left: auto;
}*/
