/* ================================================================ 
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 */
.menu2 {
	float:left; width:100%;
	font-size:14px;
	font-family: "Verdana", "Helvetica", "Arial", "Tahoma", "MS Sans Serif", sans-serif; 
	background:#ddd url(/interactivedb/styles/pics/menu2.gif) repeat-x; 
	margin: 0px;
	padding: 0px;
	height: 30px;
}

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

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu2 ul li {
	float:left;
	width:100px;
	position:relative;
	padding:0px;
	margin:0px;
}

/* style the links for the top level */
.menu2 a, .menu2 a:visited {
	display:block;
	text-decoration:none; 
	height:30px;
	color:#333; 
	border:1px solid #eee;
	line-height:29px;
	padding-left:10px; 
}

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

/* style the second level background */
.menu2 ul ul a.drop, .menu2 ul ul a.drop:visited {
	background: #ddd;
}
/* style the second level hover */
.menu2 ul ul a.drop:hover{
	background: #666  url(/interactivedb/styles/pics/sub2a.gif);
}
.menu2 ul ul :hover > a.drop {
	background: #666 url(/interactivedb/styles/pics/sub2a.gif);
}
/* style the third level background */
.menu2 ul ul ul a, .menu2 ul ul ul a:visited {
	background:	#ddd;
}
/* style the third level hover */
.menu2 ul ul ul a:hover {
	background: #666 url(/interactivedb/styles/pics/sub2a.gif);
}
.menu2 ul ul ul :hover > a {
	background:#666 url(/interactivedb/styles/pics/sub2a.gif);
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu2 ul ul {
	position:absolute;
	top:31px;
	left:0;
	width:150px;
	padding:0px;
	margin:0px;
	display: none;
}
/* another hack for IE5.5 */
* html .menu2 ul ul {
	top:30px;
	t\op:31px;
}

/* position the third level flyout menu */
.menu2 ul ul ul{
	padding:0px;
	margin:0px;
	left:162px; 
	top:0;
	width:10px;
	display: none;
}

/* position the third level flyout menu for a left flyout */
.menu2 ul ul ul.left {
	left:-150px;
}

/* style the second level links */
.menu2 ul ul a, .menu2 ul ul a:visited {
	background:#ddd; 
	color:#333; 
	padding: 0px;
	padding-left: 10px;
	margin:0px; 
	width:150px;
	
}
/* yet another hack for IE5.5 */
* html .menu2 ul ul a{
	width:150px;
	w\idth:129px;
}


/* style the top level hover */
.menu2 a:hover, .menu2 ul ul a:hover{
	color:#a00; 
	background:#666 url(/interactivedb/styles/pics/sub2a.gif);
	text-decoration: none;
}
.menu2 :hover > a, .menu2 ul ul :hover > a {
	color:#a00;
	background:#666 url(/interactivedb/styles/pics/sub2a.gif);
	text-decoration: none;
}

/* make the second level visible when hover on first level list OR link */
.menu2 ul li:hover ul,
.menu2 ul li:hover ul li,
.menu2 ul li:hover ul li a{
	display: block; 
}

/* keep the third level hidden when you hover on first level list OR link */
.menu2 ul li:hover ul ul,
.menu2 ul a:hover ul ul{
	display: none;
}

/* make the third level visible when you hover over second level list OR link */
.menu2 ul ul li:hover ul,
.menu2 ul ul a:hover ul{ 
	display: block;
}

