/* ================================================================
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.
=================================================================== */
.dd_menu {
  position:relative;
  top:180px;
  left:10px;
}

/* remove the bullets, padding and margins from the lists */
.dd_menu ul{
list-style-type:none;
padding:0;
margin:0;
background-color: #ffffff;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.dd_menu li{
float:left;
position:relative;
z-index:100;
background-color: #ffffff;
}

/* use the table to position the dropdown list */
.dd_menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:36px;
}

/* style all the links */
.dd_menu a, .dd_menu :visited {
display:block;
font-size:14px;
font-weight:bold;
width:133px;
padding:7px 0;
color:#ffffff;
background:#9CC3DE url(images/img05.jpg) repeat-x;
text-decoration:none;
margin-right:1px;
text-align:center;
}

/* style the links hover */
.dd_menu :hover{
color:#000000;
background:#93C600 url(images/img05.jpg) repeat-x;
text-decoration:none;
}

/* hide the sub level links */
.dd_menu ul ul {
visibility:hidden;
position:absolute;
width:133px;
height:0;
}
/* make the sub level visible on hover list or link */
.dd_menu ul li:hover ul,
.dd_menu ul a:hover ul{
visibility:visible;
}

