﻿#nav {
		margin:13px 0 0 0; 
		padding:0; 
		list-style:none;
		font: 11px Arial;
		letter-spacing: 1px;
	}	
	
/* make the LI display inline */
/* it's position relative so that position absolute */
/* can be used in submenu */
#nav li {
	float:left; 
	text-align: center;
	display:block;
	background:#F9F9F9;
	border: 1px solid #454545;
	position:relative;
	z-index:0; 
	margin: 0 1px;
}
		
/* this is the parent menu */
#nav li a {
	display:block; 
	padding:4px 6px 4px 6px;
	font-weight: bold;
	text-decoration:none; 
	color:#fff; 
	text-align:center; 
	color:#333;
}

#nav li:hover { background:#C27EC8;  }
#nav li a:hover {color: white;}
	
/* 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:1px 0 0 -2px; 
	padding:0; 
	list-style:none;
}
		
#nav ul li {
	width:140px; 
	border-top: 0px;
}
		
/* display block will make the link fill the whole area of LI */
#nav ul a {
	display:block;  
	text-align: left;
	padding: 4px 10px 4px 10px;
	color:#666;
	font-weight: normal;
}
		
#nav ul a:hover { text-decoration:none; }

/* 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;
}
