/* CSS Document */

.menu {
	float:right;
	font: bold 14px Arial, Helvetica, sans-serif; color:#FFFFFF; 
	text-decoration:none;
	text-align : right;
	font-weight : bold;
	color : #000000;
	vertical-align : top;
	width:700px; 
	height:20px; 
	position:relative;
	padding:0;
	z-index:400;
}
/* hack to correct IE5.5 faulty box model */
* html .menu {
	width:700px; 
	w\idth:749px;
}
/* remove all the bullets, borders and padding from the default list styling */
.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 */
.menu li {
	float:left;
	width:140px;
	text-align:center;
	position:relative;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	text-decoration:none; 
	color:#ffffff; 
	width:150px;
	padding:4px 0; 
	line-height:1.0em; 
	font-weight:bold;
}
.menu a:hover {
	display:block;
	text-decoration:none; 
	color:#ffff66; 
	width:150px;
	height:24px;
	padding:4px 0; 
	line-height:1.0em; 
	font-weight:bold;
}
.menu a:actived {
	display:block;
	text-decoration:none; 
	color:#6c5735; 
	width:150px; 
	padding:4px 0; 
	line-height:1.0em; 
	font-weight:bold;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width:150x; 
	w\idth:149px;
}
/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background:#300554 url(http://www.cssplay.co.uk/menus/breadcrumbs/grey-arrow.gif) no-repeat 100px center;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
	background:#300554 url(http://www.cssplay.co.uk/menus/breadcrumbs/blue-arrow.gif) no-repeat 100px center;
}
.menu ul ul :hover > a.drop {
	background:#300554 url(http://www.cssplay.co.uk/menus/breadcrumbs/blue-arrow.gif) no-repeat 100px center;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background:#300554;
}
/* style the third level hover */
.menu ul ul ul a:hover {
	background:#000000;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	font-size : 1.0em;
	font-weight:normal;
	visibility:hidden;
	position:absolute;
	height:auto;
	top:26px;
	left:0; 
	width:0;
	text-align:left;
}
/* another hack for IE5.5 */
* html .menu ul ul {
	top:0px;
	t\op:0px;
}
/* position the third level flyout menu */
.menu ul ul ul{
	left:130px; 
	top:0px; 
	width:180px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
	left:-0px;
}

/* 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 {
	font-size:1.0em;
	background: #300554;
	font-weight:normal;
	color:#ffffff; 
	height:auto; 
	line-height:1.2em;
	text-align:left; 
	padding:5px; 
	width:120px;
}
.menu ul ul a:hover {
	font-size:1.0em;
	background: #000000;
	font-weight:normal; 
	color:#ffffff; 
	height:auto; 
	line-height:1.2em; 
	padding:5px; 
	width:120px;
}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {
	width:180px;
	w\idth:179px;
}

/* 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;
}
