.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:absolute;	right:0;	top:25px;}			/* 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:5px 8px 8px 8px; 		margin:0;		height:14px; 		text-decoration:none; 		text-align:left; 	    color:#600a2d;	}	#nav li a:hover {		color:#fff;		background-color:#600a2d;	}		/* 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:0; 			display:none; 			margin:0; 			padding:0; 			background-color:#600a2d;			list-style:none;			font-family:Arial, Helvetica, sans-serif; 			font-size:10px;			font-weight:normal;		}				#nav ul li {			width:175px; 			float:left; 			border-top:1px dotted #821d34;		}				/* display block will make the link fill the whole area of LI */		#nav ul a {			display:block;  			height:16px;			padding: 4px 8px; 	    	color:#FFF;		}				#nav ul a:hover {			text-decoration:none;			background-color:#821d34;		}/* 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;}/* remove the list style */#nav2 {	margin:0; 	padding:0; 	list-style:none;	font-family:Arial, Helvetica, sans-serif; font-size:11px;	position:absolute;	right:0;	top:4px;}			/* make the LI display inline */	/* it's position relative so that position absolute */	/* can be used in submenu */	#nav2 li {		float:left; 		display:block;  		position:relative;		z-index:500; 		margin:0 1px;	}			/* this is the parent menu */	#nav2 li a {		display:block; 		padding:5px 8px;  		height:14px; 		text-decoration:none; 		text-align:left; 	    color:#444;	}	#nav2 li a:hover {		color:#000;		background-color:#fff;	}		/* you can make a different style for default selected value */	#nav2 a.selected {		color:#f00;	}	/* fix ie6 small issue *//* we should always avoid using hack like this *//* should put it into separate file : ) */*html #nav2 ul {	margin:0 0 0 -2px;}