#navcontainer { background-image:url(/common/images/diningroom.jpg); background-repeat:repeat-x; padding-top:100px; border-top:1px solid black;
padding-left:25px; position:relative; position:relative; z-index:20; }



/* ================================================================ 
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 */

#nav {background-color:black;
height:auto;}

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

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

/* style all the links */
#nav a, #nav :visited {
display:block;
font-size:1em;
padding:2px 10px 2px 10px;
color:#F9E8BC;
background:#000;
text-decoration:none;
}


#nav ul ul a, #nav ul ul :visited {

width:140px;
}


/* style the links hover */
#nav ul :hover{
color:#000;
background:#cc9900;
}

/* hide the sub level links */
#nav ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0;
margin-bottom:0;
}
/* make the sub level visible on hover list or link */
#nav ul li:hover ul,
#nav ul a:hover ul{
visibility:visible;
}
