#info {height:400px;}
/* ================================================================ 
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/basic_dd.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.
=================================================================== */
/* remove the bullets, padding and margins from the lists */
.menu
{
	display:block;
	float:left;
	width:940px;
	height:45px;
	font-size:15px;
	margin-left:10px;
	font-weight:normal;
}

.menu ul{
	list-style-type:none;
	padding:0;
	margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
	float:left;
	position:relative;
	z-index:100;
	font-size:15px;
	font-weight:normal;
}

.menu li a:link, .menu li a:active, .menu li a:visited
{
	margin:0;
	height:35px;
	padding:10px 0 0 0;
	display:block;
	width:155px;
	font-size:16px;
	font-weight:normal;
	text-align:center;
	font-family:Arial, Helvetica, sans-serif;
	background:url(../images/btn-bg.png) no-repeat;
}

.menu li a:hover
{
	color:#FEE601;
}

.menu li li
{

	float:left;
	position:relative;
	z-index:100;
	width:222px;
	height:34px;
	font-size:15px;
	font-weight:normal;
	color:#fff;
}

.menu li li a:link, .menu li li a:active, .menu li li a:visited{
	float:left;
	position:relative;
	z-index:100;
	width:222px;
	height:30px;
	padding:4px 0 0 8px;
	font-size:16px;
	font-weight:normal;
	text-decoration:none;
	text-align:left;
	color:#fff;
	font-family:Arial, Helvetica, sans-serif;
	background:url(../images/submenu-bg.png);
}

/********************************/

.menu li li a:hover
{
	color:#FEE601;
}

/* use the table to position the dropdown list */
.menu table{
	position:absolute;
	border-collapse:collapse;
	z-index:80;
	left:-1px;
	top:45px;
}

/* style all the links */
.menu a:link, .menu a:active, .menu :visited {
	display:block;
	font-size:10px;
	width:111px;
	color:#fff;
	text-decoration:none;
	margin-right:1px;
	text-align:center;
	font-size:15px;
	font-weight:normal;
	text-decoration:none;
	font-family:"Arial Black", Arial, Helvetica, sans-serif;
}

/* style the links hover */
.menu :hover{
}

/* hide the sub level links */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	width:110px;
	height:0%;
	font-size:15px;
	font-weight:normal;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
	visibility:visible;
}