/* © 2007 AGI - Australian Gypsum Industries */
/* navigation menu */

#navcontainer {
	position: relative;
	margin-right: auto;
	margin-left: auto;
	height: 34px;
	width:560px;
	font-family: Trebuchet, Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	background: transparent;
	padding:100px 0 0 120px;
	z-index:100;
	}

#navcontainer ul{ margin: 0; padding: 0; list-style-type: none;}

/*Top level list items*/
#navcontainer ul li{
	position: relative;
	display: inline;
	float: left;
	background: transparent; 	
	line-height: 30px;
	text-decoration: none;
	}

/*Top level menu link items style*/

#navcontainer ul li a{
	display: block;
	/*Width of top level menu link items*/
	width: 100px;
	padding: 1px 2px 1px 2px;
	text-decoration: none;
	color: #fff;
	}
	
#navcontainer ul li a:hover{
	background: #777 url(../images/nav_bg_over.png) 0 0 repeat-x; 
	}
	
#navcontainer ul li a:active { 
	background: #777 url(../images/nav_bg_active.png) 0 0 repeat-x; 
	color: white;
	text-decoration: none;
	}	
	
/*1st sub level menu*/

#navcontainer ul li ul{
	left: 0;
	position: absolute;
	top: 1em; /* no need to change, as true value set by script */
	display: block;
	visibility: hidden;
	text-align: left;
	background-image: none;
	}
	
#navcontainer ul li ul a:hover{
	background-color: #666;
	color: #fff;
	background-image: none;
	}

/*Sub level menu list items (undo style from Top level List Items)*/

.navcontainer ul li ul li{ display: list-item; float: none; background-image: none; }

/*All subsequent sub menu levels offset after 1st level sub menu */
#navcontainer ul li ul li ul{ 
	left: 159px; /* no need to change, as true value set by script */
	top: 0;
	}

/* Sub level menu links style */
#navcontainer ul li ul li a{
	display: block;
	width: 120px; /*width of sub menu levels*/
	color: #666;
	text-decoration: none;
	padding: 1px 2px 1px 25px;
	border-bottom: 1px solid #666;
	border-right: 1px solid #666;
	border-left: 1px solid #666;
	background-color: #dedede;
	background-image: none;
	}

* html p#iepara{ /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/ padding-top: 1em; }
	
/* Holly Hack for IE \*/
* html #navcontainer ul li { float: left; height: 1%;}
* html #navcontainer ul li a { height: 1%;}
/* End */