/* CSS Menu */
#menu{
	margin-top:35px;
	margin-left:230px;
	position:absolute;
	z-index:5;
	width:763px;
	height:25px;
	background:url(../images/menu.gif) repeat-x;
}

#menu ul{
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;          
}
#menu ul li{
	position:relative;
	float:left;
}

/* non-selected buttons -----------------------------*/
#menu ul li a,
#menu ul li a:visited {		
	display:block;
	float:left;
	text-decoration:none;
}

#menu li.one{
	background:url(../images/btn_about.gif) no-repeat bottom;
	width:84px;
	height:25px;
}
#menu li.two{
	background:url(../images/btn_opp.gif) no-repeat bottom;
	width:139px;
	height:25px;
}
#menu li.three{
	background:url(../images/btn_search.gif) no-repeat bottom;
	width:71px;
	height:25px;
}

/*rollovers */
.one:hover a,
.one a:hover{
	width:84px;
	height:25px;
	background:url(../images/btn_about.gif) no-repeat top;
}
.two:hover a,
.two a:hover{
	width:139px;
	height:25px;
	background:url(../images/btn_opp.gif) no-repeat top;
}
.three:hover a,
.three a:hover{
	width:71px;
	height:25px;
	background:url(../images/btn_search.gif) no-repeat top;
}


/*selected buttons ---------------------------------*/
#menu li.one-selected{
	background:url(../images/btn_about.gif) no-repeat top;
	width:84px;
	height:25px;
}
#menu li.two-selected{
	background:url(../images/btn_opp.gif) no-repeat top;
	width:139px;
	height:25px;
}
#menu li.three-selected{
	background:url(../images/btn_search.gif) no-repeat top;
	width:71px;
	height:25px;
}


