	/* 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 {

			float:left; 

			display:block;

			background:#ccc; 

			position:relative;

			z-index:500; 

			margin:0 auto;

			background:url(../images/nav.jpg); background-repeat:repeat-x;

		}

		

		/* this is the parent menu */

		#nav li a {

			display:block; 

			padding:14px 5px 3px 5px;

			font-weight:700;  

			height:28px; 

			text-decoration:none; 

			color:#fff; 

			text-align:center;

			font-family:Arial, Helvetica, sans-serif;

			font-size:12px;

			font-weight:bold;
			
			border-right:#990000 solid 1px;		

		}



		#nav li a:hover {

			background:url(../images/nav_over.jpg); background-repeat:repeat-x;

			font-family:Arial, Helvetica, sans-serif;

			font-size:12px;

			font-weight:bold;

		}

	

		/* 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:0px 0 0 -1px; 

			padding:0; 

			list-style:none;

		}

		

		#nav ul li {

			width:240px; 

			float:left; 

			border-top:1px solid #000;

			background:url(../images/navline.jpg); background-repeat:repeat-x;

			left:-0px;

		}

		

		/* display block will make the link fill the whole area of LI */

		#nav ul a {

			display:block;  

			height:16px;

			padding: 8px 5px; 

			color:#fff;

			font-family:Arial, Helvetica, sans-serif;

			font-size:12px;

			font-weight:normal;

		}

		

		#nav ul a:hover {

			background:url(../images/orange.jpg); background-repeat:repeat-x;

			color:#000000;

			font-family:Arial, Helvetica, sans-serif;

			font-size:12px;

			font-weight:normal;

		}



		/* 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;

		}





