/* ================================================================ 
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 */
.menu {background:url(../assets/images/template/mainNav.gif) repeat-x #757264;height:28px;width:793px;vertical-align:middle;line-height:28px;font-size:.8em;padding:0px 0px 0px 10px;}
.menu ul{
list-style-type:none;
padding:0;
margin:0px;
clear:both;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
float:left;
position:relative;
z-index:100;
}

/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:30px;
}

/* style main links */
.menu ul li a, .menu ul li a:visited {
display:block;
width:150px;
padding:0px;
color:#fff;
background:transparent;
text-decoration:none;
margin-right:1px;
text-align:center;
}
/* style main links hover */
.menu ul li a:hover{
color:#fff;
background:transparent;
}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:150px;
height:0;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
}

/* style submenu links */
.menu ul ul li a, .menu ul ul li a:visited {
display:block;
width:150px;
color:#3b3723;
background:#e8f8af;
text-decoration:none;
margin-right:1px;
text-align:center;
border-bottom:1px solid #ffffff;
line-height:16px;
padding:6px 1px;
}
/* style submenu links hover */
.menu ul ul li a:hover{
color:#3b3723;
background:#dceda1;
}
