/* CSS Document */
#navMenu {
	float:right;
	margin:0; 
	padding:0;
	list-style:none;	
	font-family:arial;
	font-size:10pt;
	text-decoration:none;
	font-weight:bold;
	text-transform:uppercase;
	text-align:center;
	line-height:50px;
	height:50px;
}

	#navMenu li {
		float:left;	
		background:url(../images/menu.jpg) no-repeat left top;	/* default background image	*/
		width:113px;							/* width and height of the menu item */
		height:50px;
		overflow:hidden;
		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	*/
		height:70px;
		text-decoration:none;		
		position:relative;
		color:#FFF;
	}

 	#navMenu li .hover {
		/*background:url(images/menu_hover.jpg) no-repeat left top;		/* mouseover image	*/
		position:absolute;	/* must be postion absolute 	*/
		width:113px;	/*	width, height, left and top to fill the whole LI item	*/
		height:50px;
		text-decoration:none;		
		left:0; 
		top:0;	
		z-index:0;		/* display under the Anchor tag	*/
		display:none;	/* hide it by default	*/
	}	

	#navMenu li .selected {
		background:url(../images/menu_hover.jpg) no-repeat left top;	/* selected image	*/
	}

    #navMenu li img {
			position: absolute;
			top: 51px;
			left: 0;
			border: 0;
		}


