/* nav */
#menu{
	height:24px;
	width:974px;
	margin-left:0px;
	border-left:2px solid #999999;
	border-right:2px solid #999999;
	background:url(../images/nav_bg.gif) repeat-x;
	}
	#menu img{
		padding:0;
		margin-top:-5px; 	/*fixes button placement for IE6*/
		border:0;
	}
	#menu ul{
		list-style:none;
		margin:0;
		padding:0;
	}
	#menu li{
		float:left;    	/* this creates the side-by-side array of top-level buttons */
		position:relative;    	/* create local positioning contexts for each button */
		margin:0;
		color:#fff;
	}
	#menu li.spacer{
		margin-top:8px;
	}
	
	#menu li a{
		font-size:13px;			/*only for buttons' text, not for dropdowns' text*/
		height:24px;
		display:block;
		color:#fff;
		text-decoration:none;
	}	
	
	#menu li.button1{
		/*background:url(../images/solutions_btn.gif) no-repeat bottom;*/
		width:102px;			/*only for buttons' text, not for dropdowns' text*/
		height:24px;
	}	
	.button1:hover a,
	.button1 a:hover{
		width:102px;
		height:24px;
		/*background:url(../images/solutions_btn_over.gif) no-repeat bottom;*/
		background:url(../images/nav_bg_over.gif) repeat-x;
	}
	
	#menu li.button2{
		/*background:url(../images/portfolio_btn.gif) no-repeat bottom;*/
		width:118px;			/*only for buttons' text, not for dropdowns' text*/
		height:24px;
	}	
	.button2:hover a,
	.button2 a:hover{
		width:118px;
		height:24px;
		/*background:url(../images/portfolio_btn_over.gif) no-repeat bottom;*/
		background:url(../images/nav_bg_over.gif) repeat-x;
	}
	
	#menu li.button3{
		/*background:url(../images/about_btn.gif) no-repeat bottom;*/
		width:91px;			/*only for buttons' text, not for dropdowns' text*/
		height:24px;
	}	
	.button3:hover a,
	.button3 a:hover{
		width:91px;
		height:24px;
		/*background:url(../images/about_btn_over.gif) no-repeat bottom;*/
		background:url(../images/nav_bg_over.gif) repeat-x;
	}
	
	#menu li.button4{
		/*background:url(../images/contact_btn.gif) no-repeat bottom;*/
		width:108px;			/*only for buttons' text, not for dropdowns' text*/
		height:24px;
	}	
	.button4:hover a,
	.button4 a:hover{
		width:108px;
		height:24px;
		/*background:url(../images/contact_btn_over.gif) no-repeat bottom;*/
		background:url(../images/nav_bg_over.gif) repeat-x;
	}
	
	
	
		
	#menu ul li table{
		margin:-1px 0;              	/* IE5 needs -1px top and bottom table margins */
		border-collapse:collapse;      	/* IE5 needs this for the sub-menus to work */
	}
/*======= TOP LEVEL MENU DEFINITIONS =======*/

#menu ul li ul,
#menu ul.level-two {
	display:none;                 /* initially hide the entire list hierarchy */
	padding:1px;                   /* this is our box border width */
}

#menu ul li a,
#menu ul li a:visited {		/* unselected top-level menu items/buttons */
	display:block;
	text-align:center;
	text-decoration:none;
	line-height:22px;
}

/*===== 2ND LEVEL MENU DEFINITIONS =====*/

#menu ul li:hover ul.leftbutton,
#menu ul li a:hover ul.leftbutton {                           /* 2nd level drop-down box */
	display:block;
	position:absolute;
	margin:0;
	top:24px;              	/* place us just up underneath the top-level images. need extra pixel for IE */
	left:0px;       	/* specifying left will break menu in Mac Opera */
	height:auto;     	/* the drop-down height will be determiend by line count */
	color:#fff;                /* this sets the unselected-text color */
	background:#000;     /* this sets our menu's effective "border" color */
	z-index:2;				/*to put dropdown menu above buttons */
}

/*dropdown menu unselected links*/
#menu ul li:hover ul li a,
#menu ul li a:hover ul li a {                   	/* 2nd level unselected items */
	border-right:1px solid #7a7978;
	border-top:1px solid #7a7978;
	border-left:1px solid #7a7978;
	margin:0;
	padding:5px 5px 5px 12px;
	height:auto;
	color:#fff;               		/* this sets the unselected drop-down text color */
	background:#211f1e;       	/* this sets the drop-down menu background color */
	width:10em;
	text-align:left;
	font-size:12px;
	line-height:14px;	
}

/*dropdown menu selected links*/
#menu ul li:hover ul.leftbutton li:hover a,
#menu ul li a:hover ul.leftbutton li a:hover {               	/* 2nd level selected item */
	background-color:#33373b;				   	/*highlights over list items*/
} 


/*===== 3RD LEVEL MENU DEFINITIONS =====*/

#menu ul li:hover ul.leftbutton li ul,
#menu ul li a:hover ul.leftbutton li ul {
	display:none;
}

#menu ul li:hover ul.leftbutton li:hover ul,
#menu ul li:hover ul.leftbutton li a:hover ul,
#menu ul li a:hover ul.leftbutton li:hover ul,
#menu ul li a:hover ul.leftbutton li a:hover ul {
	display:block;
	position:absolute;
	margin:0;
	left:139px;
	top:0;
	height:auto;     	/* the drop-down height will be determiend by line count */
	color:#fff;                /* this sets the unselected-text color */
	background:#000;     /* this sets our menu's effective "border" color */
	z-index:2;				/*to put dropdown menu above buttons */
}


#menu ul li:hover ul.leftbutton li:hover ul.thirdbutton li a,
#menu ul li:hover ul.leftbutton li:hover ul.thirdbutton li{
	background-color:#000;
}

#menu .thirdbutton li a:hover,
#menu .thirdbutton li:hover{
	background-color:#33373b;				   	/*highlights over list items*/
}