/*CSS Document*/
#info
{
	height: 500px;
}
/*================================================================
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-2009 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any
way to fit your requirements.
===================================================================
style the outer div to give it width*/
.menu
{
	width: 100%;
	font-size: 12px;
	margin-bottom: 60px;
}
/*remove all the bullets, borders and padding from the default list styling*/
.menu UL
{
	padding: 0;
	margin: 0;
	list-style-type: none;
}
.menu UL UL
{
	width: 150px;
}
/*float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon*/
.menu LI
{
	float: left;
	width: 150px;
	position: relative;
}
/*style the links for the top level*/
.menu A, .menu A:visited
{
	display: block;
	font-size: 11px;
	text-decoration: none;
	color: #000;
	width: 139px;
	height: 31px;
	border-right: 1px dotted #301;
	border-width: 0px 1px 0px 0;
	background: #FFFFFF;
	padding-left: 10px;
	line-height: 29px;
}
/*a hack so that IE5.5 faulty box model is corrected*/
* HTML .menu A, * HTML .menu A:visited
{
	width: 150px;
	w\idth: 139px;
}
/*style the second level background*/
.menu UL UL A.drop, .menu UL UL A.drop:visited
{
	background: #ECE8E9;
}
/*style the second level hover*/
.menu UL UL A.drop:hover
{
	background: #EBE7E8;
}
.menu UL UL :hover>A.drop
{
	background: #36010B;
}
/*style the third level background*/
.menu UL UL UL A, .menu UL UL UL A:visited
{
	background: #E9E5E6;
}
/*style the third level hover*/
.menu UL UL UL A:hover
{
	background: #E9E5E6;
}
.menu UL UL UL :hover>A
{
	background: #36010B;
}
/*hide the sub levels and give them a positon absolute so that they take up no room*/
.menu UL UL
{
	visibility: hidden;
	position: absolute;
	height: 0;
	top: 31px;
	left: 0;
	width: 150px;
}
/*another hack for IE5.5*/
* HTML .menu UL UL
{
	top: 30px;
	t\op: 31px;
}
/*position the third level flyout menu*/
.menu UL UL UL
{
	left: 150px;
	top: 0;
	width: 150px;
}
/*position the third level flyout menu for a left flyout*/
.menu UL UL UL.left
{
	left: -150px;
}
/*style the table so that it takes no part in the layout - required for IE to work*/
.menu TABLE
{
	position: absolute;
	top: 0;
	left: 0;
}
/*style the second level links*/
.menu UL UL A, .menu UL UL A:visited
{
	background: #E7E3E4;
	color: #000;
	height: auto;
	line-height: 2em;
	padding: 5px 10px;
	width: 129px;
	border-right: none;
}
* HTML .menu UL UL A
{
	width: 150px;
	w\idth: 129px;
}
/*style the top level hover*/
.menu A:hover, .menu UL UL A:hover
{
	color: #FFF;
	background: #E6E2E3;
}
.menu :hover>A, .menu UL UL :hover>A
{
	color: #FFF;
	background: #37020C;
	border-right: 0px solid #FFFFFF;
	border-bottom: 0px solid #000000;
}
/*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;
}
/*keep the fourth level hidden when you hover on second level list OR link*/
.menu UL :hover 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;
}
/*make the fourth level visible when you hover over third level list OR link*/
.menu UL :hover UL :hover UL :hover UL
{
	visibility: visible;
}
