/* Drop Down Navbar working with JQuery */

/* resets */
#navbar ul, #navbar li {
	margin: 0;
	padding: 0;
	z-index:100;
}

#navbar {
	width: 958px;
	height: 32px;
	background-color: #4c721e;
	border:1px solid #fff;
}

#navbar ul {
list-style-type: none;
position: absolute;
}

#navbar li {
    float: left;
	text-align: center;
}

#navbar li a {
	width: 100px;
	height: 24px;
	font-size: 12px;
	text-decoration: none;
	color: #fff;
	display: block;
	padding-top: 8px;
	border-right:1px solid #72904e;
}

#navbar a:hover {
	background-color: #286070;
}

/* Specific sizes for each item */

#navbar li a.nav_home { width:134px; }
#navbar li a.nav_about { width:146px; }
#navbar li a.nav_expertise { width:145px; }
#navbar li a.nav_news { width:195px; }
#navbar li a.nav_contact { width:158px; }
#navbar li a.nav_clients { width:175px; border-right:none; }

/* ON state for marking a menu item */

#navbar a.on {
	background-color: #286070;
}

#navbar li:hover {
/* if you want the parent li to have a different style when its menu is out */
}

#navbar ul li ul {
display: none;
overflow: hidden;
float: none;
background-color: #4c721e;
}

#navbar ul li ul li {
float: none;
}

#navbar ul li ul li a{
/* child item specific styles in here */
border-top:1px solid #72904e;
border-right:none;
width:176px;
height:20px;
padding-top:3px;
font-size:11px;
text-align:left;
padding-left:8px;
}

#navbar ul li ul li a:hover{
/* child item specific styles in here */
}

#navbar ul li:hover ul {
display: block;
}

/*IE hover fix, IE doesn't support pseudoclasses applied to anything but an <a> */

#navbar ul li.hover ul {
display: block;
position: absolute;
}
