﻿#navMenu {
	margin:0; 
	padding:0;
	list-style:none;		
	text-align:center;
	vertical-align:middle;
	line-height:60px;
	font-size:14px;
	color:White;	
	font-weight:bold;
	font-family:Maiandra GD;
	/*font-family:Viner Hand ITC;
	font-family:jr!hand;*/
	border-width:0px;
	/*width:100%;	*/
	
}

	#navMenu li
{
	/*border-width: 1px;
	border-style: solid;
	border-color: #3C6A7F;*/
	float: left;
	width: 120px; /*			width and height of the menu item */
	height: 50px;
	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:60px;
		position:relative;
		color:White;
		text-decoration:none;
	}

 	#navMenu li .hover {
		background:url(../Images/over.jpg) repeat-x center center;		/* mouseover image	*/
		position:absolute;	/* must be postion absolute 	*/
		width:120px;		/*width, height, left and top to fill the whole LI item	*/
		height:60px;		
		left:0; 
		top:0;	
		z-index:0;		/* display under the Anchor tag	*/
		display:none;	/* hide it by default	*/
		text-decoration:none;
	}
	