/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_drop2.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* style the outer div to give it width */

div.mmenu {

/*	padding-bottom:200px;*/
}

/* remove all the bullets, borders and padding from the default list styling */
div.mmenu ul,
div.mmenu ul li {
	padding:0;
	margin:0;
	margin-left:1px;
	list-style-type:none;
}
div.mmenu ul ul {
	width:120px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
div.mmenu li {
	float:left;
	width:120px;
	position:relative;
}

div.mmenu ul li a:hover {
	border-color:black;
}

/* style the top level hover */
div.mmenu a:hover, div.mmenu ul ul a:hover,
div.mmenu :hover > a, div.mmenu ul ul :hover > a {
	color:#fff;
	background:#949e7c;	/*top elem active color*/
}

/* style the links for the top level */
div.mmenu a, div.mmenu a:visited {
	display:block;
	font-size:11px;
	text-decoration:none; 
	color:#fff; 
	width:109px; 
	height:25px; 
	border:1px solid #fff; 
	padding-left:10px; 
	line-height:24px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html div.mmenu a, * html div.mmenu a:visited {
width:120px;
w\idth:109px;
}

/* DROP style the second level background */
div.mmenu ul ul a.drop, div.mmenu ul ul a.drop:visited {
	background:#949e7c;
}
/* DROP style the second level hover */
div.mmenu ul ul a.drop:hover,
div.mmenu ul ul :hover > a.drop{
	background:#c9ba65;
}
/* style the third level background */
div.mmenu ul ul ul a, div.mmenu ul ul ul a:visited {
	background:#e2dfa8;
}
/* style the third level hover */
div.mmenu ul ul ul a:hover,
div.mmenu ul ul ul :hover > a {
	background:#b2ab9b;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
div.mmenu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:27px;
	left:0; 
	width:142px;
}

/* another hack for IE5.5 */
* html div.mmenu ul ul {
	top:26px;
	t\op:27px;
}

/* position the third level flyout menu */
div.mmenu ul ul ul{
left:142px; 
top:0;
width:142px;
}
/* position the third level flyout menu for a left flyout */
div.mmenu ul ul ul.left {
left:-142px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
div.mmenu table {position:absolute; top:0; left:0;}

/* style the second level links */
div.mmenu ul ul a, div.mmenu ul ul a:visited {
	background-color: #eee;
	color:#000; 
	height:auto; 
	line-height:1em; 
	padding:5px 10px; 
	width:121px

	      /* yet another hack for IE5.5 */
}
* html div.mmenu ul ul a{
	width:142px;
	w\idth:121px;
}

/* make the second level visible when hover on first level list OR link */
div.mmenu ul li:hover ul,
div.mmenu ul a:hover ul,
div.mmenu ul :hover ul :hover ul,
div.mmenu ul :hover ul :hover ul :hover ul {
	visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
div.mmenu ul :hover ul ul,
div.mmenu ul :hover ul :hover ul ul {
	visibility:hidden;
}