/*--CSS FOR THE MAIN NAVIGATION (HORIZONTAL), INCLUDING DROP-DOWN MENUS--*/

.menu {
/*width:700px; */
width:auto;
height: 33px;
padding: 0px 20px;
font-size:15px;
position:relative;
z-index:10;
background: url(../images/bg-nav.jpg) repeat-x top #031825;
border-top: 1px solid #b0a077;
border-bottom: 1px solid #b0a077;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
}

.menu ul ul {
width:auto;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
position:relative;
background: url(../images/bg-nav.jpg) repeat-x top #031825;
height:25px;
padding: 8px 15px 0px 15px;
/*padding: 8px 22px 0px 22px; OLD */

}

/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
font-family:Arial, Helvetica, sans-serif;
/*letter-spacing:1px;*/
font-size:15px;
text-decoration:none;
color:#ffffff;
font-weight: 200;
text-transform: uppercase;
}

/* hide the sub levels and give them a position absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
width:auto;
padding: 8px 10px 0px 10px;
top:33px;
left:0; 
border-right: 1px solid #b0a077;
border-bottom: 1px solid #b0a077;
border-left: 1px solid #b0a077;
}


/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
color:#FFFFFF;
font-size:13px;
text-decoration:none;
height:20px; 
padding:0px; 
width:160px;
}


/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	color:#26bbd5;
}

.menu :hover > a{
	color:#26bbd5;
	}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible; 
padding: 0px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background: #26bbd5;
padding: 0px;

}
/* style the second level hover */
.menu ul ul a.drop:hover, .menu ul ul :hover > a{
color:#26bbd5;
}
.menu ul ul :hover > a.drop {
color:#26bbd5;
}