@charset "utf-8";
/* CSS Document */

/* body {font-family:arial; font-size:11px;} */
	
	/* 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:133px; */
			/* width:14%; */ 
			background:#000000; 
			position:relative;
			z-index:500; 
			/* margin:0 1px; */
		}
		
		/* this is the parent menu */
		#nav li a {
			display:block; 
			/* padding:8px 5px 0 5px; */ 
			/* font-weight:700; */  
			/* height:20px; */  /* 23 */ 
			text-decoration:none; 
			color:#fff; 
			text-align:center; 
			color:#FFFFFF;
			margin-top:10px;
			margin-bottom:10px;
			font-family:Verdana, Arial, Helvetica, sans-serif;
			font-size:14px;
			
			
		}

		#nav li a:hover {
			color:#fff;
		}
	
		/* you can make a different style for default selected value */
		#nav a.selected {
			color:#bdae77;
		}
	
		/* 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:220px; 
			float:left; 
			border-top:1px solid #fff;
			padding-left:10px;
			/* height:40px; */
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			/* display:block; */  
			/* height:0px; */ /* 15 */
			/* padding: 8px 5px; */ 
			color:#FFFFFF;
			text-align:left;
			
			
		}
		
		#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;
		}