/* ================================================================
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 */
.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:25px;
}

/* style all the links */
.dd_menu a, .dd_menu :visited {
display:block;
font-size:14px;
font-weight:bold;
width:145px;
padding:7px 0;
color:#ffffff;
background:#9CC3DE url(../images/rounded.gif) top no-repeat;
text-decoration:none;
margin-right:1px;
padding-left:10px;
text-align:left;
}

/* style the links hover */
.dd_menu :hover{
color:#444;
background:#93C600 url(../images/rounded_on.gif) top repeat-x;
text-decoration:none;
}

.dd_submenu a, .dd_submenu :visited {
display:block;
font-size:14px;
font-weight:bold;
width:145px;
padding:7px 0;
color:#ffffff;
background:#9CC3DE;
text-decoration:none;
margin-right:1px;
padding-left:10px;
text-align:left;
}

/* style the links hover */
.dd_submenu :hover{
color:#444;
background:#93C600;
text-decoration:none;
}

/* hide the sub level links */
.dd_menu ul ul {
visibility:hidden;
position:absolute;
width:155px;
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;
}

