	/* menu.css RCD 07/07/2010 */
  /* new version for www.theneedlesbattery.og.uk */
	
  ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family:arial, serif;
  }
  
  ul li {
  position: relative;
  float: left;
  width:100px;
  }
  
  li ul {
  position: absolute;
  left: 0; /* Set 1px less than menu width */
  top: auto;
  display: none;
  }
  
  /* Styles for Menu Items */
  ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  background: #808080; /* IE6 Bug */
  padding: 5px;
  margin:0 1px;
  font-size:12px;
  line-height:15px;
  }
  /* commented backslash mac hiding hack \*/ 
  * html ul li a {height:1%}
  /* end hack */ 
  
  /* this sets all hovered lists to #ccc */
  li:hover a, li.over a,
  li:hover li a:hover, li.over li a:hover {
  color: #000;
  background-color:#ccc;
  }
  
  /* set dropdown to default */
  li:hover li a, li.over li a {
  color: #fff;
  background-color: #808080;
  }
  
  li ul li a { padding: 2px 5px; } /* Sub Menu Styles */
  li:hover ul, li.over ul { display: block; } /* The magic */