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

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


	
	/* 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: #F3F3E8; 
		position:relative;
		z-index: 500; 
		margin: 0 0px;
	}
		
	/* this is the parent menu */
	#nav li a {
		display: block; 
		padding: 20px 29px; 
		height: auto; 
		text-decoration: none; 
		text-align: center; 
		color: #64D0C1;
		font-size: 16px;
		font-family: 'Montserrat', sans-serif;
		font-weight: 700;
	}

	#nav li a:hover {
		color: #5DC8D8;
		background: #c9f5ff; 
	}
	
	/* 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: 230px; 
			float:left; 
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display: block;  
			padding: 10px 10px 10px 29px; 
			color: #999;
			font-size: 14px;
			text-align: left;
			background-color: #f9f9f3;
			border-bottom: 1px solid #ECEBEB;

		}
		
		#nav ul a:hover {
		text-decoration:none;	
		color: #5DC8D8;
		background: #c9f5ff;
		}

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

