/* 2-level horizontal menu */

#navmenu {
	clear:left;
	position: relative;
	padding:0;
	margin:0;
	margin-top:-0;	
	left: 5px;
	width: 100%;
	height: 3.5em;
	background-color:red;
/* a width is required for Opera, older Mozilla browsers, and Konqueror browsers */
}

#navmenu ul#primary {
	position: relative;
	margin: 0;
	padding: 0;
	float:left; /* collapses submenu */
	width: 80em; /* a width is required for Opera, older Mozilla browsers, and Konqueror browsers */
}

#navmenu ul#primary li  {
	display: inline;
	list-style: none;
}
/* menu item text properties */
#navmenu ul#primary a,#navmenu ul#primary span,#navmenu ul#primary a.current {
	width: 6em;
	display: block;
	float: left;
	padding: 2px 0;
	margin: 1px 2px 0 0;
	text-align: center;
	font-family: tahoma, verdana, sans-serif;
	font-size: 90%;
	text-decoration: none;
	color: #000000;
}

/* selected menu item text properties */
#navmenu ul#primary span,#navmenu ul#primary a.current,#navmenu ul#primary a.current:hover {
	border: 1px solid transparent; /* border in main menu. acts as separator */
	border-bottom: none;
	background: #ff0000;
	padding-bottom: 6px;
	margin-top: 0;
	text-align: center;
	font-family: tahoma, verdana, sans-serif;
	font-size: 90%;
	text-decoration: none;
	color: #ffffff;
	font-weight:bold;
}
/* non-selected menu item text properties */
#navmenu ul#primary a {
	background: #ffffff;
	border: 2px solid red; /* border in main menu. acts as separator */
	border-bottom: none;
	font-weight: bold;
}
/* hovering over menu items text properties */
#navmenu ul#primary a:hover {
	margin-top: 0;
	border: 2px solid red; /* border in main menu. acts as separator */
	background: #FFFFFF;
	padding-bottom: 5px;
	font-weight: bold;
}
/* sub-menu items text properties */
#navmenu ul#secondary {
	position: absolute;
	margin: 0;
	padding: 0;
	bottom: -1.8em;
	left: 1px;
	width: 80em; /* a width is required for Opera, older Mozilla browsers, and Konqueror browsers */
}
#navmenu ul#secondary li a,#navmenu ul#secondary li span {
	width: auto;
	background: #ff0000;
	padding-bottom: 6px;
	margin-top: 0;
	text-align: center;
	font-family: tahoma, verdana, sans-serif;
	font-size: 90%;
	text-decoration: none;
	color: white;
}
/*Sub menu text properties*/
#navmenu ul#secondary li a {
	width: auto;
	color: white;
	font-weight: bold;
	text-decoration: none;
	border-right: 2px solid white;
	padding-right: 4px;
	font-size:80%;
}
/*Sub menu text on hover properties*/
#navmenu ul#secondary li a:hover {
	width: auto;
	padding-top:2px;
	color: #ffffff;
	font-weight:bold;
	background: white;
	padding-bottom: 2px;
	border: 2px;
	color:black;
	height: 1.4em;
	font-size:80%;
	border-right: 2px solid red;
}
#navmenu ul#secondary li a:active {
	color: #fff;
	background: red;
}
