@charset "UTF-8";
/* CSS Document */

	/* remove the list style */
		#nav {
	margin:0;
	padding:0;
	list-style:none;
	float: left;
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#nav li {
	float:left;
	width:115px;
	position:relative;
	z-index:10;
	margin-left: 2px;
	padding: 0px;
		}
		
		/* this is the parent menu */
		#nav li a, #nav li #nolink {
	display:block;
	text-decoration:none;
	color:#fff;
	text-align:center;
	font-weight: bold;
	background: url(../Assets/hughenden-triumph-nav-bg.jpg) no-repeat scroll left top;
	text-transform: uppercase;
	margin: 0px 0px 1px;
	padding: 0px;
	width: 115px;
	font-size: 14px;
	height: 35px;
		}
	
	#nav li #nolink {
		padding-top:9px;
		}

		#nav li a:hover {
	color: #63aaf5;
	background: url(../Assets/hughenden-triumph-nav-over-bg.jpg) no-repeat scroll left top;
		}
	
		/* 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 0 0 -1px;
	list-style:none;
	padding:0px;
	background: #00021d;
	border-right: 1px solid #00043E;
	border-bottom: 1px solid #00043E;
	border-left: 1px solid #00043E;
		}
		
		#nav ul li {
	background: #00021d;
	margin: 0px;
	padding: 0px;
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
	display:block;
	width:116px;
	height:30px;
	color:#FFF;
	margin-top: 1px;
	padding: 2px;
	background: url(none);
	font-size: 12px;
		}
		
		#nav ul a:hover {
	color: #63aaf5;
	background: url(none);
		}

		/* 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;
		}

