/* ================================================================ 
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;
	width: 960px;
	font-size:11px;
	font-weight: 100;
	display: inline;
	float: left;
	position:relative;
	z-index:100;
}

/* 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#homeMenu { width: 71px; }
.menu li#aboutMenu { width: 95px; }
.menu li#proffMenu { width: 158px; }
.menu li#whyMenu { width: 90px; }
.menu li#successMenu{ width: 130px; }
.menu li#clientsMenu { width: 85px; }
.menu li#testMenu { width: 120px; }
.menu li#publicationsMenu { width: 104px; }
.menu li#contactMenu { width: 107px; }

/* style the links for the top level */
.menu a, .menu a:visited {
	font-size:11px;
	text-decoration:none; 
	color:#ffffff; 
	background:#758279;  
	display: block;
	font-weight:100;
}

/* a hack so that IE5.5 faulty box model is corrected */
/*
* html .menu a, * html .menu a:visited {
	width: 200px;
	w\idth: 200px;
}
*/

/* style the second level background */
/*
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background: #4d4449 url(../images/border.gif) bottom  left repeat-x ;
}
*/
/* style the second level hover */
/*
.menu ul ul a.drop:hover{
	background: #a1a1a1 url(../images/border.gif) bottom  left repeat-x ;
}
.menu ul ul :hover > a.drop {
	background: #a1a1a1;
}
*/
/* style the third level background */
/*
.menu ul ul ul a, .menu ul ul ul a:visited {
	background: #4d4449 url(../images/border.gif) bottom  left repeat-x ;
}
*/
/* style the third level hover */
/*
.menu ul ul ul a:hover {
	background: #a1a1a1 url(../images/border.gif) bottom  left repeat-x ;
}
*/

/* 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: 34px;
	left: 0;
}

/* 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: 29px;
	left: 0;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	padding: 2px 10px; 
	width: 150px;
	height: auto;
	color: #ffffff;
	background: #373737;
	font-weight:100;
}

/* 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: #373737;
	font-weight:100;
	
}
.menu :hover > a, .menu ul ul :hover > a {
	color: #ed174c;
	background: #373737;
	font-weight:100;
}

/* 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: #373737;
}

