/* ================================================================ 
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 */
.menu {
	width:960px;
	font-size:9pt;
	padding-bottom:0px;
}

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

/* 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:137px;
	position:relative;
}

/* style the links for the top level */
.menu a, .menu a:visited {
	width:134px;
	display:inline-block;
	background-image:url('/images/layout/bg_nav.jpg');
	border-left:1px solid #555D74;
	border-right:1px solid #555D74;
	background-repeat:repeat-x;
	text-align:center;
	font-weight:bold;
	color:#FFFFFF;
	text-decoration:none;
	padding-top:7px;
	height:23px;
	background-position: 0px 0px;
	cursor:pointer;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width:134px;
	w\idth:134px;
	height:22px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background:#FFCCCC;
}

/* style the second level hover */
.menu ul ul a.drop:hover{
	background:#BBBBFF;
}

.menu ul ul :hover > a.drop {
	background:#BBBBFF;
}

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

/* 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-image:url('/images/layout/bg_nav_sub.jpg');
	border-left:1px solid #E1EAC4;
	border-right:1px solid #E1EAC4;
	background-repeat:repeat-x;
	text-align:center;
	font-weight:bold;
	color:#000000;
	text-decoration:none;
	padding-top:7px;
	height:23px;
	background-position: 0px 0px;
	cursor:pointer;
	font-size:8pt;
	/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
	width:131px;
	w\idth:131px;
}


/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	background-position: 0px -30px;
	border-left:1px solid #B1CE56;
	border-right:1px solid #B1CE56;
	color:#FFFFFF;
}
.menu :hover > a, .menu ul ul :hover > a {
	background-position: 0px -30px;
	border-left:1px solid #B1CE56;
	border-right:1px solid #B1CE56;
	color:#FFFFFF;
}

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