#navbar { 
	position:relative;
	z-index:100;
}
/* remove all the bullets, borders and padding from the default list styling */
#navbar ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
#navbar ul ul { width:149px; }
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#navbar li {
	float:left;
	position:relative;
}
/* style the links for the top level */
#navbar a, #navbar a:visited {
	display:block;
	padding:6px 13px 0px;
	font-size:11px;
	text-decoration:none; 
	color:#fff; 
	/*width:100px;*/
	height:24px; 
	
}
/* a hack so that IE5.5 faulty box model is corrected */
/* * html #navbar a, * html #navbar a:visited { width:100px; w\idth:100px; }*/

/* hide the sub levels and give them a positon absolute so that they take up no room */
#navbar ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:27px;
	left:0; 
	width:110px;
	border-bottom:1px solid #000;
}
/* another hack for IE5.5 */
* html #navbar ul ul { top:29px;t\op:30px; }

/* style the table so that it takes no ppart in the layout - required for IE to work */
#navbar table {
	position:absolute; 
	top:0; 
	left:0; 
	border-collapse:collapse;
}

/* style the second level links */
#navbar ul ul a, #navbar ul ul a:visited {
	background:#375E87; 
	color:#fff; 
	height:auto; 
	line-height:1em; 
	padding:5px 12px 5px 15px; 
	width:128px;
	border:1px solid #0B214B;
	border-top:0;
}
/* yet another hack for IE5.5 */
* html #navbar ul ul a, * html #navbar ul ul a:visited { width:150px;w\idth:128px; }

/* style the top level hover */
#navbar a:hover { 
	color:#E15F00;
	background:url(images/navbar.gif) repeat-x top left;
}
#navbar ul ul a:hover { background:#0B214B; }

/* make the second level visible when hover on first level list OR link */
#navbar ul li:hover ul,
#navbar ul a:hover ul{ visibility:visible; }
