#headermenu {
  background-image: url("http://www.russcochran.com/images/menugradientout.gif");
  background-repeat: repeat-x;
  width: 980px;
  height: 20px;
}
#headermenu ul { /* all lists */
	list-style: none;
  height: 20px;
	z-index: 999;
}

#headermenu ul li { /* all list items */
	float: left;
	position: relative;
	z-index: 999;
  padding: 1px 10px 0px 10px;
  height: 20px;
}

#headermenu li ul { /* second-level lists */
	display: none;
	position: absolute;
	width: 100px;
	top: 20px;
	left: 0;
	z-index: 999;

}

#headermenu li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
/*	top: auto;
	left: auto; */
	z-index: 999;
}

#headermenu li:hover ul, #headermenu li.over ul { /* lists nested under hovered list items */
	background-color: #fff;
	display: block;
	z-index: 999;
}
#headermenu ul li a {
  text-decoration: none;
  color: #fff;
}
#headermenu ul li ul li a {
  text-decoration: underline;
  color: #fff;
}
