#head_menu_outer {
	width: 730px;
	float: left;
	margin: 0;
	padding: 0;
	border-bottom: solid 1px #E0E0E0;
}
#head_menu {
	font-size:10px;
	font-family: verdana, arial, sans-serif;
	position:relative;
	z-index:100;
}

/* style the table so that it takes no part in the layout - required for IE to work */
#head_menu table {
	position: absolute;
	top: 0;
	left: 0;
}

/* remove all the bullets, borders and padding from the default list styling */
#head_menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#head_menu li {
	float:left;
	position:relative;
}

/* PARENT LINKS */
#head_menu a,
#head_menu a:visited {
	display: block;
	font-size: 10px;
	font-weight: normal;
	text-decoration: none;
	color: #000000;
	height: 22px;
	line-height: 22px;
	padding-left: 10px;
	padding-right: 10px;
}

/* IE5.5 */
* html #head_menu a,
* html #head_menu a:visited {
	width:75px;
	w\idth:75px;
}

/* PARENT HOVER */
#head_menu a:hover, #head_menu ul ul a:hover{
	color: #FFFFFF;
	background: #333333;
}
#head_menu :hover > a, #head_menu ul ul :hover > a {
	color: #FFFFFF;
	background: #333333;
}

/* CHILD BACKGROUND */
#head_menu ul ul LI a, #head_menu ul ul LI a:visited {
	background: #333333;
	color: #CCCCCC;
}
#head_menu ul ul a.drop, #head_menu ul ul a.drop:visited {
	background: #000000;
}

/* CHILD LINKS */
#head_menu ul ul a, #head_menu ul ul a:visited {
	height: auto;
	line-height: 1em;
	padding: 5px 10px;
	width: 120px;
	border-bottom: solid 1px #444444;
}

/* IE5.5 */
* html #head_menu ul ul a{
	width:155px;
	w\idth:155px;
}

/* CHILD HOVER */
#head_menu ul ul LI a:hover {
	background:#000000;
	color: #FF9900;
}
#head_menu ul ul a.drop:hover{
	background:#000000;
	color: #FF9900;
}
#head_menu ul ul :hover > a.drop {
	background: #000000;
	color: #FF9900;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
#head_menu ul ul {
	visibility: hidden;
	position: absolute;
	height: 0;
	top: 22px;
	left: 0;
	width: 177px;
}

/* IE5.5 */
* html #head_menu ul ul {
	top: 21px;
	t\op: 21px;
}

/* make the second level visible when hover on first level list OR link */
#head_menu ul :hover ul{
	visibility:visible;
}