/**************************************************
 * © TRM Consulting Services Ltd
 * * Contact: trevor@trmcs.com
 * This copyright notice MUST stay intact for use.
 **************************************************/
.menu ul{
	margin: 0;
	padding: 0;
	font: bold 12px Verdana;
	list-style-type: none;
	border-bottom: 0px solid gray;
	background: #666666;
	height: 30px;
	overflow: hidden;
	width: 100%;
}
.menu li{
	display: inline;
	margin: 0;
}
.menu li a{
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;
	padding: 6px 8px;
	border-right: 2px solid white;
	color: white;
	background: #666666;
}
.menu li a:visited{
	color: white;
}
.menu li a:hover{
	background: black;
	text-decoration: none;
	color: yellow;
}
.menu a.selected{
	background: black;
}
.submenu, .submenu ul{
	font: normal 13px Verdana;
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	top: 0;
	list-style-type: none;
	background: white;
	border: 1px solid black;
	border-bottom-width: 0;
	visibility: hidden;
	z-index: 100;
}
.submenu li a{
	display: block;
	width: 150px;
	color: black;
	background-color: lightyellow;
	text-decoration: none;
	padding: 4px 5px;
	border-bottom: 1px solid black;
}
* html .submenu li a{ /*IE6 CSS hack*/
	display: inline-block;
}
.submenu li a:hover{
	background-color: black;
	color: white;
}
.downarrowpointer{
	padding-left: 4px;
	border: 0;
}
.rightarrowpointer{
	position: absolute;
	padding-top: 3px;
	right: 2px;
	border: 0;
}

