/* CSS Document */

#menu {
	width: 1024px;
	height: 35px;
	background-image: url(../../images/menu_bkg.png);
	background-position: 0 0px;
	background-repeat: repeat-x;
}

#nav {
	margin:0;
	padding:0; 
	list-style:none;
	float: left;
	z-index: 110;
}	
	
	/* make the LI display inline */
	/* it's position relative so that position absolute */
	/* can be used in submenu */
	#nav li {
		float:left;   
		position:relative;
		z-index:500; 
		margin:0 0px;
		background-image: url(../../images/menu_bkg.png);
		background-position: 0 0px;
	}
		
	/* this is the parent menu */
	#nav li a {
		display:block; 
		padding: 11px 19px 9px; /* FOR 6 ELEMENTS IN THE MENU padding: 11px 24px 9px; */
		text-decoration:none; 
		color:#fff; 
		text-align:center; 		
		background-image: url(../../images/menu_bkg.png);
		background-position: right -71px;
	}

	#nav li:hover {		
		background: #FFB300;		
		background-image: url(../../images/menu_bkg.png);
		background-position: 0 -36px;
	}
	
	#nav li a:hover { 		
		background-image: url(../../images/menu_bkg.png);
		background-position: right -106px;
		color: #333;
	}
	
	/* you can make a different style for default selected value */
	#nav a.selected {
		color:#f00;
	}
	
		/* submenu, it's hidden by default */
		#nav ul {
			position:absolute; 
			left:0; 
			display:none; 
			margin:0 0 0 -1px; 
			padding:0 0 4px 0; 
			list-style:none;
			background-color: #333;
			border-left: 1px solid #FFF;
			border-bottom: 1px solid #FFF;
			border-right: 1px solid #FFF;
		}
		
		#nav ul li {
			text-align: left;
			background-image: none;
			background-color: #333;
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;
			width: 140px;
			height:15px;
			color:#FFF;
			text-align: left;
			background-image: none;
		}
		
		#nav ul a:hover {
		background: #FFB300;		
		background-image: url(../../images/menu_bkg.png);
		background-position: 0 -36px;
		}

/* fix ie6 small issue */
/* we should always avoid using hack like this */
/* should put it into separate file : ) */
*html #nav ul {
	margin:0 0 0 -2px;
}

#nav li.selected {
	background-color: #0CC;
}

#home a{
	background-image: url(../../images/menu_bkg.png);
	background-position: 0 -140px;
	background-repeat: no-repeat;
	width: 75px;
	height: 35px;
	display: block;
	float: left;
}

#home a:hover{
	background-image: url(../../images/menu_bkg.png);	
	background-position: -75px -140px;
	background-repeat: no-repeat;
}