#nav {
	padding: 0px;
	margin: 0px;
	line-height: 15px;
/*	position: relative;*/
}

/* The actual menus */
#nav li{
	list-style: none;
	float: left;
	padding-left: 1em;
	padding-right: 1em;
	padding-bottom: 0.5em;
	padding-top: 0.5em;
	position: relative;
	margin: 0px;
	z-index: 1;
/*
	background-color: #ffffff;
*/
	color: #ffffff;
	font-weight: bold;
}

#nav li a{
	color: #D10101;
	text-decoration: none;
}

/* Hover on the menus */
#nav li:hover, #nav li.over {
	color: #D10101;
	background-color: #ffffff;
}

/* The drop downs all browsers */
#nav li ul{
	position: absolute;
	top: 24px;
	left: 0em;
	margin: 0em;
	padding: 0.3em;
	padding-left: 1em;
	padding-right: 1em;
	display: none;
	color: #D10101;
	background-color: #ffffff;
	width: 13em;
}

/* Firefox fix - since width not set on menus, sets dropdowns to size of menu header, dropdown items flow outside of dropdown boundries*/
#nav li > ul{
	top: 2em;
}

/* Shows the dropdown */
#nav li:hover ul, #nav li.over ul{
	display: block;
}

/* menu items */
#nav li li{
	float: none;
	padding: 0px;
	margin: 0;
	color: #D10101;
	background-color: #ffffff;
	font-weight: normal;
}
