.menu {
	/*width:750px;
position:relative;
z-index:100;
top: 188px;
left: 100px;*/

width:960px;
	position:relative;
	z-index:100;
	top:0px;
	left:0px;
	height:inherit;
	margin:0px;
	background: url(images/banners/buttonbar.jpg) no-repeat left top;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 5px;
	padding-bottom: 0px;
	float: right;


}
/* 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:170px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
border-left : 1px solid #81472F; 
border-right : 1px solid #d0d0d0;
position:relative;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px; 
color: #FFFFFF;
display:inline;
white-space: nowrap;
}
/* style the links for the top level */
.menu a, .menu a:visited {
font-size:12px;
font-weight:bold;
text-decoration: none; 
color:#000000; 
height:20px;
line-height:20px;
padding-left:5px;
padding-right:5px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {

}

/* style the second level background */

.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background-color: #666666;

}

/* style the second level hover */
.menu ul ul a.drop:hover{
	background-color: #999999;

}
.menu ul ul li{
	border-left : 1px solid #d0d0d0; 
	border-right : 1px solid #d0d0d0;
	border-bottom : 1px solid #d0d0d0;
}



.menu ul ul a{
display:block;
width:170px;
}
.menu ul ul :hover > a.drop {
background:#666666;
}



/* 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:20px;
left:0; 
width:170px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:20px;
t\op:20px;
}



/* 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;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background:#666666;
	color:#ffffff;
	height:auto;
	line-height:1em;
	padding:5px 10px;
	display:block;

/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:170px;
w\idth:170px;
}

/* style the top level hover */
.menu a:hover{
color:#00a4e8;
background:none;
white-space: nowrap;
}
.menu ul ul a:hover{
color:#00a4e8; 
background:#002761;
/*border-top: 1px solid #ffffff;*/
}
.menu :hover > a, .menu ul ul :hover > a {
color:#00a4e8;
}

/* 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; 
}


