#head_menu {
	font-size:10px;
	font-family: verdana, arial, sans-serif;
	position:relative;
	z-index:100;
	background-color: #95001B;
	width: 100%;
}

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

/* 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;
}

/* style the links for the top level */
#head_menu a,
#head_menu a:visited {
	display:block;
	font-size:10px;
	font-weight: bold;
	text-decoration:none;
	color:#FFFFFF;
	background-color: #95001B;
	height:26px;
	line-height:26px;
	padding-left:10px;
	padding-right:10px;
	white-space: nowrap;
	border-right: 1px solid #000000;
	text-align: center;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html #head_menu a,
* html #head_menu a:visited {
	width:90px;
	w\idth:90px;
}

#head_menu ul li ul {
	border-top: 1px solid #95001B;
}

/* style the second level background */
#head_menu ul ul LI a,
#head_menu ul ul LI a:visited {
	/*
	border-left: 1px solid #50912D;
	border-right: 1px solid #50912D;
	*/
	border-bottom: 1px solid #000000;
	background: #55001B;
	color: #DDDDDD;
	text-align: left;
}

#head_menu ul ul a.drop,
#head_menu ul ul a.drop:visited {
	background:#362F2D;
}

/* style the second level hover */

#head_menu ul ul LI a:hover {
	background:#95001B;
	color: #FFFFFF;
}

#head_menu ul ul a.drop:hover{
	background:#95001B;
	color: #FFFFFF;
}

#head_menu ul ul :hover > a.drop {
	background:#95001B;
	color: #FFFFFF;
}

/* style the third level background */
#head_menu ul ul ul a,
#head_menu ul ul ul a:visited {
	background:#362F2D;
}

/* style the third level hover */
#head_menu ul ul ul a:hover {
	background:#667F70;
}

/* 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:25px;
	left:0;
	width:177px;
}

/* another hack for IE5.5 */
* html #head_menu ul ul {
	top:26px;
	t\op:26px;
}

/* position the third level flyout menu */
#head_menu ul ul ul{
	left:154px;
	top:0;
	width:155px;
}

/* position the third level flyout menu for a left flyout */
#head_menu ul ul ul.left {
	left:-150px;
}

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

/* style the second level links */
#head_menu ul ul a,
#head_menu ul ul a:visited {
	background:#EFEFEF;
	color:#000000;
	height:auto;
	line-height:1em;
	padding:5px 10px;
	width:185px
	/* yet another hack for IE5.5 */
}

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

/* style the top level hover */
#head_menu a:hover,
#head_menu ul ul a:hover{
	color:#F8F8E6;
	background: #D5001B;
}

#head_menu :hover > a,
#head_menu ul ul :hover > a {
	color:#F8F8E6;
	background: #D5001B;
}

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

/* keep the third level hidden when you hover on first level list OR link */
#head_menu ul :hover ul ul{
	visibility:hidden;
}

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