/* ================================================================ 
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_drop.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.
=================================================================== */

.menu {
	margin: 0 0 0 0;
	font-weight: 100;
	position:relative;
	z-index: 3;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style-image: none;
}

/*.menu ul ul {
	width: 200px;
}*/

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float: left;
	position: relative;
}

.menu li#lHome {width: 70px; }
.menu li#lDiet {width: 60px; }
.menu li#lReci {width: 76px; }
.menu li#lFit {width: 79px; }
.menu li#lHeal {width: 76px; }
.menu li#lTool {width: 88px; }
.menu li#lComm {width: 104px; }
.menu li#lProd {width: 149px; }
.menu li#lStor {width: 100px; }
.menu li#lSupp {width: 78px; }
.menu li#searchBar {width: 230px; }


/* style the links for the top level */
.menu a, .menu a:visited, .menu a:hover {
	font-size:11px;
	text-decoration:none; 
	color:#ffffff; 
	display: block;
	background: none;
}



/* a hack so that IE5.5 faulty box model is corrected */
/*
* html .menu a, * html .menu a:visited {
	width: 200px;
	w\idth: 200px;
}
*/


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	width: 150px;
	height: 0;
	visibility: hidden;
	position: absolute;
	top: 18px;
	left: 0;
	z-index: 99;
	
}

/* another hack for IE5.5 */
* html .menu ul ul {
	top: 5px;
	t\op: 5px;	
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {
	position: absolute;
	top: 13px;
	left: 0;
	z-index: 99;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	padding: 2px 10px; 
	width: 150px;
	height: auto;
	color: #ffffff;
	background: #212421;
}

/* yet another hack for IE5.5 */
* html .menu ul ul a{
	width: 150px;
	w\idth: 150px;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	color: #ed174c; 
	background: #212421;
	
}
.menu :hover > a, .menu ul ul :hover > a {
	color: #ed174c;
	background: #212421;
}

/* 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;
}

.menu ul ul li {
	margin: 0;
	padding: 0;
	background: #212421;
}

