/*Sets the styles for the main UL elements that wraps the nav bar elements*/
#menu {
	height: 40px;
	width:800px;
	background: url(../images/navbar/navbar.gif) no-repeat;
	list-style-type:none; 
	padding:0;
	margin:0;
	border: none;
}
/* Common styles for the list items within the UL element*/
#menu li {
	position:absolute;
	padding:0; 
	margin:auto; 
	height:40px; 
	z-index:100;
	border: none;
}
/* Positioning li's within the UL element*/
.homenav{ width: 99px; left: 59px;}
.companynav{width: 99px; left: 159px;}
.newsnav{ width: 99px; left: 259px;}
.projectsnav{ width: 99px; left: 359px;}
.contactnav{width: 99px; left: 459px;}
.searchnav{width: 200px; left: 560px;}

#menu li dl {
	position:absolute; 
	width: 99px; 
	height:40px;
	margin: 0; 
	padding: 0; 
	border:none;
	top:0; 
	left:0;
}
/*Hides dd's when not on focus*/
#menu li dd {
	display:none;
}
/*i have no idea what this does but without it ie 6 fucks up*/
#menu li a:hover {border:0;}

#menu li:hover dd, #menu li a:hover dd {
	display:block;
}
/*this is for ie 6 & below.. wraps li's into tables*/
#menu table {
	border-collapse:collapse; 
	padding:0; 
	margin:-1px; 
	font-size:1em;
}
/*items in the rolled down menu*/
#menu dd {
	margin:0; 
	padding:0; 
	text-align:left;
}

/* Styles for the main a tag button*/
#menu dt a, #menu dt a:visited { 
	font-size: 14px; 
	display:block; 
	text-align: center; 
	color:#536A22; 
	background: transparent;
	height: 25px;
	padding-top: 10px;
}
/*selects the links in the roll down list*/
#menu dd a, #menu dd a:visited {
	background: #718a24;
	color:black; 
	text-decoration:none; 
	display:block; 
	padding:6px 20px; 
	width:120px;
	border-bottom: 1px solid #5c7219;
}
#menu .first a, #menu .first a:visited {
	padding-top: 20px;
}
#menu .last a, #menu .last a:visited {
	padding-bottom: 10px;
}


#menu .menubtn dd a:hover {background: #536713; color:#fff;}

#menu li:hover dt a, #menu li a:hover dt a{
	display:block;
	background:url(../images/hover.gif) repeat-x;
	color: white;
}

#menu li dt .selected, #menu li a:visited dt .selected{
	display:block;
	background:url(../images/selected.gif) no-repeat top center;
}

/*Styles for the search form*/


input#siteSearch {
	position:absolute;
	width: 130px;
	height: 22px;
	background: transparent url(../images/navbar/siteSearch.gif) no-repeat;
	border: none;
	padding: 3px 0 0 10px;
	margin:6px 0 0 0;
	top:0;
	left:40px;
	color:#536A22;
}

input#submitSearch {
	position:absolute;
	width:37px;
	height:22px;
	margin:6px 0 0 40px;
	background: transparent url(../images/navbar/submitSearch.gif) no-repeat ;
	border:none;
	top:0;
	left:140px;
}
