#navigationMenu {
	font-family: Verdana, Arial, Helvetica, Sans-Serif; 
	font-size: 1em;
}
#navigationMenu, #navigationMenu ul {
	line-height: 1.5;
	text-align: left;
	float: right;
	margin: 0 0 1em 0;
	/* width sets the width of menu bar */
	width: 100%;
	line-height: 1em;
	padding: 0;
	border-width: 0;
	list-style: none;
    /* prevent menus from being covered */
    z-index: 99999;
}

#navigationMenu a {
	display: block;
	color: #c4b26e;
	text-decoration: none;
	padding: 0.25em 0.25em;
}
#navigationMenu li {
	float: right;
	padding: 0 3em 0 0;
	background-color: black;
}

#navigationMenu li ul {
	position: absolute;
	left: -999em;
	height: auto;
	width: 14em;
	font-size: 0.95em;
	margin: 0 0 0 3em;
}

#navigationMenu li li {
	width: 100%;
	background-color: #0a0a0a;
	padding-top: 0.25em;
}

#navigationMenu li ul a {
	margin-left: 0.5em;
}

/* show menu on hover */
#navigationMenu li:hover ul, #navigationMenu li li:hover ul, #navigationMenu li li li:hover ul {
	left: auto;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
	left: auto;
}


/*
Change background color of menu items to black when hovering 
*/
#navigationMenu li:hover{
	/* background: #777777; */
}
/*
Change font color of menu items to black when hovering 
*/
#navigationMenu li:hover a:hover{
	color: #777777; 

}
