/* CSS Document */

.menu {
	float:center;
	margin:0 auto;
	font-size : 1.1em;	
	text-align : left;
	font-weight : bold;
	color: #000000;
	vertical-align : middle;
	width:900px; 
	height:40px; 
	position:relative;
	padding:0 10px;
	z-index:1250;
	background:transparent;
}
/* hack to correct IE5.5 faulty box model */
* html .menu {
	width:900px; 
	w\idth:899px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0 auto;
	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:120px;
	text-align:left;
	position:relative;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	text-decoration:none; 
	color:#ffffff; 
	width:120px; 
	padding:0; 
	font-weight:bold;
}
.menu a:hover {
	display:block;
	text-decoration:none; 
	color:#6c5735; 
	width:120px; 
	padding:0; 
	line-height:1.0em; 
	font-weight:bold;
	background:#000000;
}
.menu a:actived {
	display:block;
	text-decoration:none; 
	color:#6c5735; 
	width:120px; 
	height:10px; 
	padding: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:100x; 
	w\idth:99px;
}
/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background:#000000 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:#000000 url(http://www.cssplay.co.uk/menus/breadcrumbs/blue-arrow.gif) no-repeat 100px center;
}
.menu ul ul :hover > a.drop {
	background:#000000 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:#000000;
}
/* 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:45px;
	left:-100; 
	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:200px; 
	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:200; 
	left:0; 
	border-collapse:collapse;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	font-size:1.0em;
	background: #000000;
	font-weight:normal;
	color:#ffffff; 
	height:auto; 
	line-height:1.2em;
	text-align:left; 
	padding:5px 10px; 
	width:180px;
	border-width:0 1px 1px 1px;
	filter:alpha(opacity=80);
	opacity: 0.8;
	-moz-opacity:0.8;
}
.menu ul ul a:hover {
	font-size:1.0em;
	background: #000000;
	font-weight:normal; 
	color:#ffffff; 
	height:auto; 
	line-height:1.2em; 
	padding:5px 10px; 
	width:180px;
	background:#000000;
}
/* 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;
}
