/* ================================================================ 
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-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* remove the bullets, padding and margins from the lists */
#topmenu ul{
list-style-type:none;
list-style: none;
padding:0;
margin:0;
background-color: #848891;
height: 18px;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
#topmenu li{
margin:0;
padding:0;
float:left;
position:relative;
background-color: #848891;
z-index:100;
height: 18px;
}

/* use the table to position the dropdown list */
#topmenu table{
margin: 0;
padding:0;
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:17px;
}

/* style all the links */
#topmenu a, #topmenu a:visited {
display:block;
line-height: 18px;
font-size:10px;
width:123px;
padding:0;
color:#fff;
background:#848891;
text-decoration:none;
margin-right:1px;
text-align:center;
height: 18px;
}
/* style the links hover */
#topmenu a:hover{
	background-color: #5B616f;
}

/* hide the sub level links */
#topmenu ul ul {
visibility:hidden;
position:absolute;
width:100px;
height:0;
}
/* make the sub level visible on hover list or link */
#topmenu ul li:hover ul,
#topmenu ul a:hover ul{
visibility:visible;
}

