/* ================================================================ 
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/menutops/final_drop.html
Copyright (c) 2005-2008 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.menutop {
	width:948px; 
	height:32px; 
	position:relative; 
	z-index:100;
	font-family: Arial, Helvetica, Geneva, sans-serif;
	float: left;
	margin-left: 14px;
	margin-top: 8px;
}

/* hack to correct IE5.5 faulty box model */
* html .menutop {
	/*width: 948px; 
	w\idth: 947px;*/
}

/* remove all the bullets, borders and padding from the default list styling */
.menutop ul {
	padding:0;
	margin:0;
	list-style-type:none;
}


.menutop ul ul {
	/*width:99px;*/
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menutop positon */
.menutop li {
	float:left;
	/*width:99px;*/
	position:relative;
}


/* style the links for the top level */
.menutop a, .menutop a:visited {
	display:block;
	font-size:12px;
	text-decoration:none; 
	color:#FFF; 
	/*width:93px;*/ 
	height:32px; 
	line-height:32px; 
	font-weight:bold;
	padding: 0 6px;
}


/* a hack so that IE5.5 faulty box model is corrected */
* html .menutop a, * html .menutop a:visited {
	/*width:99px; 
	w\idth:93px;*/
}



/* style the second level background */
.menutop ul ul a.drop, .menutop ul ul a.drop:visited {
	background:#696969;
}


/* style the second level hover */
.menutop ul ul a.drop:hover{
	background:#696969;
}

.menutop ul ul :hover > a.drop {
	background:#696969;
}

/* style the third level background */
.menutop ul ul ul a, .menutop ul ul ul a:visited {
	background:#3C4C56;
}

/* style the third level hover */
.menutop ul ul ul a:hover {
	background:#696969;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menutop ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:32px;
	left:0; 
	width:149px;
	/*border-top:1px solid #000;*/
}


/* another hack for IE5.5 */
* html .menutop ul ul {
	top:32px;
	t\op:33px;
}



/* position the third level flyout menutop */
.menutop ul ul ul{
	left:149px; 
	top:-1px; 
	width:299px;
}



/* position the third level flyout menutop for a left flyout */
.menutop ul ul ul.left {
	left:-149px;
}



/* style the table so that it takes no ppart in the layout - required for IE to work */
.menutop table {
	position:absolute; 
	top:0; 
	left:0; 
	border-collapse:collapse;
}



/* style the second level links */
.menutop ul ul a, .menutop ul ul a:visited {
	background:#3C4C56; 
	color:#FFF; 
	height:auto; 
	padding:5px; 
	width:278px;
	font: normal 11px/16px Arial, Helvetica, Geneva, sans-serif;
}


/* yet another hack for IE5.5 */
* html .menutop ul ul a, * html .menutop ul ul a:visited {
	width:290px;
	w\idth:278px;
}



/* style the top level hover */
.menutop a:hover{
	color:#e0e0e0; 
	/*background:#3C4C56;*/
}

.menutop ul ul a:hover{
	color:#FFF; 
	background:#696969;
}


.menutop :hover > a{
	color: #e0e0e0; 
	/*background:#3C4C56;*/
}

.menutop ul ul :hover > a {
	color:#FFF; 
	background:#696969;
}



/* make the second level visible when hover on first level list OR link */
.menutop ul li:hover ul,
.menutop ul a:hover ul{
	visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menutop ul :hover ul ul{
	visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menutop ul :hover ul :hover ul{
 visibility:visible;
}


