/* ================================================================ 
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 */
.menudown ul{
list-style-type:none;
padding:0;
margin:0;
float: right;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menudown li{
float:left;
position:relative;
z-index:110;
}

/* use the table to position the dropdown list */
.menudown table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}

/* style all the links */
.menudown ul li a {
display:block;
font-size:11px;
width:148px;
padding:7px 0;
color:#12496F;
text-decoration:none;
margin-right:1px;
text-align:center;
font-family:  Thaoma, Verdana;
/*background: url(/images/bg_menu_top.gif);*/
background: url(/images/top_menu.gif);
filter:alpha(opacity=90);
opacity:0.9;
}
/* style the links hover */
.menudown :hover{
color:#fff;
/*background: url(/images/bg_menu_top_hover.gif);*/
}



/* hide the sub level links */
.menudown ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0;
}

/* hide the sub level links */
.menudown ul ul li a{
background: #F29900;
font-weight:normal;
text-transform: none;
}

.menudown ul ul li {
padding-left:15px;
}

/* hide the sub level links */
.menudown ul ul a:hover{
background: #98B9CA;
color:#000;
}

/* make the sub level visible on hover list or link */
.menudown ul li:hover ul,
.menudown ul a:hover ul{
visibility:visible;
}

