body {font-family:verdana; font-size:10px; font-weight: normal; text-transform: uppercase;}

/* remove the list style */
#nav {
/*margin:0; */
padding:0; 
list-style:none;
}	

/* make the LI display inline */
/* it's position relative so that position absolute */
/* can be used in submenu */
#nav li {
	float:left; 
	display:block; 
	width:52px; 
	background:#e7e7e7; 
	position:relative;
	z-index:500; 
	margin-right:1px;
	border: 1px solid black;
}

#nav li.wider {
width: 82px;
}

#nav li.med {
width: 70px;
}

/* this is the parent menu */
#nav li a {
	display:block; 
	padding:2px 0px 0px 0px; 
	/*font-weight:700;  */
	height:16px; 
	text-decoration:none; 
	color:#fff; 
	text-align:center; 
	color:#333;
	
}

#nav li a:hover {
	color:#000;
}

/* you can make a different style for default selected value */
#nav a.selected {
	color:#000;
}

/* submenu, it's hidden by default */
#nav ul {
	position:absolute; 
	left:-1px; 
	display:none; 
	margin:0 0 0 0px; 
	padding:0; 
	list-style:none;
}

#nav ul li {
	width:135px; 
	float:left; 
	margin-top: 2px;
	margin-bottom: -3px;
	border-top: 1px solid #000;
	padding-top: 0px;
	background:#e7e7e7; 
	
}

/* display block will make the link fill the whole area of LI */
#nav ul a {
	display:block;  
	height:16px;
	padding: 2px 0px 0px 10px; 
	color:#000;
	text-align:left; 
}

#nav ul a:hover {
	text-decoration:none;	
	background:#cccccc; 
}

/* 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 0px;
}
