/*  --------------------------------------  top horizontal navigation bar  -------------------------------------- */

#topNavigation{
	height: 16px;
	width: 770px; 
	margin: 0;
	padding: 2px 15px 2px 15px; /*8px*/
}

#topNavigation ul {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000000; 
	margin:10px 0px 0px 10px; 
	list-style:none;
	z-index:999;	
}

#topNavigation li {  /* menu item */
	/*color: #000000;*/
	color: #000000;
	float: left;
	margin-left: 2px;
	margin-right: 2px;
	line-height:20px;
	font-weight:normal;	
	position: relative;
	z-index:999;
}

#topNavigation li a{ /* menu text */
	text-decoration:none;
	/*color: #000000;*/
	color: #000000;
	font-weight:normal;
	padding: 5px 5px 0px 2px; 
}

#topNavigation li a:hover{ /* menu text hover */
	color: #666666;

}

#topNavigation li:hover ul{ display: block;z-index:999; }  

#topNavigation li ul{  /* menu drop down box */
	width: 200px;
	left: 1px;
	top: 22px;
	position: absolute;
	border-top: #000000 solid 4px;
	border-bottom: #000000 solid 2px;
	display: none; 
	margin: 0px 5px 0px 5px;  
	padding: 0px; 
	z-index:999;
	}

#topNavigation li ul li { 
	/* menu drop down box item */
	background: transparent url(../images/bg_subnav.gif) bottom repeat-y;
	/*background: transparent url(../images/bg_nav.jpg) bottom repeat-x;d0dfE6
	background-color:#bbcdd7;*/
	padding: 0;
	margin:0; 
	z-index:999;	
}

#topNavigation li ul li a{ /* menu drop down box text */
	display: block; 
	width: 190px;
	/*color: #000000; */
	color: #000000;  
	font-size:10px; 
	text-align: left; 
	text-decoration: none;
	padding: 4px 5px 8px 5px;
	font-weight:normal;
	border: 0;
	margin: 0; 
	} 
	
#topNavigation li ul li a:hover { /* menu drop down box text hover */
	/*color: #000000; */
	color: #000000; 
	width: 190px;
	text-decoration:none;
	font-weight:normal;
	margin: 0;
	}
	
#topNavigation li ul li:hover { /* menu drop down box hover */
	/*background: transparent url(../images/bg_subnav.png) bottom repeat-x;*/
	background: transparent url(../images/bg_navitems.gif) bottom repeat;
	border: 0;
	margin: 0;
	}		
	
/* sub menu */	

#topNavigation li ul li ul { /* sub menu drop down box */
	margin-left: 148px;
	/*background-color: #ffffff;*/
	background-color: #ffffff;
	top: 2px;
	display: none;
	padding: 0px;
	z-index:999;

	}		
/* hide the sub levels and give them a positon absolute so that they take up no room */
#topNavigation ul ul {
visibility:hidden;
position:absolute;
z-index:999;
}
/* make the second level visible when hover on first level list OR link */
#topNavigation ul li:hover ul,
#topNavigation ul a:hover ul {
visibility:visible;
z-index:999;
}

/* keep the third level hidden when you hover on first level list OR link */
#topNavigation ul :hover ul ul{
visibility:hidden;z-index:999;
}
/* keep the fourth level hidden when you hover on second level list OR link */
#topNavigation ul :hover ul :hover ul ul{
visibility:hidden;z-index:999;
}
/* make the third level visible when you hover over second level list OR link */
#topNavigation ul :hover ul :hover ul{ 
visibility:visible;z-index:999;
}
/* make the fourth level visible when you hover over third level list OR link */
#topNavigation ul :hover ul :hover ul :hover ul { 
visibility:visible;z-index:999;
}	
  

