@charset "utf-8";
/* CSS Document */

	
	/* remove the list style */
	#nav {
		margin:0; 
		margin-left:24;
		padding:0; 
		list-style:none;
		font-size:11px;
		z-index:3;
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#nav li {
			float:left; 
			display:block; 
			
			background:#000000; 
			position:relative;
			z-index:500; 
			margin:0 1px;
			border-left:dotted 1px #ffff66;
			
			text-transform:uppercase;
		}
		
		/* this is the parent menu */
		#nav li a {
			display:block; 
			padding:5px 2px 0 0px; 
			font-weight:700;  
			height:25px; 
			text-decoration:none; 
			color:#ffffcc; 
			text-align:center; 
			color:#333;
		}

		#nav li a:hover {
			color:#fffff;
		}
	
		/* you can make a different style for default selected value */
		#nav a.selected {
			color:#ffff66;
		}
	
		/* submenu, it's hidden by default */
		#nav ul {
			position:absolute; 
			left:0; 
			display:none; 
			margin:0 0 0 -1px; 
			padding:0; 
			list-style:none;
		}
		
		#nav ul li {
			width:135px; 
			float:left; 
	
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;  
			height:15px;
			padding: 8px 5px; 
			color:#ffff66;
		}
		
		#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;
		}
