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

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

/* 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 #0b0605;
/*height:16px;
padding: 8px 15px 0px 15px;*/
height:25px;
padding: 1px 15px 0px 15px;
}

/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
font-family: Georgia, "Times New Roman", Times, serif;
/*letter-spacing:1px;*/
font-size:15px;
font-weight:bold;
text-decoration:none;
color:#d9c5ac;
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:26px;
left:0; 
border-right: 1px solid #b0a077;
border-bottom: 1px solid #b0a077;
border-left: 1px solid #b0a077;
}
.menu ul ul li {
background: url(../images/bg-nav-li.jpg) repeat-x top #0b0605;
padding:5px 10px 5px 15px;
}


/* 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:#d9c5ac;
font-size:13px;
text-decoration:none;
height:25px; 
padding-top:5px; 
width:140px;
}


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

.menu :hover > a{
	color:#ffffff;
	}

/* 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: #ffffff;
padding: 0px;

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