#nav {
	margin:0; 
	padding:0; 
	list-style:none;
        font-size:9px;
        text-transform:uppercase;
        font-weight:bold;
}	
	
	/* 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:60px; 
		position:relative;
		z-index:0; 
		margin:0 1px;
                background:url(images/left.jpg) left no-repeat;

	}

	/* this is the parent menu */
	#nav li a {
		display:block; 
		padding:8px 5px 0 5px; 
		height:21px; 
		text-decoration:none; 
		color:#fdfcfc; 
		text-align:center; 

	}

	#nav li a:hover {
		color:#fff;
	}
	
	/* 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; 
			list-style:none;
                        font-size:8px;
		}
		
		#nav ul li {
			width:100px; 
			float:left; 
                        background:#b3010f;
		}

                #nav ul li:hover {
			background:#c2000f;
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;  
			height:15px;
			padding: 8px 5px; 
			color:#fff;
		}
		
		#nav ul a:hover {
			text-decoration:underline;	
		}

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