/*rg-css-2010*/

ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #FFFFFF;
}
ul li {
	position: relative;
	float: left;
	width: 100px;
	color: #FFFFFF;
}

li ul {
  position: absolute;
  top: 25px;
  display: none;
  color: #FFFFFF;
}/*px below is depth where the 2nd box starts under the top box on drop down*/
ul li a {
	display: block;
	text-decoration: none;
	line-height: 20px;
	color: #FFFFFF;
  background-color: black;
	padding: 3px;
	/*px margin makes a gap between button images*/
  margin: 0px;
	font-size: 10px;
	font-family: Arial, Helvetica, sans-serif;
	background-image: url(images/but-bg-u.jpg);
	font-weight: bold;
	text-align: center;
}

ul li a:hover {
	font-weight: bold;
	font-size: 10px;
	background-image: url(images/but-bg-d.jpg);
	color: #FFFFFF;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
/*if you don't have this next rule in then link of buttons follows hyperlink standard colour*/
}
ul li a:link {
  color: #FFFFFF;

}
ul li a:hover {
  color: #FFFFFF;
}
ul li a:visited {
  color: #FFFFFF;
}
li:hover ul, li.mouseover ul {
  display: block;
  font-size: 10px;
  font-weight: bold;
  color: #FFFFFF;
	text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}
