.clear {clear:both}	
/* 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 {
		position: relative;
		float: left; 
		display: block; 
		width: 200px; 
		height: 36px;
		background: transparent; 
		z-index: 500; 
		margin: 0px 0px 0px 0px;
		line-height: 100%;
	}
		
	/* this is the parent menu */
	#nav li a {
		display: block; 
		padding: 0px; 
		font-weight: normal;  
		height: 36px; 
		text-decoration: none; 
		color: #FFFFFF; 
		text-align: center; 
	}

	#nav li a:hover {
		color: #FFFFFF;
		text-decoration: none;
	}
	
	/* you can make a different style for default selected value */
	#nav a.selected {
		color: #FFFFFF;
	}
	
		/* 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 {
			float: left; 
			width: 178px;
			height: auto;
			color: #CCCCCC;
			font-family: Arial;
			font-size: 11px;
			padding: 10px;
			background: url('../images/bg_services_content.png');
			background-repeat: no-repeat;
			background-position: bottom left;
			background: #0E0E12;
			border: 1px solid #2E3192;
			border-top: 0px solid #2E3192;
			margin: 0px 0px 0px 1px;
			text-align: left;
			line-height: 150%;
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display: block;  
			height: auto;
			padding: 0px; 
			color: #FFFFFF;
			line-height: 150%;
		}
		
		#nav ul a:hover {
			text-decoration: none;	
		}


#nav ul a.learn_more, a.learn_more:hover {
	text-align: left;
	font-size: 14px;
	font-weight: bold;
	color: #F5821F;
}

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