/* ================================================================ 
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 */
#submenu {
width: 764px;
line-height: 36px;
}
#submenu li.separador {
width: 11px;
color: #ffffff;
}

#submenu ul{
list-style-type:none;
padding:0;
margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
#submenu li{
float:left;
position:relative;
z-index:100;
display: block;
width: 152px;
text-align: center;
}

/* use the table to position the dropdown list */
#submenu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:36px;
}

/* style all the links */
#submenu a, #submenu :visited {
display: block;
color: #ffffff;
font-family: Tahoma, Verdana, "Trebuchet MS", Arial, sans-serif;
font-size: 11px;
font-weight: bold;
text-decoration:none;
}
/* style the links hover */
#submenu :hover{
color: #eeeeee;
border: none;
}

#submenu li li {
background-color: #990000;
line-height: 25px;
opacity:.80;
filter: alpha(opacity=85);
-moz-opacity: 0.85;
}


/* hide the sub level links */
#submenu ul ul {
visibility:hidden;
position:absolute;
width:144px;
height:0;
}
/* make the sub level visible on hover list or link */
#submenu ul li:hover ul,
#submenu ul a:hover ul{
visibility: visible;
position: absolute;
left: 0;
}

