#navHolder
{
	margin-left:92px;
	width:818px;
	background-color:#521012;
	display:inline-block;
	border-left: 2px solid #521012;
	border-right: 1px solid #521012;
	position:absolute;
	top:174px;
}

#navMenu {
	margin:0;
	padding:0;
	list-style:none;
	font-family:arial;
	text-align:center;
	line-height:32px;
	background-color:#521012;
	position:relative;
}

	#navMenu li {
		float:left;
		background: #521012 url(../images/default.jpg) no-repeat center center;	/* default background image	*/
		width:100px;							/* width and height of the menu item */
		height:32px;
		border-left:1px solid #111;				/* simulate pixel perfect using border */
		border-right:1px solid #333;
		border-top:1px solid #555;
		border-bottom:1px solid #333;
		position:relative;			/* must set it as relative, because .hover class top and left with absolute position will be positioned according to li.	*/
	}

	#navMenu li a {
		z-index:20;		/* z-index must be higher than .hover class */
		display:block;	/* display as block and set the height according to the height of the menu to make the whole LI clickable	*/
/*		width:100px;							/* width and height of the menu item */
		height:32px;
		position:relative;
		color:#ecdcbb;
		font-weight:bold;
		letter-spacing:1px;
		text-transform: uppercase;
	}

 	#navMenu li .hover {
		background: #521012 url(../images/over.jpg) no-repeat center center;		/* mouseover image	*/
		position:absolute;	/* must be postion absolute 	*/
		width:100px;							/* width and height of the menu item */
		height:32px;
		left:0;
		top:0;
		z-index:0;		/* display under the Anchor tag	*/
		display:none;	/* hide it by default	*/
	}

	#navMenu li.selected {
		background: #521012 url(../images/selected.jpg) no-repeat center center;	/* selected image	*/
	}
