.clear {clear:both}	/* remove the list style */#nav {	margin:0; 	padding:0; 	list-style:none;	font-family:Arial, Helvetica, sans-serif; font-size:14px;	position:relative;	right:15px;	float:right;	height:31px;}			/* make the LI display inline */	/* it's position relative so that position absolute */	/* can be used in submenu */	#nav li {		float:left; 		display:block;		position:relative;		z-index:500; 		margin:0 1px;	}			/* this is the parent menu */	#nav li a {		display:block; 		padding:7px 15px 7px 15px; 		margin:0;		text-decoration:none; 		text-align:left; 	    color:#fff;	}	#nav li a:hover {		color:#c4b9f1;	}		/* you can make a different style for default selected value */	#nav a.selected {		color:#f00;	}			/* submenu, it's hidden by default */		#nav ul {			position:absolute; 			left:-1px;			display:none; 			margin:0; 			padding:0; 			list-style:none;			font-family:Arial, Helvetica, sans-serif; font-size:11px;			background-color:#603691;		}				#nav ul li {			width:170px;			float:right; 			border-top:1px dotted #7c52ad;		}				/* display block will make the link fill the whole area of LI */		#nav ul a {			display:block; 			height:17px;			padding: 4px 15px; 	    	color:#FFF;		}				#nav ul a:hover {			text-decoration:none;			background-color:#7c52ad;		}/* 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;}
