/* Navigation CSS Document */
body 

body div#listmenu ul li ul
{
	display:none; /*--- Hides all drop down menus ---*/
}
div#listmenu /*--- Menu List Container ---*/
{
	width:776px;
	float:right; /*--- Makes the div enclose the list ---*/
	background-image:url(../images/topNavBg-black.jpg);
	background-repeat:no-repeat;
	background-position:center;
	padding:1px 1px 1px 1px;
	margin-top:-1px;
	height:21px;
}

div#listmenu ul
{
	margin:0px;
	padding:0px 0 0 0px;
}

div#listmenu li
{
	float:left; /*--- Causes the list to align horizontally instead of stack ---*/
	position:relative; /*--- Positioning context for the absolutely positioned drop-down ---*/
	list-style-type: none; /*--- Removes the bullet off list items ---*/	
	background-image:url(../images/navBorder-black.jpg);
	background-position:left;
	background-repeat:no-repeat;
	padding:2px 0px;
 
}
div#listmenu ul li.first {
	background:none;
	background-image:none;
	padding-left:8px;
}
div#listmenu ul li.first:hover {
	background:none;
	background-image:none;
	background-color:#5e7e4b;
	padding-left:8px;
}
div#listmenu ul li.last {

	padding-right:7px;
}
div#listmenu ul li.last:hover {

	background-color:#5e7e4b;
	padding-rightt:7px;
}
div#listmenu li:hover
{
	background-color:#5e7e4b;
}

div#listmenu ul li a:link, div#listmenu ul li a:visited, div#listmenu ul li a:active, div#listmenu ul li a:hover {
	font-weight:bold;
	display:block; /*--- List items in drop down highlight and wrapped lines indent correctly ---*/
	padding:0px 16px 0px 21px; /*--- Space on sides of menu item's text ---*/
	text-decoration: none; /*--- Removes the underlining of the link ---*/
	color:#ffffff;
}
div#listmenu ul li:hover ul
{
	display:block; /*--- Displays appropriate drop down menu ---*/
	background-color:#5e7e4b;
}

div#listmenu ul li ul
{
	margin:0px; /*--- Prevents the temp margin on the ul from inheriting here ---*/
	position:absolute; /*--- Positions the drop-down ul in relation to its relatively positioned li parent ---*/
	left:3px; /*--- Aligns the drop-down exactly under the menu ---*/
	top:20px;
	padding:0px;
	background-color:#326f10;
}
div#listmenu ul li ul.about {
	width:155px;
	
}
div#listmenu ul li ul.services {
	width:210px; /*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
}
div#listmenu ul li ul.clients {
	width:137px;
}
div#listmenu ul li ul.alliances {
	width:150px;
}
div#listmenu ul li ul li
{
	width:100%; /*--- Makes the list items fill the list containers (ul) ---*/
	border-left:1px solid #1e5102; /*--- Three sides of each drop-down item ---*/
	border-bottom:1px solid #1e5102;
	border-right:1px solid #1e5102;
	padding:0px;
	margin:0px;
	background:none;
	background-image:none;
	background-color:#5e7e4b;
}
div#listmenu ul li ul li:hover {
	background-color:#66974b;
}
div#listmenu ul li ul li.firstDrop {
	border-top:1px solid #1e5102; /*--- The top edge of the drop-down ---*/
}
div#listmenu ul li ul li a:link, div#listmenu ul li ul li a:visited, div#listmenu ul li ul li a:active, div#listmenu ul li ul li a:hover
{
	display: block;
	width:100%;
	padding:1px 0 1px 9px;
	margin:0px;
}