.clear {clear:both}	
/* remove the list style */

.master_nav{
	width: 1200px;
	float: left;
	background-color: #edefe8;
	border-top: solid 1px #edefe8;
	border-bottom: 1px solid #edefe8;}




	
	/* 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: auto; 
		background: #edefe8; 
		position:relative;
		z-index: 500; 
		margin: 0 0px;
	}
		
	/* this is the parent menu */
	#nav li a {
		display: block; 
		padding: 20px 30px; 
		height: auto; 
		text-decoration:none; 
		text-align:center; 
		color: #000;
		font-size: 18px;
		font-family:'VAG Rounded W01 Bold';
		font-weight: normal;
	}

	#nav li a:hover {
		color: #fff;
		background: #aad054; 
	}
	
	/* you can make a different style for default selected value */
	#nav a.selected {
		color: #000;
		background: #fadbe3; 
	}
	
		/* submenu, it's hidden by default */
		#nav ul {
			position:absolute; 
			left:0; 
			display:none; 
			margin: 0 0 0 0px; 
			padding:0; 
			list-style:none;
		}
		
		#nav ul li {
			width: 210px; 
			float:left; 
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display: block;  
			padding: 8px 10px 8px 22px; 
			color: #000;
			font-size: 14px;
			text-align: left;
			background-color: #edefe8;
			border-bottom: 1px dashed #b6b1a7;

		}
		
		#nav ul a:hover {
			text-decoration:none;	
			color: #fff;
		    background: #aad054; 
		}

/* fix ie6 small issue */
/* we should always avoid using hack like this */
/* should put it into separate file : ) */

