	/* NAVIGATION BAR : BACKGROUND COLOR OR IMAGE / HEIGHT - WIDTH  */
nav {
   background: url(images/blockdefault.png) center center repeat-x; : for image background;
   /* ---------- use : background-color:#fc9e11; : for colour background  */
   /* ---------- use : background: url(images/blockdefault.png) center center repeat-x; : for image background  */
  height:40px;
  width: 100%;
  margin-top: 0px;
}
 
	/*  ---  BUTTON TAB DEFAULT : add a background colour or image to the */
	/*  ---  remove the bullet point style  */ 
nav ul {
    margin: 0px auto 0px auto;
	background: url(images/blockdefault.png) center center repeat-x;
   /* ---------- use : background-color:#fc9e11; : for colour background  */
   /* ---------- use : background: url(images/blockdefault.png) center center repeat-x; : for image background  */
	padding: 0;
	list-style: none;
	position: relative;
	display: inline-table;
    float: none;
}

	/* BUTTON TAB DEFAULT : add a background colour or image */
nav ul li:hover {
   		background: url(images/blockactive.png) center center repeat-x;
   /* ---------- use : background-color:#fc9e11; : for colour background  */
   /* ---------- use : background: url(images/blockdefault.png) center center repeat-x; : for image background  */
}

	/*  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: 10px 20px 10px 8px;
}

  /* BUTTON TAB LINK TEXT  */
a:link.navlink {font-size: 11pt; color:#ffffff; font-family: arial,Helvetica; text-decoration: none;}
a:visited.navlink {font-size: 11pt; color:#ffffff; font-family: arial,Helvetica; text-decoration: none;}
a:hover.navlink {font-size: 11pt; color:#ffffff; font-family: arial,Helvetica; text-decoration: none;}
a:active.navlink {font-size: 11pt; color:#ffffff; font-family: arial,Helvetica; text-decoration: none;}

  /* DROPDOWN MENU LINK TEXT   */
a:link.navlinksub {font-size: 11pt; color:#222222; font-family: arial,Helvetica; text-decoration: none;}
a:visited.navlinksub {font-size: 11pt; color:#222222; font-family: arial,Helvetica; text-decoration: none;}
a:hover.navlinksub {font-size: 11pt; color:#ffffff; font-family: arial,Helvetica; text-decoration: none;}
a:active.navlinksub {font-size: 11pt; color:#222222; font-family: arial,Helvetica; 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: 3px 10px 3px 10px;
		background: #999999;
}
					
	/* DROP DOWN MENU ACTIVE : SET BACKGROUND COLOUR    */
nav ul ul li a:hover {
		background: #a01111;
}
			
	/* IE hack for flash */			
nav ul ul ul {
		position: absolute; left: 100%; top:0; z-index:100;
}
 



