nav {
  background: url(images/blockdefault.png) center center repeat-x; : for image background;
  height:30px;
  width: 1060px;
  margin-top: 5px;
}
 
nav ul {
	margin:0px 0px 0px 0px;
	 background: url(images/blockdefault.png) center center repeat-x;
	padding: 0;
	list-style: none;
	position: relative;
	display: inline-table;
}

nav ul li:hover {
   		background: url(images/blockactive.png) center center repeat-x;
}

	/*  padding setting for TOP menu -  first digit is top/bottom margins affects the HEIGHT - second number is the right and left margins and affects the width - of the menu BUTTONS / TABS */
nav ul li a:link {
		display: block; padding: 5px 35px 5px 10px;
}

	/* BUTTON TAB LINK TEXT  */
a:link.navlink {font-size: 11pt; color:#ffffff; font-family: verdana,arial; text-decoration: none;}
a:visited.navlink {font-size: 11pt; color:#ffffff; font-family: verdana,arial; text-decoration: none;}
a:hover.navlink {font-size: 11pt; color:#5b3e0a; font-family: verdana,arial; text-decoration: none;}
a:active.navlink {font-size: 11pt; color:#ffffff; font-family: verdana,arial; text-decoration: none;}

	/* DROPDOWN MENU LINK TEXT   */
a:link.navlinksub {font-size: 11pt; color:#5b3e0a; font-family: Trebuchet MS,arial; text-decoration: none;}
a:visited.navlinksub {font-size: 11pt; color:#5b3e0a; font-family: Trebuchet MS,arial; text-decoration: none;}
a:hover.navlinksub {font-size: 11pt; color:#ffffff; font-family: Trebuchet MS,arial; text-decoration: none;}
a:active.navlinksub {font-size: 11pt; color:#5b3e0a; font-family: Trebuchet MS,arial; text-decoration: none;}

	/* hide sub list menu */
nav ul ul {
		display: none;
}

	/* show sub list menu */
nav ul li:hover > ul {
		display: block;
}

	/* clear style for other div */
nav ul:after {
		content: ""; clear: both; display: block;
}

	/* create main menu border */
nav ul li {
		float: left;
		border-right: 1px solid #FFF;
}

	/* hide the last list border  */
nav ul li:last-child {
  		border-right: hidden;
}

	/* sub DROP DOWN MENU list */
nav ul ul {
		padding: 0;
		position: absolute; t
		top: 100%;
}

nav ul ul li {
		float: none; 
		position: relative;
		text-align:left;
		border:hidden;
}
	
	/* DROP DOWN MENU DEFAULT : SET PADDING MARGINS / BACKGROUND COLOUR    */
nav ul ul li a:link {
		padding: 5px 10px; 5px 10px;
		background: #c89b41;
}
					
	/* DROP DOWN MENU ACTIVE : SET BACKGROUND COLOUR    */
nav ul ul li a:hover {
		background: #6d4a0d;
}
			
	/* IE hack for flash */			
nav ul ul ul {
		position: absolute; left: 100%; top:0; z-index:100;
}
 



