/*
Food Water Shelter
Menu CSS file
David Nash
davidnash.com.au
30/03/2007
*/

#menu ul {
	list-style: none;
	padding: 0px;
	text-align: right;
}

#menu li {
	display: block;
	position: relative;
}

#menu li a {
	display: block;
	color: #888;
	background-color: #fff;
	padding: 3px 7px 3px 0px;
	text-transform: lowercase;
}

#menu li a:hover, .selected {
	color: #fff;
	background: url("../images/button_bg_hover.gif") 2px 1px no-repeat;
	text-decoration: none;
}

.selected {
	color: #fff !important;
}


/* second level */

#menu ul li ul {
	position: absolute;
	left: 125px;
	top: 2px;
	display: none;
	width: 151px;
	list-style: none;
	text-align: left;
	padding: 4px 0px 0px 0px;
	background: url("../images/menu_over_top.gif") no-repeat;
}

#menu li:hover ul, #menu li.over ul {
	display: block;
}

#menu ul li ul li a {
	display: block;
	background-color: #b0db20;
	padding: 2px 0px 10px 10px;
	color: #fff;
	font-size: 90%;
	text-transform: lowercase;
	border-bottom: 1px solid #fff;
}

#menu ul li ul li a:hover {
	text-decoration: none;
	color: #444;
	background-image: none;
	background-color: #b0db20;
}

/* provides the rounded corners at the end of the list*/
#menu ul li ul li.lastItem {
	height: 4px;
	background: url("../images/menu_over_bot.gif") no-repeat;
	position: relative;
	top: -1px;
}


