/* CSS Document */

/* hack to correct IE5.5 faulty box model */
* html #menu {
	/*width: 980px;
	w\idth: 980px*/
}
#menu ul ul {
	width: 179px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#menu li {
	float: left;
	/*width: 149px;*/
	position: relative
}

/* a hack so that IE5.5 faulty box model is corrected */
* html #menu a, * html #menu a:visited {
	/*width: 149px;
	w\idth: 138px*/
	float: left;
	display: inline;
}
/* style the second level background */
#menu ul ul a.drop, #menu ul ul a.drop:visited {
	background: #d4d8bd url(http://www.cssplay.co.uk/menus/breadcrumbs/grey-arrow.gif) no-repeat 130px center
}
/* style the second level hover */
#menu ul ul a.drop:hover{
	background: #c9ba65 url(http://www.cssplay.co.uk/menus/breadcrumbs/blue-arrow.gif) no-repeat 130px center
}
#menu ul ul :hover > a.drop {
	background: #FFF url(http://www.cssplay.co.uk/menus/breadcrumbs/blue-arrow.gif) no-repeat 130px center
}
/* style the third level background */
#menu ul ul ul a, #menu ul ul ul a:visited {
	background: #FFF;
}
/* style the third level hover */
#menu ul ul ul a:hover {
	background: #d5d5d5
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
#menu ul ul{
	visibility: hidden;
	position: absolute;
	height: 0;
	top: 32px;
	left: 0;
	width: 179px;
	border-top: 1px solid #CCC;
}
/* another hack for IE5.5 */
* html #menu ul ul {
	top: 32px;
	t\op: 32px
}
/* position the third level flyout menu */
#menu ul ul ul{
	left: 179px;
	top: -1px;
	width: 179px;
}
/* position the third level flyout menu for a left flyout */
#menu ul ul ul.left {
	left: -160px
}
/* style the table so that it takes no ppart in the layout - required for IE to work */
#menu table {
	position: absolute;
	top: 0;
	left: 0;
	border-collapse: collapse
}
/* style the second level links */
#menu ul ul a, #menu ul ul a:visited {
	background: #FFF;
	font-size: 12px!important;
	color: #000;
	min-height: 20px;
	height: auto!important;
	height: 20px;
	line-height: 20px;
	padding: 3px 10px;
	width: 158px;
	border-width: 0 1px 1px 1px;
	border-color: #D6D6D6;
	border-style: solid;
	opacity: 0.9;
	-moz-opacity: 0.9;
	filter:alpha(opacity=90);
	font-weight: normal;
}
/* yet another hack for IE5.5 */
* html #menu ul ul a, * html #menu ul ul a:visited {
	width: 161px;
	w\idth: 158px;
}
/* style the top level hover */
#menu a:hover{
	color: #FA7636;
	background: #D6D6D6;
}
#menu ul ul a:hover{
	color: #000;;
	background: #D6D6D6;
}
#menu :hover > a {
	color: #FA7636;
	background: #D6D6D6;
}
#menu ul ul :hover > a {
	color: #000;
	background: #D6D6D6;
}
/* make the second level visible when hover on first level list OR link */
#menu ul li:hover ul,
#menu ul a:hover ul{
	visibility: visible
}
/* keep the third level hidden when you hover on first level list OR link */
#menu ul :hover ul ul{
	visibility: hidden
}
/* make the third level visible when you hover over second level list OR link */
#menu ul :hover ul :hover ul{
	visibility: visible
}



