
#wrapper-menu {
	background: #DA3A3A repeat-x top left;
	float: left;
	width: 100%;
}

#menu {
	width: 100%;
	margin: 0 auto;
	font-size: 90%;
	font-style: normal;
	font-family: Arial, Helvetica, sans-serif;
	white-space: nowrap; /* stops half a menu link dropping to next line. Instead, the whole link will drop. This only happens if you have a lot of menu links, and large text size */
	padding-right: 2px;	/* The menu far left, and far right borders are not quite lining up in non IE browsers for some reason. This makes it less noticable */
}

* html #menu { padding-right: 0; } /* See above comment. This re-adjusts IE to the above padding */

#menu ul {
	margin: 0;
	padding: 0;
	list-style: none 0px;
	float: left;
	width: 100%;
}

#menu li { display: inline; }

#menu a:link, #menu a:visited {
	padding: 0.25em 1em;
	background: transparent;
	color: #fff;
	text-decoration: none;
	float: none;

}

#menu a:hover {
	background: #32CD32;
	color: #8B0000;
	height: auto;
}

