﻿/* 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:126px;
	
}
/* 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:126px;
	position:relative;
	text-align:center;
}

/* style the links for the top level */
.menu a, .menu a:visited 
{
	display:block;
	font-size:11px;text-decoration:none; 
	color:#6D6E71; 
	font-weight:bold;
	width:126px; 
	border-right:1px solid #fff;
	border-left:1px solid #fff; 
	padding-top:14px;
	padding-bottom:13px;
}


/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited 
{
	/*background:#6D6E71 url(images/menu-selected-gradient.jpg) bottom right no-repeat;
	color:#fff;#B2B3B6*/
		background-color:Red;
	color:Green;

}
/* style the second level hover */
.menu ul ul a.drop:hover
{
		background-color:Red;
	color:Green;
}
.menu ul ul :hover > a.drop 
{
	background-color:Red;
	color:Green;
}

/* 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:40px;
	left:0; 
	width:126px;
	border-top:2px solid #fff;
}


/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table 
{
	position:absolute; 
	top:0; 
	left:0; 
	border-collapse:collapse;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited 
{
	background-color:#6D6E71;
	border-bottom:solid 2px #fff;
	color:#fff;
	
}


/* style the top level hover */
.menu a:hover , .selected /*, .menu ul ul a:hover*/
{
	background:#fff url(images/menu-selected-gradient.jpg) bottom right repeat-x;
	border-right:1px solid #fff;
	border-left:1px solid #fff; 

}
.menu :hover > a /*, .menu ul ul :hover > a */
{
	background:#fff url(images/menu-selected-gradient.jpg) bottom right repeat-x;
	border-right:1px solid #fff;
	border-left:1px solid #fff;  
}

/* 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; 
}

.menu ul ul a:hover
{
	/*background-color:#B2B3B6;*/
	color:#6D6E71;
}



.footerLeft ul
{
	padding:0;
	margin:0;
	list-style-type:none;
}

.footerLeft li 
{
	float:left;
	position:relative;
}


.footerLeft a
{
	color:#fff;
	padding-right:15px;
	text-decoration:none;
	display:block;
}


